Sun, 08 Jul 2018 18:55:21 +0200
File-Browser, Shell: changed code so file-browser and shell are always a standalone windows.
--- a/APIs/Python3/eric6.api Sun Jul 08 17:33:25 2018 +0200 +++ b/APIs/Python3/eric6.api Sun Jul 08 18:55:21 2018 +0200 @@ -526,13 +526,10 @@ eric6.Debugger.DebugViewer.DebugViewer.currentWidget?4() eric6.Debugger.DebugViewer.DebugViewer.handleClientStack?4(stack) eric6.Debugger.DebugViewer.DebugViewer.handleDebuggingStarted?4() -eric6.Debugger.DebugViewer.DebugViewer.handleRawInput?4() eric6.Debugger.DebugViewer.DebugViewer.handleResetUI?4() eric6.Debugger.DebugViewer.DebugViewer.initCallStackViewer?4(projectMode) eric6.Debugger.DebugViewer.DebugViewer.isCallTraceEnabled?4() eric6.Debugger.DebugViewer.DebugViewer.preferencesChanged?4() -eric6.Debugger.DebugViewer.DebugViewer.restoreCurrentPage?4() -eric6.Debugger.DebugViewer.DebugViewer.saveCurrentPage?4() eric6.Debugger.DebugViewer.DebugViewer.setCallTraceToProjectMode?4(enabled) eric6.Debugger.DebugViewer.DebugViewer.setCurrentWidget?4(widget) eric6.Debugger.DebugViewer.DebugViewer.setDebugger?4(debugUI) @@ -544,7 +541,7 @@ eric6.Debugger.DebugViewer.DebugViewer.showVariables?4(vlist, showGlobals) eric6.Debugger.DebugViewer.DebugViewer.showVariablesTab?4(showGlobals) eric6.Debugger.DebugViewer.DebugViewer.sourceFile?7 -eric6.Debugger.DebugViewer.DebugViewer?1(debugServer, docked, vm, parent=None, embeddedShell=True, embeddedBrowser=True) +eric6.Debugger.DebugViewer.DebugViewer?1(debugServer, docked, vm, parent=None) eric6.Debugger.DebuggerInterfaceNone.ClientDefaultCapabilities?7 eric6.Debugger.DebuggerInterfaceNone.ClientTypeAssociations?7 eric6.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.flush?4() @@ -7665,7 +7662,6 @@ eric6.Preferences.getTrayStarter?4(key, prefClass=Prefs) eric6.Preferences.getUI?4(key, prefClass=Prefs) eric6.Preferences.getUILanguage?4(prefClass=Prefs) -eric6.Preferences.getUILayout?4(prefClass=Prefs) eric6.Preferences.getUser?4(key, prefClass=Prefs) eric6.Preferences.getVCS?4(key, prefClass=Prefs) eric6.Preferences.getVarFilters?4(prefClass=Prefs) @@ -7718,7 +7714,6 @@ eric6.Preferences.setTrayStarter?4(key, value, prefClass=Prefs) eric6.Preferences.setUI?4(key, value, prefClass=Prefs) eric6.Preferences.setUILanguage?4(lang, prefClass=Prefs) -eric6.Preferences.setUILayout?4(layout, prefClass=Prefs) eric6.Preferences.setUser?4(key, value, prefClass=Prefs) eric6.Preferences.setVCS?4(key, value, prefClass=Prefs) eric6.Preferences.setVarFilters?4(filters, prefClass=Prefs) @@ -8006,8 +8001,7 @@ eric6.Project.ProjectBrowser.ProjectBrowser.handleEditorChanged?4(fn) eric6.Project.ProjectBrowser.ProjectBrowser.handleEditorLineChanged?4(fn, lineno) eric6.Project.ProjectBrowser.ProjectBrowser.handlePreferencesChanged?4() -eric6.Project.ProjectBrowser.ProjectBrowser.showEvent?4(evt) -eric6.Project.ProjectBrowser.ProjectBrowser?1(project, parent=None, embeddedBrowser=True) +eric6.Project.ProjectBrowser.ProjectBrowser?1(project, parent=None) eric6.Project.ProjectBrowserFlags.AllBrowsersFlag?7 eric6.Project.ProjectBrowserFlags.FormsBrowserFlag?7 eric6.Project.ProjectBrowserFlags.InterfacesBrowserFlag?7
--- a/Debugger/DebugUI.py Sun Jul 08 17:33:25 2018 +0200 +++ b/Debugger/DebugUI.py Sun Jul 08 18:55:21 2018 +0200 @@ -137,8 +137,6 @@ debugServer.passiveDebugStarted.connect(self.__passiveDebugStarted) debugServer.clientThreadSet.connect(self.__clientThreadSet) - debugServer.clientRawInput.connect(debugViewer.handleRawInput) - debugServer.clientRawInputSent.connect(debugViewer.restoreCurrentPage) debugServer.clientThreadList.connect(debugViewer.showThreadList) # Connect the signals emitted by the viewmanager
--- a/Debugger/DebugViewer.py Sun Jul 08 17:33:25 2018 +0200 +++ b/Debugger/DebugViewer.py Sun Jul 08 18:55:21 2018 +0200 @@ -48,8 +48,7 @@ """ sourceFile = pyqtSignal(str, int) - def __init__(self, debugServer, docked, vm, parent=None, - embeddedShell=True, embeddedBrowser=True): + def __init__(self, debugServer, docked, vm, parent=None): """ Constructor @@ -57,13 +56,6 @@ @param docked flag indicating a dock window @param vm reference to the viewmanager object @param parent parent widget (QWidget) - @param embeddedShell flag indicating whether the shell should be - included. This flag is set to False by those layouts, that have - the interpreter shell in a separate window. - @param embeddedBrowser flag indicating whether the file browser should - be included. This flag is set to False by those layouts, that - have the file browser in a separate window or embedded - in the project browser instead. """ super(DebugViewer, self).__init__(parent) @@ -79,27 +71,6 @@ self.__tabWidget = E5TabWidget() self.__mainLayout.addWidget(self.__tabWidget) - self.embeddedShell = embeddedShell - if embeddedShell: - from QScintilla.Shell import ShellAssembly - # add the interpreter 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()) - - self.embeddedBrowser = embeddedBrowser - if embeddedBrowser: - from UI.Browser import Browser - # add the browser - self.browser = Browser() - index = self.__tabWidget.addTab( - self.browser, - UI.PixmapCache.getIcon("browser.png"), '') - self.__tabWidget.setTabToolTip(index, self.browser.windowTitle()) - from .VariablesViewer import VariablesViewer # add the global variables viewer self.glvWidget = QWidget() @@ -249,13 +220,7 @@ self.__tabWidget.setTabToolTip( index, self.exceptionLogger.windowTitle()) - if self.embeddedShell: - self.__tabWidget.setCurrentWidget(self.shellAssembly) - else: - if self.embeddedBrowser: - self.__tabWidget.setCurrentWidget(self.browser) - else: - self.__tabWidget.setCurrentWidget(self.glvWidget) + self.__tabWidget.setCurrentWidget(self.glvWidget) # add the threads viewer self.__mainLayout.addWidget(QLabel(self.tr("Threads:"))) @@ -273,7 +238,6 @@ self.__mainLayout.setStretchFactor(self.__tabWidget, 5) self.__mainLayout.setStretchFactor(self.__threadList, 1) - self.currPage = None self.currentStack = None self.framenr = 0 @@ -311,23 +275,9 @@ self.currentStack = None self.stackComboBox.clear() self.__threadList.clear() - if self.embeddedShell: - self.__tabWidget.setCurrentWidget(self.shellAssembly) - else: - if self.embeddedBrowser: - self.__tabWidget.setCurrentWidget(self.browser) - else: - self.__tabWidget.setCurrentWidget(self.glvWidget) + self.__tabWidget.setCurrentWidget(self.glvWidget) self.breakpointViewer.handleResetUI() - def handleRawInput(self): - """ - Public slot to handle the switch to the shell in raw input mode. - """ - if self.embeddedShell: - self.saveCurrentPage() - self.__tabWidget.setCurrentWidget(self.shellAssembly) - def initCallStackViewer(self, projectMode): """ Public method to initialize the call stack viewer. @@ -397,19 +347,6 @@ else: self.__tabWidget.setCurrentWidget(self.lvWidget) - def saveCurrentPage(self): - """ - Public slot to save the current page. - """ - self.currPage = self.__tabWidget.currentWidget() - - def restoreCurrentPage(self): - """ - Public slot to restore the previously saved page. - """ - if self.currPage is not None: - self.__tabWidget.setCurrentWidget(self.currPage) - def handleClientStack(self, stack): """ Public slot to show the call stack of the program being debugged.
--- a/Documentation/Help/source.qhp Sun Jul 08 17:33:25 2018 +0200 +++ b/Documentation/Help/source.qhp Sun Jul 08 18:55:21 2018 +0200 @@ -3817,13 +3817,10 @@ <keyword name="DebugViewer.currentWidget" id="DebugViewer.currentWidget" ref="eric6.Debugger.DebugViewer.html#DebugViewer.currentWidget" /> <keyword name="DebugViewer.handleClientStack" id="DebugViewer.handleClientStack" ref="eric6.Debugger.DebugViewer.html#DebugViewer.handleClientStack" /> <keyword name="DebugViewer.handleDebuggingStarted" id="DebugViewer.handleDebuggingStarted" ref="eric6.Debugger.DebugViewer.html#DebugViewer.handleDebuggingStarted" /> - <keyword name="DebugViewer.handleRawInput" id="DebugViewer.handleRawInput" ref="eric6.Debugger.DebugViewer.html#DebugViewer.handleRawInput" /> <keyword name="DebugViewer.handleResetUI" id="DebugViewer.handleResetUI" ref="eric6.Debugger.DebugViewer.html#DebugViewer.handleResetUI" /> <keyword name="DebugViewer.initCallStackViewer" id="DebugViewer.initCallStackViewer" ref="eric6.Debugger.DebugViewer.html#DebugViewer.initCallStackViewer" /> <keyword name="DebugViewer.isCallTraceEnabled" id="DebugViewer.isCallTraceEnabled" ref="eric6.Debugger.DebugViewer.html#DebugViewer.isCallTraceEnabled" /> <keyword name="DebugViewer.preferencesChanged" id="DebugViewer.preferencesChanged" ref="eric6.Debugger.DebugViewer.html#DebugViewer.preferencesChanged" /> - <keyword name="DebugViewer.restoreCurrentPage" id="DebugViewer.restoreCurrentPage" ref="eric6.Debugger.DebugViewer.html#DebugViewer.restoreCurrentPage" /> - <keyword name="DebugViewer.saveCurrentPage" id="DebugViewer.saveCurrentPage" ref="eric6.Debugger.DebugViewer.html#DebugViewer.saveCurrentPage" /> <keyword name="DebugViewer.setCallTraceToProjectMode" id="DebugViewer.setCallTraceToProjectMode" ref="eric6.Debugger.DebugViewer.html#DebugViewer.setCallTraceToProjectMode" /> <keyword name="DebugViewer.setCurrentWidget" id="DebugViewer.setCurrentWidget" ref="eric6.Debugger.DebugViewer.html#DebugViewer.setCurrentWidget" /> <keyword name="DebugViewer.setDebugger" id="DebugViewer.setDebugger" ref="eric6.Debugger.DebugViewer.html#DebugViewer.setDebugger" /> @@ -12759,7 +12756,6 @@ <keyword name="ProjectBrowser.handleEditorChanged" id="ProjectBrowser.handleEditorChanged" ref="eric6.Project.ProjectBrowser.html#ProjectBrowser.handleEditorChanged" /> <keyword name="ProjectBrowser.handleEditorLineChanged" id="ProjectBrowser.handleEditorLineChanged" ref="eric6.Project.ProjectBrowser.html#ProjectBrowser.handleEditorLineChanged" /> <keyword name="ProjectBrowser.handlePreferencesChanged" id="ProjectBrowser.handlePreferencesChanged" ref="eric6.Project.ProjectBrowser.html#ProjectBrowser.handlePreferencesChanged" /> - <keyword name="ProjectBrowser.showEvent" id="ProjectBrowser.showEvent" ref="eric6.Project.ProjectBrowser.html#ProjectBrowser.showEvent" /> <keyword name="ProjectBrowserDirectoryItem" id="ProjectBrowserDirectoryItem" ref="eric6.Project.ProjectBrowserModel.html#ProjectBrowserDirectoryItem" /> <keyword name="ProjectBrowserDirectoryItem (Constructor)" id="ProjectBrowserDirectoryItem (Constructor)" ref="eric6.Project.ProjectBrowserModel.html#ProjectBrowserDirectoryItem.__init__" /> <keyword name="ProjectBrowserFileItem" id="ProjectBrowserFileItem" ref="eric6.Project.ProjectBrowserModel.html#ProjectBrowserFileItem" /> @@ -18872,7 +18868,6 @@ <keyword name="getTypeFromTypeName" id="getTypeFromTypeName" ref="eric6.Utilities.ModuleParser.html#getTypeFromTypeName" /> <keyword name="getUI" id="getUI" ref="eric6.Preferences.__init__.html#getUI" /> <keyword name="getUILanguage" id="getUILanguage" ref="eric6.Preferences.__init__.html#getUILanguage" /> - <keyword name="getUILayout" id="getUILayout" ref="eric6.Preferences.__init__.html#getUILayout" /> <keyword name="getUser" id="getUser" ref="eric6.Preferences.__init__.html#getUser" /> <keyword name="getUserName" id="getUserName" ref="eric6.Utilities.__init__.html#getUserName" /> <keyword name="getVCS" id="getVCS" ref="eric6.Preferences.__init__.html#getVCS" /> @@ -19200,7 +19195,6 @@ <keyword name="setTrayStarter" id="setTrayStarter" ref="eric6.Preferences.__init__.html#setTrayStarter" /> <keyword name="setUI" id="setUI" ref="eric6.Preferences.__init__.html#setUI" /> <keyword name="setUILanguage" id="setUILanguage" ref="eric6.Preferences.__init__.html#setUILanguage" /> - <keyword name="setUILayout" id="setUILayout" ref="eric6.Preferences.__init__.html#setUILayout" /> <keyword name="setUser" id="setUser" ref="eric6.Preferences.__init__.html#setUser" /> <keyword name="setVCS" id="setVCS" ref="eric6.Preferences.__init__.html#setVCS" /> <keyword name="setVarFilters" id="setVarFilters" ref="eric6.Preferences.__init__.html#setVarFilters" />
--- a/Documentation/Source/eric6.Debugger.DebugViewer.html Sun Jul 08 17:33:25 2018 +0200 +++ b/Documentation/Source/eric6.Debugger.DebugViewer.html Sun Jul 08 18:55:21 2018 +0200 @@ -108,9 +108,6 @@ <td><a href="#DebugViewer.handleDebuggingStarted">handleDebuggingStarted</a></td> <td>Public slot to handle the start of a debugging session.</td> </tr><tr> -<td><a href="#DebugViewer.handleRawInput">handleRawInput</a></td> -<td>Public slot to handle the switch to the shell in raw input mode.</td> -</tr><tr> <td><a href="#DebugViewer.handleResetUI">handleResetUI</a></td> <td>Public method to reset the SBVviewer.</td> </tr><tr> @@ -123,12 +120,6 @@ <td><a href="#DebugViewer.preferencesChanged">preferencesChanged</a></td> <td>Public slot to handle the preferencesChanged signal.</td> </tr><tr> -<td><a href="#DebugViewer.restoreCurrentPage">restoreCurrentPage</a></td> -<td>Public slot to restore the previously saved page.</td> -</tr><tr> -<td><a href="#DebugViewer.saveCurrentPage">saveCurrentPage</a></td> -<td>Public slot to save the current page.</td> -</tr><tr> <td><a href="#DebugViewer.setCallTraceToProjectMode">setCallTraceToProjectMode</a></td> <td>Public slot to set the call trace viewer to project mode.</td> </tr><tr> @@ -166,7 +157,7 @@ </table> <a NAME="DebugViewer.__init__" ID="DebugViewer.__init__"></a> <h4>DebugViewer (Constructor)</h4> -<b>DebugViewer</b>(<i>debugServer, docked, vm, parent=None, embeddedShell=True, embeddedBrowser=True</i>) +<b>DebugViewer</b>(<i>debugServer, docked, vm, parent=None</i>) <p> Constructor </p><dl> @@ -182,17 +173,6 @@ </dd><dt><i>parent</i></dt> <dd> parent widget (QWidget) -</dd><dt><i>embeddedShell</i></dt> -<dd> -flag indicating whether the shell should be - included. This flag is set to False by those layouts, that have - the interpreter shell in a separate window. -</dd><dt><i>embeddedBrowser</i></dt> -<dd> -flag indicating whether the file browser should - be included. This flag is set to False by those layouts, that - have the file browser in a separate window or embedded - in the project browser instead. </dd> </dl><a NAME="DebugViewer.__callStackFrameSelected" ID="DebugViewer.__callStackFrameSelected"></a> <h4>DebugViewer.__callStackFrameSelected</h4> @@ -268,11 +248,6 @@ Public slot to handle the start of a debugging session. </p><p> This slot sets the variables filter expressions. -</p><a NAME="DebugViewer.handleRawInput" ID="DebugViewer.handleRawInput"></a> -<h4>DebugViewer.handleRawInput</h4> -<b>handleRawInput</b>(<i></i>) -<p> - Public slot to handle the switch to the shell in raw input mode. </p><a NAME="DebugViewer.handleResetUI" ID="DebugViewer.handleResetUI"></a> <h4>DebugViewer.handleResetUI</h4> <b>handleResetUI</b>(<i></i>) @@ -303,16 +278,6 @@ <b>preferencesChanged</b>(<i></i>) <p> Public slot to handle the preferencesChanged signal. -</p><a NAME="DebugViewer.restoreCurrentPage" ID="DebugViewer.restoreCurrentPage"></a> -<h4>DebugViewer.restoreCurrentPage</h4> -<b>restoreCurrentPage</b>(<i></i>) -<p> - Public slot to restore the previously saved page. -</p><a NAME="DebugViewer.saveCurrentPage" ID="DebugViewer.saveCurrentPage"></a> -<h4>DebugViewer.saveCurrentPage</h4> -<b>saveCurrentPage</b>(<i></i>) -<p> - Public slot to save the current page. </p><a NAME="DebugViewer.setCallTraceToProjectMode" ID="DebugViewer.setCallTraceToProjectMode"></a> <h4>DebugViewer.setCallTraceToProjectMode</h4> <b>setCallTraceToProjectMode</b>(<i>enabled</i>)
--- a/Documentation/Source/eric6.Preferences.__init__.html Sun Jul 08 17:33:25 2018 +0200 +++ b/Documentation/Source/eric6.Preferences.__init__.html Sun Jul 08 18:55:21 2018 +0200 @@ -175,9 +175,6 @@ <td><a href="#getUILanguage">getUILanguage</a></td> <td>Module function to retrieve the language for the user interface.</td> </tr><tr> -<td><a href="#getUILayout">getUILayout</a></td> -<td>Module function to retrieve the layout for the user interface.</td> -</tr><tr> <td><a href="#getUser">getUser</a></td> <td>Module function to retrieve the various user settings.</td> </tr><tr> @@ -334,9 +331,6 @@ <td><a href="#setUILanguage">setUILanguage</a></td> <td>Module function to store the language for the user interface.</td> </tr><tr> -<td><a href="#setUILayout">setUILayout</a></td> -<td>Module function to store the layout for the user interface.</td> -</tr><tr> <td><a href="#setUser">setUser</a></td> <td>Module function to store the various user settings.</td> </tr><tr> @@ -1309,25 +1303,6 @@ </dl> <div align="right"><a href="#top">Up</a></div> <hr /><hr /> -<a NAME="getUILayout" ID="getUILayout"></a> -<h2>getUILayout</h2> -<b>getUILayout</b>(<i>prefClass=Prefs</i>) -<p> - Module function to retrieve the layout for the user interface. -</p><dl> -<dt><i>prefClass</i></dt> -<dd> -preferences class used as the storage area -</dd> -</dl><dl> -<dt>Returns:</dt> -<dd> -the UI layout as a tuple of main layout, flag for - an embedded shell and a value for an embedded file browser -</dd> -</dl> -<div align="right"><a href="#top">Up</a></div> -<hr /><hr /> <a NAME="getUser" ID="getUser"></a> <h2>getUser</h2> <b>getUser</b>(<i>key, prefClass=Prefs</i>) @@ -2276,22 +2251,6 @@ </dl> <div align="right"><a href="#top">Up</a></div> <hr /><hr /> -<a NAME="setUILayout" ID="setUILayout"></a> -<h2>setUILayout</h2> -<b>setUILayout</b>(<i>layout, prefClass=Prefs</i>) -<p> - Module function to store the layout for the user interface. -</p><dl> -<dt><i>layout</i></dt> -<dd> -the layout type -</dd><dt><i>prefClass</i></dt> -<dd> -preferences class used as the storage area -</dd> -</dl> -<div align="right"><a href="#top">Up</a></div> -<hr /><hr /> <a NAME="setUser" ID="setUser"></a> <h2>setUser</h2> <b>setUser</b>(<i>key, value, prefClass=Prefs</i>)
--- a/Documentation/Source/eric6.Project.ProjectBrowser.html Sun Jul 08 17:33:25 2018 +0200 +++ b/Documentation/Source/eric6.Project.ProjectBrowser.html Sun Jul 08 18:55:21 2018 +0200 @@ -111,9 +111,6 @@ </tr><tr> <td><a href="#ProjectBrowser.handlePreferencesChanged">handlePreferencesChanged</a></td> <td>Public slot used to handle the preferencesChanged signal.</td> -</tr><tr> -<td><a href="#ProjectBrowser.showEvent">showEvent</a></td> -<td>Protected method handleing the show event.</td> </tr> </table> <h3>Static Methods</h3> @@ -122,7 +119,7 @@ </table> <a NAME="ProjectBrowser.__init__" ID="ProjectBrowser.__init__"></a> <h4>ProjectBrowser (Constructor)</h4> -<b>ProjectBrowser</b>(<i>project, parent=None, embeddedBrowser=True</i>) +<b>ProjectBrowser</b>(<i>project, parent=None</i>) <p> Constructor </p><dl> @@ -132,12 +129,6 @@ </dd><dt><i>parent</i></dt> <dd> parent widget (QWidget) -</dd><dt><i>embeddedBrowser</i></dt> -<dd> -flag indicating whether the file browser should - be included. This flag is set to False by those layouts, that - have the file browser in a separate window or embedded - in the debeug browser instead </dd> </dl><a NAME="ProjectBrowser.__currentChanged" ID="ProjectBrowser.__currentChanged"></a> <h4>ProjectBrowser.__currentChanged</h4> @@ -269,17 +260,7 @@ <b>handlePreferencesChanged</b>(<i></i>) <p> Public slot used to handle the preferencesChanged signal. -</p><a NAME="ProjectBrowser.showEvent" ID="ProjectBrowser.showEvent"></a> -<h4>ProjectBrowser.showEvent</h4> -<b>showEvent</b>(<i>evt</i>) -<p> - Protected method handleing the show event. -</p><dl> -<dt><i>evt</i></dt> -<dd> -show event to handle (QShowEvent) -</dd> -</dl> +</p> <div align="right"><a href="#top">Up</a></div> <hr /> </body></html> \ No newline at end of file
--- a/Preferences/ConfigurationPages/InterfacePage.py Sun Jul 08 17:33:25 2018 +0200 +++ b/Preferences/ConfigurationPages/InterfacePage.py Sun Jul 08 18:55:21 2018 +0200 @@ -82,24 +82,14 @@ else: self.brTopButton.setChecked(True) - layout = Preferences.getUILayout() - if layout[0] == "Sidebars": + layoutType = Preferences.getUI("LayoutType") + if layoutType == "Sidebars": index = 0 - elif layout[0] == "Toolboxes": + elif layoutType == "Toolboxes": index = 1 else: index = 0 # default for bad values self.layoutComboBox.setCurrentIndex(index) - if layout[1] == 0: - self.separateShellButton.setChecked(True) - else: - self.debugEmbeddedShellButton.setChecked(True) - if layout[2] == 0: - self.separateFileBrowserButton.setChecked(True) - elif layout[2] == 1: - self.debugEmbeddedFileBrowserButton.setChecked(True) - else: - self.projectEmbeddedFileBrowserButton.setChecked(True) self.tabsGroupBox.setEnabled(True) self.tabsCloseButtonCheckBox.setChecked( @@ -167,24 +157,13 @@ Preferences.setUILanguage(uiLanguage) # save the interface layout settings - if self.separateShellButton.isChecked(): - layout2 = 0 - else: - layout2 = 1 - if self.separateFileBrowserButton.isChecked(): - layout3 = 0 - elif self.debugEmbeddedFileBrowserButton.isChecked(): - layout3 = 1 + if self.layoutComboBox.currentIndex() == 0: + layoutType = "Sidebars" + elif self.layoutComboBox.currentIndex() == 1: + layoutType = "Toolboxes" else: - layout3 = 2 - if self.layoutComboBox.currentIndex() == 0: - layout1 = "Sidebars" - elif self.layoutComboBox.currentIndex() == 1: - layout1 = "Toolboxes" - else: - layout1 = "Sidebars" # just in case - layout = (layout1, layout2, layout3) - Preferences.setUILayout(layout) + layoutType = "Sidebars" # just in case + Preferences.setUI("LayoutType", layoutType) Preferences.setUI( "SingleCloseButton",
--- a/Preferences/ConfigurationPages/InterfacePage.ui Sun Jul 08 17:33:25 2018 +0200 +++ b/Preferences/ConfigurationPages/InterfacePage.ui Sun Jul 08 18:55:21 2018 +0200 @@ -456,78 +456,6 @@ </layout> </item> <item> - <layout class="QHBoxLayout" name="horizontalLayout"> - <item> - <widget class="QGroupBox" name="groupBox_9"> - <property name="title"> - <string>Shell</string> - </property> - <layout class="QVBoxLayout" name="_8"> - <item> - <widget class="QRadioButton" name="separateShellButton"> - <property name="toolTip"> - <string>Select to get a separate shell window</string> - </property> - <property name="text"> - <string>separate window</string> - </property> - </widget> - </item> - <item> - <widget class="QRadioButton" name="debugEmbeddedShellButton"> - <property name="toolTip"> - <string>Select to embed the shell in the Debug-Viewer</string> - </property> - <property name="text"> - <string>embed in Debug-Viewer</string> - </property> - </widget> - </item> - </layout> - </widget> - </item> - <item> - <widget class="QGroupBox" name="groupBox_10"> - <property name="title"> - <string>File-Browser</string> - </property> - <layout class="QVBoxLayout" name="_9"> - <item> - <widget class="QRadioButton" name="separateFileBrowserButton"> - <property name="toolTip"> - <string>Select to get a separate file browser window</string> - </property> - <property name="text"> - <string>separate window</string> - </property> - </widget> - </item> - <item> - <widget class="QRadioButton" name="debugEmbeddedFileBrowserButton"> - <property name="toolTip"> - <string>Select to embed the file browser in the Debug-Viewer</string> - </property> - <property name="text"> - <string>embed in Debug-Viewer</string> - </property> - </widget> - </item> - <item> - <widget class="QRadioButton" name="projectEmbeddedFileBrowserButton"> - <property name="toolTip"> - <string>Select to embed the file browser in the Project-Viewer</string> - </property> - <property name="text"> - <string>embed in Project-Viewer</string> - </property> - </widget> - </item> - </layout> - </widget> - </item> - </layout> - </item> - <item> <widget class="QGroupBox" name="tabsGroupBox"> <property name="title"> <string>Tabs</string> @@ -594,11 +522,6 @@ <tabstop>delaySpinBox</tabstop> <tabstop>languageComboBox</tabstop> <tabstop>layoutComboBox</tabstop> - <tabstop>separateShellButton</tabstop> - <tabstop>debugEmbeddedShellButton</tabstop> - <tabstop>separateFileBrowserButton</tabstop> - <tabstop>debugEmbeddedFileBrowserButton</tabstop> - <tabstop>projectEmbeddedFileBrowserButton</tabstop> <tabstop>tabsCloseButtonCheckBox</tabstop> <tabstop>resetLayoutButton</tabstop> </tabstops>
--- a/Preferences/__init__.py Sun Jul 08 17:33:25 2018 +0200 +++ b/Preferences/__init__.py Sun Jul 08 18:55:21 2018 +0200 @@ -1918,40 +1918,6 @@ prefClass.settings.setValue("UI/Language", lang) -def getUILayout(prefClass=Prefs): - """ - Module function to retrieve the layout for the user interface. - - @param prefClass preferences class used as the storage area - @return the UI layout as a tuple of main layout, flag for - an embedded shell and a value for an embedded file browser - """ - layoutType = prefClass.settings.value( - "UI/LayoutType", prefClass.uiDefaults["LayoutType"]) - if layoutType in ["DockWindows", "FloatingWindows"]: - # change old fashioned layouts to the modern default - layoutType = prefClass.uiDefaults["LayoutType"] - layout = (layoutType, - int(prefClass.settings.value("UI/LayoutShellEmbedded", - prefClass.uiDefaults["LayoutShellEmbedded"])), - int(prefClass.settings.value("UI/LayoutFileBrowserEmbedded", - prefClass.uiDefaults["LayoutFileBrowserEmbedded"])), - ) - return layout - - -def setUILayout(layout, prefClass=Prefs): - """ - Module function to store the layout for the user interface. - - @param layout the layout type - @param prefClass preferences class used as the storage area - """ - prefClass.settings.setValue("UI/LayoutType", layout[0]) - prefClass.settings.setValue("UI/LayoutShellEmbedded", layout[1]) - prefClass.settings.setValue("UI/LayoutFileBrowserEmbedded", layout[2]) - - def getViewManager(prefClass=Prefs): """ Module function to retrieve the selected viewmanager type.
--- a/Project/ProjectBrowser.py Sun Jul 08 17:33:25 2018 +0200 +++ b/Project/ProjectBrowser.py Sun Jul 08 18:55:21 2018 +0200 @@ -13,8 +13,6 @@ from PyQt5.QtGui import QColor from PyQt5.QtWidgets import QApplication -from UI.Browser import Browser - from E5Gui.E5TabWidget import E5TabWidget from E5Gui.E5Led import E5ClickableLed @@ -37,16 +35,12 @@ that doesn't fit these categories. Optionally it contains an additional tab with the file system browser. """ - def __init__(self, project, parent=None, embeddedBrowser=True): + def __init__(self, project, parent=None): """ Constructor @param project reference to the project object @param parent parent widget (QWidget) - @param embeddedBrowser flag indicating whether the file browser should - be included. This flag is set to False by those layouts, that - have the file browser in a separate window or embedded - in the debeug browser instead """ E5TabWidget.__init__(self, parent) self.project = project @@ -101,11 +95,6 @@ # others browser self.poBrowser = ProjectOthersBrowser(self.project) - # add the file browser, if it should be embedded here - self.embeddedBrowser = embeddedBrowser - if embeddedBrowser: - self.fileBrowser = Browser() - # step 2: connect all the browsers # connect the sources browser self.project.projectClosed.connect(self.psBrowser._projectClosed) @@ -174,10 +163,7 @@ self.__currentBrowsersFlags = 0 self.__projectPropertiesChanged() - if self.embeddedBrowser: - self.setCurrentWidget(self.fileBrowser) - else: - self.setCurrentIndex(0) + self.setCurrentIndex(0) def __setBrowsersAvailable(self, browserFlags): """ @@ -232,24 +218,8 @@ UI.PixmapCache.getIcon("projectOthers.png"), '') self.setTabToolTip(index, self.poBrowser.windowTitle()) - if self.embeddedBrowser: - index = self.addTab( - self.fileBrowser, - UI.PixmapCache.getIcon("browser.png"), '') - self.setTabToolTip(index, self.fileBrowser.windowTitle()) - QApplication.processEvents() - def showEvent(self, evt): - """ - Protected method handleing the show event. - - @param evt show event to handle (QShowEvent) - """ - E5TabWidget.showEvent(self, evt) - if self.embeddedBrowser: - self.fileBrowser.layoutDisplay() - def __currentChanged(self, index): """ Private slot to handle the currentChanged(int) signal. @@ -274,10 +244,7 @@ Private slot to handle the projectClosed signal. """ self.__projectPropertiesChanged() - if self.embeddedBrowser: - self.setCurrentWidget(self.fileBrowser) - else: - self.setCurrentIndex(0) + self.setCurrentIndex(0) self.__setSourcesIcon() self.__vcsStateChanged(" ") @@ -302,10 +269,7 @@ self.__currentBrowsersFlags = flags self.__setBrowsersAvailable(flags) - if self.embeddedBrowser: - endIndex = self.count() - 1 - else: - endIndex = self.count() + endIndex = self.count() for index in range(endIndex): self.setTabEnabled(index, self.project.isOpen())
--- a/UI/UserInterface.py Sun Jul 08 17:33:25 2018 +0200 +++ b/UI/UserInterface.py Sun Jul 08 18:55:21 2018 +0200 @@ -131,7 +131,7 @@ self.buffer += str(s) self.__nWrite(self.__bufferedWrite()) - +# TODO: make "Code Docu Viewer", "Cooperation" and "IRC" configurable class UserInterface(E5MainWindow): """ Class implementing the main user interface. @@ -209,8 +209,7 @@ self.__disableCrashSession = disableCrashSession self.__disabledPlugins = disabledPlugins[:] - self.layoutType, self.embeddedShell, self.embeddedFileBrowser = \ - Preferences.getUILayout() + self.layoutType = Preferences.getUI("LayoutType") self.passiveMode = Preferences.getDebugger("PassiveDbgEnabled") @@ -771,9 +770,7 @@ # Create the project browser logging.debug("Creating Project Browser...") from Project.ProjectBrowser import ProjectBrowser - self.projectBrowser = ProjectBrowser( - self.project, None, - embeddedBrowser=(self.embeddedFileBrowser == 2)) + self.projectBrowser = ProjectBrowser(self.project) self.lToolbox.addItem(self.projectBrowser, UI.PixmapCache.getIcon("projectViewer.png"), self.tr("Project-Viewer")) @@ -807,10 +804,7 @@ # Create the debug viewer maybe without the embedded shell logging.debug("Creating Debug Viewer...") from Debugger.DebugViewer import DebugViewer - self.debugViewer = DebugViewer( - debugServer, True, self.viewmanager, None, - embeddedShell=self.embeddedShell, - embeddedBrowser=(self.embeddedFileBrowser == 1)) + self.debugViewer = DebugViewer(debugServer, True, self.viewmanager) self.rToolbox.addItem(self.debugViewer, UI.PixmapCache.getIcon("debugViewer.png"), self.tr("Debug-Viewer")) @@ -847,31 +841,23 @@ UI.PixmapCache.getIcon("logViewer.png"), self.tr("Log-Viewer")) - if self.embeddedShell: - self.shell = self.debugViewer.shell - else: - # Create the shell - logging.debug("Creating Shell...") - from QScintilla.Shell import ShellAssembly - self.shellAssembly = \ - ShellAssembly(debugServer, self.viewmanager, True) - self.shell = self.shellAssembly.shell() - self.hToolbox.insertItem(0, self.shellAssembly, - UI.PixmapCache.getIcon("shell.png"), - self.tr("Shell")) + # Create the shell + logging.debug("Creating Shell...") + from QScintilla.Shell import ShellAssembly + self.shellAssembly = \ + ShellAssembly(debugServer, self.viewmanager, True) + self.shell = self.shellAssembly.shell() + self.hToolbox.insertItem(0, self.shellAssembly, + UI.PixmapCache.getIcon("shell.png"), + self.tr("Shell")) - if self.embeddedFileBrowser == 0: # separate window - # Create the file browser - logging.debug("Creating File Browser...") - from .Browser import Browser - self.browser = Browser() - self.lToolbox.addItem(self.browser, - UI.PixmapCache.getIcon("browser.png"), - self.tr("File-Browser")) - elif self.embeddedFileBrowser == 1: # embedded in debug browser - self.browser = self.debugViewer.browser - else: # embedded in project browser - self.browser = self.projectBrowser.fileBrowser + # Create the file browser + logging.debug("Creating File Browser...") + from .Browser import Browser + self.browser = Browser() + self.lToolbox.addItem(self.browser, + UI.PixmapCache.getIcon("browser.png"), + self.tr("File-Browser")) # Create the symbols viewer logging.debug("Creating Symbols Viewer...") @@ -914,9 +900,7 @@ # Create the project browser logging.debug("Creating Project Browser...") from Project.ProjectBrowser import ProjectBrowser - self.projectBrowser = ProjectBrowser( - self.project, None, - embeddedBrowser=(self.embeddedFileBrowser == 2)) + self.projectBrowser = ProjectBrowser(self.project) self.leftSidebar.addTab( self.projectBrowser, UI.PixmapCache.getIcon("projectViewer.png"), @@ -954,10 +938,7 @@ # Create the debug viewer maybe without the embedded shell logging.debug("Creating Debug Viewer...") from Debugger.DebugViewer import DebugViewer - self.debugViewer = DebugViewer( - debugServer, True, self.viewmanager, None, - embeddedShell=self.embeddedShell, - embeddedBrowser=(self.embeddedFileBrowser == 1)) + self.debugViewer = DebugViewer(debugServer, True, self.viewmanager) self.rightSidebar.addTab( self.debugViewer, UI.PixmapCache.getIcon("debugViewer.png"), self.tr("Debug-Viewer")) @@ -993,31 +974,23 @@ UI.PixmapCache.getIcon("logViewer.png"), self.tr("Log-Viewer")) - if self.embeddedShell: - self.shell = self.debugViewer.shell - else: - # Create the shell - logging.debug("Creating Shell...") - from QScintilla.Shell import ShellAssembly - self.shellAssembly = \ - ShellAssembly(debugServer, self.viewmanager, True) - self.shell = self.shellAssembly.shell() - self.bottomSidebar.insertTab(0, self.shellAssembly, - UI.PixmapCache.getIcon("shell.png"), - self.tr("Shell")) + # Create the shell + logging.debug("Creating Shell...") + from QScintilla.Shell import ShellAssembly + self.shellAssembly = \ + ShellAssembly(debugServer, self.viewmanager, True) + self.shell = self.shellAssembly.shell() + self.bottomSidebar.insertTab(0, self.shellAssembly, + UI.PixmapCache.getIcon("shell.png"), + self.tr("Shell")) - if self.embeddedFileBrowser == 0: # separate window - # Create the file browser - logging.debug("Creating File Browser...") - from .Browser import Browser - self.browser = Browser() - self.leftSidebar.addTab(self.browser, - UI.PixmapCache.getIcon("browser.png"), - self.tr("File-Browser")) - elif self.embeddedFileBrowser == 1: # embedded in debug browser - self.browser = self.debugViewer.browser - else: # embedded in project browser - self.browser = self.projectBrowser.fileBrowser + # Create the file browser + logging.debug("Creating File Browser...") + from .Browser import Browser + self.browser = Browser() + self.leftSidebar.addTab(self.browser, + UI.PixmapCache.getIcon("browser.png"), + self.tr("File-Browser")) # Create the symbols viewer logging.debug("Creating Symbols Viewer...") @@ -2756,6 +2729,7 @@ self.__menus["subwindow"] = QMenu(self.tr("&Windows"), self.__menus["window"]) self.__menus["subwindow"].setTearOffEnabled(True) + # TODO: insert separators between the different sides # left side self.__menus["subwindow"].addAction(self.pbActivateAct) self.__menus["subwindow"].addAction(self.mpbActivateAct) @@ -3972,15 +3946,13 @@ if self.layoutType == "Toolboxes": self.__currentRightWidget = self.rToolbox.currentWidget() self.rToolbox.setCurrentWidget(self.debugViewer) - if not self.embeddedShell: - self.__currentBottomWidget = self.hToolbox.currentWidget() - self.hToolbox.setCurrentWidget(self.shellAssembly) + self.__currentBottomWidget = self.hToolbox.currentWidget() + self.hToolbox.setCurrentWidget(self.shellAssembly) elif self.layoutType == "Sidebars": self.__currentRightWidget = self.rightSidebar.currentWidget() self.rightSidebar.setCurrentWidget(self.debugViewer) - if not self.embeddedShell: - self.__currentBottomWidget = self.bottomSidebar.currentWidget() - self.bottomSidebar.setCurrentWidget(self.shellAssembly) + self.__currentBottomWidget = self.bottomSidebar.currentWidget() + self.bottomSidebar.setCurrentWidget(self.shellAssembly) def __debuggingDone(self): """ @@ -4080,25 +4052,14 @@ """ Private slot to handle the activation of the Shell window. """ - if self.embeddedShell: # embedded in debug browser - if self.layoutType == "Toolboxes": - self.rToolboxDock.show() - self.rToolbox.setCurrentWidget(self.debugViewer) - elif self.layoutType == "Sidebars": - self.rightSidebar.show() - self.rightSidebar.setCurrentWidget(self.debugViewer) - else: - self.debugViewer.show() - self.debugViewer.setCurrentWidget(self.debugViewer.shellAssembly) - else: # separate window - if self.layoutType == "Toolboxes": - self.hToolboxDock.show() - self.hToolbox.setCurrentWidget(self.shellAssembly) - elif self.layoutType == "Sidebars": - self.bottomSidebar.show() - self.bottomSidebar.setCurrentWidget(self.shellAssembly) - else: - self.shell.show() + if self.layoutType == "Toolboxes": + self.hToolboxDock.show() + self.hToolbox.setCurrentWidget(self.shellAssembly) + elif self.layoutType == "Sidebars": + self.bottomSidebar.show() + self.bottomSidebar.setCurrentWidget(self.shellAssembly) + else: + self.shell.show() self.shell.setFocus(Qt.ActiveWindowFocusReason) def __activateLogViewer(self): @@ -4147,35 +4108,14 @@ """ Private slot to handle the activation of the file browser. """ - if self.embeddedFileBrowser == 0: # separate window - if self.layoutType == "Toolboxes": - self.lToolboxDock.show() - self.lToolbox.setCurrentWidget(self.browser) - elif self.layoutType == "Sidebars": - self.leftSidebar.show() - self.leftSidebar.setCurrentWidget(self.browser) - else: - self.browser.show() - elif self.embeddedFileBrowser == 1: # embedded in debug browser - if self.layoutType == "Toolboxes": - self.rToolboxDock.show() - self.rToolbox.setCurrentWidget(self.debugViewer) - elif self.layoutType == "Sidebars": - self.rightSidebar.show() - self.rightSidebar.setCurrentWidget(self.debugViewer) - else: - self.debugViewer.show() - self.debugViewer.setCurrentWidget(self.browser) - else: # embedded in project browser - if self.layoutType == "Toolboxes": - self.lToolboxDock.show() - self.lToolbox.setCurrentWidget(self.projectBrowser) - elif self.layoutType == "Sidebars": - self.leftSidebar.show() - self.leftSidebar.setCurrentWidget(self.projectBrowser) - else: - self.projectBrowser.show() - self.projectBrowser.setCurrentWidget(self.browser) + if self.layoutType == "Toolboxes": + self.lToolboxDock.show() + self.lToolbox.setCurrentWidget(self.browser) + elif self.layoutType == "Sidebars": + self.leftSidebar.show() + self.leftSidebar.setCurrentWidget(self.browser) + else: + self.browser.show() self.browser.setFocus(Qt.ActiveWindowFocusReason) def __toggleLeftToolbox(self):
--- a/changelog Sun Jul 08 17:33:25 2018 +0200 +++ b/changelog Sun Jul 08 18:55:21 2018 +0200 @@ -2,6 +2,10 @@ ---------- Version 18.08: - bug fixes +- File-Browser + -- changed code so file-browser is always a standalone window +- Shell + -- changed code so shell is always a standalone window - Translator -- added a translation engine for the IBM Watson Language Translator
--- a/i18n/eric6_cs.ts Sun Jul 08 17:33:25 2018 +0200 +++ b/i18n/eric6_cs.ts Sun Jul 08 18:55:21 2018 +0200 @@ -5699,287 +5699,287 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1827"/> + <location filename="../Debugger/DebugUI.py" line="1825"/> <source>Run Script</source> <translation>Spustit skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="178"/> + <location filename="../Debugger/DebugUI.py" line="176"/> <source>&Run Script...</source> <translation>Spustit sk&ript...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="183"/> + <location filename="../Debugger/DebugUI.py" line="181"/> <source>Run the current Script</source> <translation>Spustit aktuální skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="184"/> + <location filename="../Debugger/DebugUI.py" line="182"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Spustit skript</b><p>Nastavení parametrů příkazové řádky a spuštění skriptu bez debugeru. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>Run Project</source> <translation>Spustit projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="193"/> + <location filename="../Debugger/DebugUI.py" line="191"/> <source>Run &Project...</source> <translation>Spustit &projekt...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="198"/> + <location filename="../Debugger/DebugUI.py" line="196"/> <source>Run the current Project</source> <translation>Spustit aktuální projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="199"/> + <location filename="../Debugger/DebugUI.py" line="197"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Spustit projekt</b><p>Nastavení parametrů příkazové řádky a spuštění projektu bez debugeru. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script</source> <translation>Spustit skript s kontrolou pokrytí</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script...</source> <translation>Spustit skript s kontrolou pokrytí...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="212"/> + <source>Perform a coverage run of the current Script</source> + <translation>Provede se spuštění běhu aktuálního skriptu s kontrolou pokrytí kódu</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="214"/> - <source>Perform a coverage run of the current Script</source> - <translation>Provede se spuštění běhu aktuálního skriptu s kontrolou pokrytí kódu</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="216"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Spustit skript s kontrolou pokrytí</b><p>Nastavení parametrů příkazové řádky a spuštění projektu pod kontrolou nástroje analýzy pokrytí kódu. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project</source> <translation>Spustit projekt s kontrolou pokrytí</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project...</source> <translation>Spustit projekt s kontrolou pokrytí...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="228"/> + <source>Perform a coverage run of the current Project</source> + <translation>Provede se spuštění běhu aktuálního projektu s kontrolou pokrytí kódu</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="230"/> - <source>Perform a coverage run of the current Project</source> - <translation>Provede se spuštění běhu aktuálního projektu s kontrolou pokrytí kódu</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="232"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Spustit projekt s kontrolou pokrytí</b><p>Nastavení parametrů příkazové řádky a spuštění projektu pod kontrolou nástroje analýzy pokrytí kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script</source> <translation>Profilovat skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script...</source> <translation>Profilovat skript...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="246"/> + <location filename="../Debugger/DebugUI.py" line="244"/> <source>Profile the current Script</source> <translation>Profilovat aktuální skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="247"/> + <location filename="../Debugger/DebugUI.py" line="245"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Profilovat skript</b><p>Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project</source> <translation>Profilovat projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project...</source> <translation>Profilovat projekt...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="258"/> + <source>Profile the current Project</source> + <translation>Profilovat aktuální projekt</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="260"/> - <source>Profile the current Project</source> - <translation>Profilovat aktuální projekt</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="262"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Profilovat projekt</b><p>Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1962"/> + <location filename="../Debugger/DebugUI.py" line="1960"/> <source>Debug Script</source> <translation>Debugovat skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="271"/> + <location filename="../Debugger/DebugUI.py" line="269"/> <source>&Debug Script...</source> <translation>&Debugovat skript...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="276"/> + <location filename="../Debugger/DebugUI.py" line="274"/> <source>Debug the current Script</source> <translation>Debugovat aktuální skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="277"/> + <location filename="../Debugger/DebugUI.py" line="275"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Debugovat skript</b><p>Nastavení parametrů příkazové řádky a aktuální řádky jako první python příkaz v aktuálním editačním okně. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>Debug Project</source> <translation>Debugovat projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="287"/> + <location filename="../Debugger/DebugUI.py" line="285"/> <source>Debug &Project...</source> <translation>Debugovat pro&jekt...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="290"/> + <source>Debug the current Project</source> + <translation>Debugovat aktuální projekt</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="292"/> - <source>Debug the current Project</source> - <translation>Debugovat aktuální projekt</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="294"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Debugovat projekt</b><p>Nastavení parametrů příkazové řádky a nastavení aktuální řádky jako první python příkaz hlavního skriptu v aktuálním projektu. Pokud jsou v projektu neuložené změny, měly by se měly nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="306"/> <source>Restart the last debugged script</source> <translation>Restartovat posledně debugovaný skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>Continue</source> <translation>Pokračovat</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>&Continue</source> <translation>&Pokračovat</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="338"/> + <source>Continue running the program from the current line</source> + <translation>Pokračovat v běhu programu od aktuální řádky</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="340"/> - <source>Continue running the program from the current line</source> - <translation>Pokračovat v běhu programu od aktuální řádky</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="342"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Pokračovat</b><p>Pokračovat v běhu programu od aktuální řádky. Program se zastaví na nejbližším breakpointu nebo běží až do konce.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue to Cursor</source> <translation>Pokračovat až na kurzor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue &To Cursor</source> <translation>Pokračova&t až na kurzor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="356"/> + <location filename="../Debugger/DebugUI.py" line="354"/> <source>Continue running the program from the current line to the current cursor position</source> <translation>Pokračovat v běhu programu od aktuální řádky až na pozici kurzoru</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="359"/> + <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>Pokračovat až na kurzor</b><p>Běh programu pokračuje až na řádek, na kterém se nachází kurzor.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Single Step</source> <translation>Krok dovnitř</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Sin&gle Step</source> <translation>&Krok dovnitř</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="392"/> + <location filename="../Debugger/DebugUI.py" line="390"/> <source>Execute a single Python statement</source> <translation>Vykonat jen jeden python příkaz</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="393"/> + <location filename="../Debugger/DebugUI.py" line="391"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>Krok dovnitř</b><p>Vykoná se jen jeden python příkaz. Pokud je příkaz <tt>import</tt>, konstruktor třídy, metoda nebo funkce, tak debuger vstoupí dovnitř funkce a zastaví se na prvním příkazu v těle funkce.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step Over</source> <translation>Krok přes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step &Over</source> <translation>Kr&ok přes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="408"/> + <location filename="../Debugger/DebugUI.py" line="406"/> <source>Execute a single Python statement staying in the current frame</source> <translation>Vykonat jeden python příkaz ale nevstupovat do něj</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="411"/> + <location filename="../Debugger/DebugUI.py" line="409"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation><b>Krok přes</b><p>Vykoná se jeden python příkaz. Pokud je příkaz <tt>import</tt>, konstruktor třídy, metoda nebo funkce, tak debuger nevstupuje dovnitř funkce, ale vykoná ji celou a zastaví se až na následujícím příkazu.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Out</source> <translation>Krok ven</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Ou&t</source> <translation>Krok &ven</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="427"/> + <location filename="../Debugger/DebugUI.py" line="425"/> <source>Execute Python statements until leaving the current frame</source> <translation>Vykonávat python příkazy tak dlouho, dokud nedojde k opuštění těla kódu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="430"/> + <location filename="../Debugger/DebugUI.py" line="428"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation><b>Krok ven</b><p>Provádí se python příkazy tak dlouho, dokud nedojde k opuštění těla aktuálního bloku kódu. Pokud je příkaz <tt>import</tt>, konstruktor třídy, metoda nebo funkce, tak debuger provádí příkazy tak dlouho, dokud z daného bloku nevystoupí. Zastaví se až na příkazu následujícím za daným blokem.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>Stop</source> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>&Stop</source> <translation>&Stop</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="446"/> + <location filename="../Debugger/DebugUI.py" line="444"/> <source>Stop debugging</source> <translation>Stop debugování</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="447"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Stop</b><p>Stop běhu aktuální debug relace.</p></translation> </message> @@ -6019,190 +6019,190 @@ <translation type="obsolete"><b>Execute</b><p>Vykonat jednu řádku kódu v aktuálním kontextu debugovaného programu.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Variables Type Filter</source> <translation>Filtr typů proměnných</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Varia&bles Type Filter...</source> <translation>&Filtr typů proměnných...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="456"/> + <source>Configure variables type filter</source> + <translation>Nastavit filtr typů proměnných</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="458"/> - <source>Configure variables type filter</source> - <translation>Nastavit filtr typů proměnných</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="460"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation><b>Filtr typů proměnných</b><p>Nastavení filtru typů proměnných. Během debugování jsou v okně globálních nebo lokálních proměnných zobrazovány jen ty typy proměnných, které nebyly vybrány.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>Exceptions Filter</source> <translation>Filtr výjimek</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>&Exceptions Filter...</source> <translation>Filtr výjim&ek...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="472"/> + <source>Configure exceptions filter</source> + <translation>Konfigurace filtru výjimek</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="474"/> - <source>Configure exceptions filter</source> - <translation>Konfigurace filtru výjimek</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="476"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>Filtr výjimek</b><p>Nastavení filtru výjimek. Během debugování jsou zvýrazněny jen ty výjimky, které jsou uvedeny v seznamu.</p><p>Všimněte si, že neošetřené výjimky jsou zvýrazněny nezávisle na seznamu filtru.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="512"/> + <location filename="../Debugger/DebugUI.py" line="510"/> <source>Toggle Breakpoint</source> <translation>Přepnout breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="513"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Přepnout breakpoint</b><p>Zapíná/vypíná breakpoint na aktuální řádce v aktuálním editoru.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="527"/> + <location filename="../Debugger/DebugUI.py" line="525"/> <source>Edit Breakpoint</source> <translation>Editovat breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Edit Breakpoint...</source> <translation>Editovat breakpoint...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="528"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>Editovat breakpoint</b><p>Otevře dialog s editací vlastností breakpointů. Zpracovává aktuální řádku v aktuálním editoru.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="543"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Next Breakpoint</source> <translation>Následující breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="542"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>Následující breakpoint</b><p>Jít na následující breakpoint v aktuálním editoru.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="558"/> + <location filename="../Debugger/DebugUI.py" line="556"/> <source>Previous Breakpoint</source> <translation>Předchozí breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="549"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="557"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>Předchozí breakpoint</b><p>Jít na předchozí brakpoint v aktuálním editoru.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="572"/> + <location filename="../Debugger/DebugUI.py" line="570"/> <source>Clear Breakpoints</source> <translation>Zrušit breakpointy</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="564"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="573"/> + <location filename="../Debugger/DebugUI.py" line="571"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation><b>Zrušit breakpointy</b><p>Zrušení breakpointů ve všech editorech.</p></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="597"/> + <source>&Debug</source> + <translation>&Debugování</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="599"/> - <source>&Debug</source> - <translation>&Debugování</translation> + <source>&Start</source> + <translation>&Start</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="601"/> - <source>&Start</source> - <translation>&Start</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="603"/> <source>&Breakpoints</source> <translation>&Breakpointy</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="646"/> + <location filename="../Debugger/DebugUI.py" line="644"/> <source>Start</source> <translation>Start</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="660"/> + <location filename="../Debugger/DebugUI.py" line="658"/> <source>Debug</source> <translation>Debug</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1100"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Program, který je právě debugován, obsahuje nespecifikovanou syntaktickou chybu.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1137"/> + <location filename="../Debugger/DebugUI.py" line="1135"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Objevila se neošetřená výjimka. Detaily naleznete v shell okně.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1262"/> + <location filename="../Debugger/DebugUI.py" line="1260"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Debugovaný program byl neočekávaně ukončen.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source>Breakpoint Condition Error</source> <translation>Chyba v podmíněném breakpointu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1576"/> + <location filename="../Debugger/DebugUI.py" line="1574"/> <source>Coverage of Project</source> <translation>Pokrytí projektu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1563"/> + <location filename="../Debugger/DebugUI.py" line="1561"/> <source>Coverage of Script</source> <translation>Pokrytí skriptu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <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="../Debugger/DebugUI.py" line="1708"/> + <location filename="../Debugger/DebugUI.py" line="1706"/> <source>Profile of Project</source> <translation>Profilovat projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1695"/> + <location filename="../Debugger/DebugUI.py" line="1693"/> <source>Profile of Script</source> <translation>Profilovat skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>V aktuálním projektu není definován hlavní skript. Debugování není možné.</translation> </message> @@ -6217,7 +6217,7 @@ <translation type="obsolete">Zadejte příkaz pro vykonání</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="325"/> + <location filename="../Debugger/DebugUI.py" line="323"/> <source>Stop the running script.</source> <translation>Zastavit běžící skript.</translation> </message> @@ -6227,43 +6227,43 @@ <translation type="obsolete"><b>Vyhodnotit</b><p>Vyhodnotit výraz aktuálního kontextu debugovaného programu. Výsledek je zobrazen v shell okně.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source>Watch Expression Error</source> <translation>Chyba sledovacího bodu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1409"/> + <location filename="../Debugger/DebugUI.py" line="1407"/> <source>Watch expression already exists</source> <translation>Sledovací bod již existuje</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>Ignored Exceptions</source> <translation>Ignorované výjimky</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>&Ignored Exceptions...</source> <translation>&Ignorované výjimky...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="489"/> + <source>Configure ignored exceptions</source> + <translation>Konfigurovat ignorované výjimky</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="491"/> - <source>Configure ignored exceptions</source> - <translation>Konfigurovat ignorované výjimky</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="493"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>Ignorované výjimky</b><p>Seznam ignorovaných výjimek. Během debugování jsou zvýrazněny jen ty typy výjimek, které nejsou uvedeny v tomto seznamu.</p><p>Všimněte si prosím, že výjimky typu unhalted nelze ignorovat.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="506"/> + <location filename="../Debugger/DebugUI.py" line="504"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation></translation> @@ -6279,128 +6279,128 @@ <translation type="obsolete"><p><b>{0}</b> byl ukončen s exit statusem {1}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1119"/> + <location filename="../Debugger/DebugUI.py" line="1117"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation><p>Soubor <b>{0}</b> na řádce <b>{1}</b>, písmeno <b>{2}</b>, obsahuje syntaktickou chybu <b>{3}</b>.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1184"/> + <location filename="../Debugger/DebugUI.py" line="1182"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation><p>Debugovaný program vyvolal výjimku <b>{0}</b><br>"<b>{1}</b>"<br>Soubor: <b>{2}</b>, řádek: <b>{3}</b></p><p>Zastavit zde?</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1199"/> + <location filename="../Debugger/DebugUI.py" line="1197"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>Debugovaný program vyvolal výjimku <b>{0}</b><br>"<b>{1}</b>"</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>Podmínka breakpointu <b>{0}, {1}</b> obsahuje syntaktickou chybu.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>Sledovací bod <b>{0}</b> obsahuje syntaktickou chybu.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1399"/> + <location filename="../Debugger/DebugUI.py" line="1397"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>Sledovací bod '<b>{0}</b>' již existuje.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1403"/> + <location filename="../Debugger/DebugUI.py" line="1401"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>Sledovací bod '<b>{0}</b>' pro proměnnou <b>{1}</b> již existuje.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1069"/> + <location filename="../Debugger/DebugUI.py" line="1067"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="304"/> + <location filename="../Debugger/DebugUI.py" line="302"/> <source>Restart</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="310"/> + <location filename="../Debugger/DebugUI.py" line="308"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="326"/> + <location filename="../Debugger/DebugUI.py" line="324"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1248"/> + <location filename="../Debugger/DebugUI.py" line="1246"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> + <location filename="../Debugger/DebugUI.py" line="1034"/> <source><p>Message: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1040"/> <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1045"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1055"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>Message: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1060"/> <source>The program has terminated with an exit status of {0}. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1065"/> + <location filename="../Debugger/DebugUI.py" line="1063"/> <source>"{0}" has terminated with an exit status of {1}. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1074"/> + <location filename="../Debugger/DebugUI.py" line="1072"/> <source>The program has terminated with an exit status of {0}. {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1078"/> + <location filename="../Debugger/DebugUI.py" line="1076"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>Move Instruction Pointer to Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>&Jump To Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="372"/> + <location filename="../Debugger/DebugUI.py" line="370"/> <source>Skip the code from the current line to the current cursor position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="375"/> + <location filename="../Debugger/DebugUI.py" line="373"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation type="unfinished"></translation> </message> @@ -6408,52 +6408,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="../Debugger/DebugViewer.py" line="174"/> + <location filename="../Debugger/DebugViewer.py" line="145"/> <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="178"/> + <location filename="../Debugger/DebugViewer.py" line="149"/> <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="184"/> + <location filename="../Debugger/DebugViewer.py" line="155"/> <source>Set</source> <translation>Množina</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="159"/> + <location filename="../Debugger/DebugViewer.py" line="130"/> <source>Source</source> <translation>Zdroj</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="261"/> + <location filename="../Debugger/DebugViewer.py" line="226"/> <source>Threads:</source> <translation>Thready:</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation>Jméno</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation>Stav</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="520"/> + <location filename="../Debugger/DebugViewer.py" line="457"/> <source>waiting at breakpoint</source> <translation>čekající na breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="522"/> + <location filename="../Debugger/DebugViewer.py" line="459"/> <source>running</source> <translation>běžící</translation> </message> @@ -41034,7 +41034,7 @@ <context> <name>InterfacePage</name> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="226"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="205"/> <source>English</source> <comment>Translate this with your language</comment> <translation>Česky</translation> @@ -41225,37 +41225,32 @@ <translation>Vybrat typ layoutu.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="463"/> - <source>Shell</source> - <translation></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="469"/> <source>Select to get a separate shell window</source> - <translation>Vybrat pro získání oddělených shell oken</translation> + <translation type="obsolete">Vybrat pro získání oddělených shell oken</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="501"/> <source>separate window</source> - <translation>oddělit okna</translation> + <translation type="obsolete">oddělit okna</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="492"/> <source>File-Browser</source> - <translation>Prohlížeč souborů</translation> + <translation type="obsolete">Prohlížeč souborů</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="498"/> <source>Select to get a separate file browser window</source> - <translation>Vybrat pro získání odděleného okna prohlížeče souborů</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="562"/> + <translation type="obsolete">Vybrat pro získání odděleného okna prohlížeče souborů</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="490"/> <source>Reset layout to factory defaults</source> <translation>Resetovat layout továrny defaultů</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="244"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="223"/> <source>System</source> <translation>Systém</translation> </message> @@ -41302,27 +41297,27 @@ <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="479"/> <source>Select to embed the shell in the Debug-Viewer</source> - <translation>Vybrat pro přiřazení shellu do debug prohlížeče</translation> + <translation type="obsolete">Vybrat pro přiřazení shellu do debug prohlížeče</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="511"/> <source>embed in Debug-Viewer</source> - <translation>přiřadit do debug prohlížeče</translation> + <translation type="obsolete">přiřadit do debug prohlížeče</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="508"/> <source>Select to embed the file browser in the Debug-Viewer</source> - <translation>Vybrat pro přiřazení prohlížeče souborů do debug prohlížeče</translation> + <translation type="obsolete">Vybrat pro přiřazení prohlížeče souborů do debug prohlížeče</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="518"/> <source>Select to embed the file browser in the Project-Viewer</source> - <translation>Vybrat pro přiřazení prohlížeče souborů do prohlížeče projektu</translation> + <translation type="obsolete">Vybrat pro přiřazení prohlížeče souborů do prohlížeče projektu</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="521"/> <source>embed in Project-Viewer</source> - <translation>přiřadit do prohlížeče projektu</translation> + <translation type="obsolete">přiřadit do prohlížeče projektu</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="63"/> @@ -41345,12 +41340,12 @@ <translation type="obsolete">Zobrazit na nový výstup</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="533"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="461"/> <source>Tabs</source> <translation>Taby</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="539"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="467"/> <source>Show only one close button instead of one for each tab</source> <translation>Zobrazit pouze jedno tlačítko Zavřít místo jednoho v každém tabu</translation> </message> @@ -52989,42 +52984,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="../Project/ProjectBrowser.py" line="71"/> + <location filename="../Project/ProjectBrowser.py" line="65"/> <source>up to date</source> <translation>aktuální</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="72"/> + <location filename="../Project/ProjectBrowser.py" line="66"/> <source>files added</source> <translation>souborů přidáno</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="73"/> + <location filename="../Project/ProjectBrowser.py" line="67"/> <source>local modifications</source> <translation>místní změny</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="76"/> + <location filename="../Project/ProjectBrowser.py" line="70"/> <source>update required</source> <translation>požadováno update</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="77"/> + <location filename="../Project/ProjectBrowser.py" line="71"/> <source>conflict</source> <translation>konflikt</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="75"/> + <location filename="../Project/ProjectBrowser.py" line="69"/> <source>files replaced</source> <translation>nahrazeno souborů</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="74"/> + <location filename="../Project/ProjectBrowser.py" line="68"/> <source>files removed</source> <translation>odebráno souborů</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="434"/> + <location filename="../Project/ProjectBrowser.py" line="398"/> <source>unknown status</source> <translation type="unfinished"></translation> </message> @@ -75708,573 +75703,573 @@ <translation>Inicializace jednouživatelského aplikačního serveru...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>Project-Viewer</source> <translation>Prohlížeč projektu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Debug-Viewer</source> <translation>Prohlížeč debugeru</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Log-Viewer</source> <translation>Prohlížeč logu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Task-Viewer</source> <translation>Prohlížeč úloh</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Template-Viewer</source> <translation>Prohlížeč šablon</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Shell</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>File-Browser</source> <translation>Browser souborů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Quit</source> <translation>Konec</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>&Quit</source> <translation>&Konec</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1365"/> + <location filename="../UI/UserInterface.py" line="1339"/> <source>Quit the IDE</source> <translation>Ukončit IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1366"/> + <location filename="../UI/UserInterface.py" line="1340"/> <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="1421"/> + <location filename="../UI/UserInterface.py" line="1395"/> <source>Edit Profile</source> <translation>Editační profil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1401"/> <source>Activate the edit view profile</source> <translation>Aktivovat profil editace</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1403"/> + <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="1412"/> + <source>Debug Profile</source> + <translation>Debugovací profil</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1418"/> + <source>Activate the debug view profile</source> + <translation>Aktivovat debugovací profil</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1420"/> + <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="1429"/> - <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="1438"/> - <source>Debug Profile</source> - <translation>Debugovací profil</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1444"/> - <source>Activate the debug view profile</source> - <translation>Aktivovat debugovací profil</translation> + <source>&Project-Viewer</source> + <translation>Prohlížeč &projektu</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1429"/> + <source>Alt+Shift+P</source> + <translation></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1464"/> + <source>Alt+Shift+D</source> + <translation></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>&Shell</source> + <translation>&Shell</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>Alt+Shift+S</source> + <translation></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1498"/> + <source>Alt+Shift+F</source> + <translation></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1515"/> + <source>Alt+Shift+G</source> + <translation></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>Alt+Shift+T</source> + <translation></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1446"/> - <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="1455"/> - <source>&Project-Viewer</source> - <translation>Prohlížeč &projektu</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>Alt+Shift+P</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1490"/> - <source>Alt+Shift+D</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>&Shell</source> - <translation>&Shell</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>Alt+Shift+S</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> - <source>Alt+Shift+F</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1541"/> - <source>Alt+Shift+G</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1559"/> - <source>Alt+Shift+T</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> <source>Alt+Shift+M</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>What's This?</source> <translation>Co je to?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>&What's This?</source> <translation>&Co je to?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>Shift+F1</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752"/> + <location filename="../UI/UserInterface.py" line="1726"/> <source>Context sensitive help</source> <translation>Kontextově senzitivní nápověda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1753"/> + <location filename="../UI/UserInterface.py" line="1727"/> <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="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>Helpviewer</source> <translation>Prohlížeč nápovědy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>&Helpviewer...</source> <translation>Pro&hlížeč nápovědy...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>F1</source> <translation></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1745"/> + <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="1767"/> + <source>Show Versions</source> + <translation>Zobrazit verze</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show &Versions</source> + <translation>Zobrazit &verze</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1771"/> - <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="1793"/> - <source>Show Versions</source> - <translation>Zobrazit verze</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show &Versions</source> - <translation>Zobrazit &verze</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1797"/> <source>Display version information</source> <translation>Zobrazit informace o verzích</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1799"/> + <location filename="../UI/UserInterface.py" line="1773"/> <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="1809"/> + <location filename="../UI/UserInterface.py" line="1783"/> <source>Check for Updates</source> <translation>Zjistit aktualizace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806"/> + <location filename="../UI/UserInterface.py" line="1780"/> <source>Check for &Updates...</source> <translation>Zjistit akt&ualizace...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Report Bug</source> <translation>Reportovat Bugy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1844"/> + <location filename="../UI/UserInterface.py" line="1818"/> <source>Report &Bug...</source> <translation>Reportovat &Bugy...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848"/> + <location filename="../UI/UserInterface.py" line="1822"/> <source>Report a bug</source> <translation>Reportovat bug</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1849"/> + <location filename="../UI/UserInterface.py" line="1823"/> <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="2883"/> + <location filename="../UI/UserInterface.py" line="2858"/> <source>Unittest</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1845"/> <source>&Unittest...</source> <translation>&Unittest...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1850"/> <source>Start unittest dialog</source> <translation>Otevřít dialog unittestu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1877"/> + <location filename="../UI/UserInterface.py" line="1851"/> <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="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>Unittest Restart</source> <translation>Restart unittestu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>&Restart Unittest...</source> <translation>&Restart unittestu...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1890"/> + <location filename="../UI/UserInterface.py" line="1864"/> <source>Restart last unittest</source> <translation>Restart posledního unittestu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1891"/> + <location filename="../UI/UserInterface.py" line="1865"/> <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="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest Script</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest &Script...</source> <translation>Unittest &Script...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920"/> + <location filename="../UI/UserInterface.py" line="1894"/> <source>Run unittest with current script</source> <translation>Spustit unittest s aktuálním skriptem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922"/> + <location filename="../UI/UserInterface.py" line="1896"/> <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="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>Unittest Project</source> <translation>Unittest Projekt</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1930"/> + <location filename="../UI/UserInterface.py" line="1904"/> <source>Unittest &Project...</source> <translation>Unittest &Projekt...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1909"/> <source>Run unittest with current project</source> <translation>Spustit unittest s aktuálním projektem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1937"/> + <location filename="../UI/UserInterface.py" line="1911"/> <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="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>UI Previewer</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>&UI Previewer...</source> <translation>&UI Previewer...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003"/> + <location filename="../UI/UserInterface.py" line="1977"/> <source>Start the UI Previewer</source> <translation>Spustit UI Previewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004"/> + <location filename="../UI/UserInterface.py" line="1978"/> <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="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>Translations Previewer</source> <translation>Náhled překladů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>&Translations Previewer...</source> <translation>Náhled &překladů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2016"/> + <location filename="../UI/UserInterface.py" line="1990"/> <source>Start the Translations Previewer</source> <translation>Spustit Previewer překladů</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1992"/> + <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="1999"/> + <source>Compare Files</source> + <translation>Porovnat soubory</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>&Compare Files...</source> + <translation>&Porovnat soubory...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2017"/> + <source>Compare two files</source> + <translation>Porovnat dva soubory</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2005"/> + <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="2012"/> + <source>Compare Files side by side</source> + <translation>Porovnat soubory stranu proti straně</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2018"/> - <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="2025"/> - <source>Compare Files</source> - <translation>Porovnat soubory</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>&Compare Files...</source> - <translation>&Porovnat soubory...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2043"/> - <source>Compare two files</source> - <translation>Porovnat dva soubory</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2031"/> - <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="2038"/> - <source>Compare Files side by side</source> - <translation>Porovnat soubory stranu proti straně</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2044"/> <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="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>Preferences</source> <translation>Nastavení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>&Preferences...</source> <translation>Na&stavení...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144"/> + <location filename="../UI/UserInterface.py" line="2118"/> <source>Set the prefered configuration</source> <translation>Nastavení konfigurace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146"/> + <location filename="../UI/UserInterface.py" line="2120"/> <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="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload APIs</source> <translation>Obnovit API</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload &APIs</source> <translation>Obnovit &API</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2187"/> + <location filename="../UI/UserInterface.py" line="2161"/> <source>Reload the API information</source> <translation>Obnovit API nastavení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2189"/> + <location filename="../UI/UserInterface.py" line="2163"/> <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="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>View Profiles</source> <translation>Profily pohledů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>&View Profiles...</source> <translation>Profily &pohledů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2217"/> + <location filename="../UI/UserInterface.py" line="2191"/> <source>Configure view profiles</source> <translation>Konfigurace profilů pohledů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2219"/> + <location filename="../UI/UserInterface.py" line="2193"/> <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="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard Shortcuts</source> <translation>Klávesové zkratky</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard &Shortcuts...</source> <translation>Klávesové &zkratky...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2249"/> + <location filename="../UI/UserInterface.py" line="2223"/> <source>Set the keyboard shortcuts</source> <translation>Nastavení klávesových zkratek</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2225"/> <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="5849"/> + <location filename="../UI/UserInterface.py" line="5790"/> <source>Export Keyboard Shortcuts</source> <translation>Exportovat klávesové zkratky</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2233"/> <source>&Export Keyboard Shortcuts...</source> <translation>&Exportovat klávesové zkratky...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2238"/> <source>Export the keyboard shortcuts</source> <translation>Export klávesových zkratek</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2240"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Import Keyboard Shortcuts</source> <translation>Import klávesových zkratek</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2273"/> + <location filename="../UI/UserInterface.py" line="2247"/> <source>&Import Keyboard Shortcuts...</source> <translation>&Import klávesových zkratek...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2278"/> + <location filename="../UI/UserInterface.py" line="2252"/> <source>Import the keyboard shortcuts</source> <translation>Import klávesových zkratek</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2280"/> + <location filename="../UI/UserInterface.py" line="2254"/> <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="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Activate current editor</source> <translation>Aktivovat aktuální editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Alt+Shift+E</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Shift+Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt4 Documentation</source> <translation>Qt4 dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt&4 Documentation</source> <translation>Qt&4 dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2484"/> + <location filename="../UI/UserInterface.py" line="2458"/> <source>Open Qt4 Documentation</source> <translation>Otevřít Qt4 dokumentaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt4 Documentation</source> <translation>PyQt4 dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2516"/> + <location filename="../UI/UserInterface.py" line="2490"/> <source>Open PyQt4 Documentation</source> <translation>Otevřít PyQt4 dokumentaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596"/> + <location filename="../UI/UserInterface.py" line="2570"/> <source>Eric API Documentation</source> <translation>Eric API dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596"/> + <location filename="../UI/UserInterface.py" line="2570"/> <source>&Eric API Documentation</source> <translation>&Eric API dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600"/> + <location filename="../UI/UserInterface.py" line="2574"/> <source>Open Eric API Documentation</source> <translation>Otevřít Eric API dokumentaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691"/> + <location filename="../UI/UserInterface.py" line="2665"/> <source>&Unittest</source> <translation>&Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2708"/> + <location filename="../UI/UserInterface.py" line="2682"/> <source>E&xtras</source> <translation>E&xtra funkce</translation> </message> @@ -76284,167 +76279,167 @@ <translation type="obsolete">&Nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2724"/> + <location filename="../UI/UserInterface.py" line="2698"/> <source>Select Tool Group</source> <translation>Vybrat skupinu nástrojů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2732"/> + <location filename="../UI/UserInterface.py" line="2706"/> <source>Se&ttings</source> <translation>Nas&tavení</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2731"/> + <source>&Window</source> + <translation>O&kno</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757"/> - <source>&Window</source> - <translation>O&kno</translation> + <source>&Toolbars</source> + <translation>&Toolbary</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2782"/> - <source>&Toolbars</source> - <translation>&Toolbary</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2807"/> <source>&Help</source> <translation>&Nápověda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2882"/> + <location filename="../UI/UserInterface.py" line="2857"/> <source>Tools</source> <translation>Nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2884"/> + <location filename="../UI/UserInterface.py" line="2859"/> <source>Settings</source> <translation>Nastavení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <source>Help</source> <translation>Nápověda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2886"/> + <location filename="../UI/UserInterface.py" line="2861"/> <source>Profiles</source> <translation>Profily</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3262"/> + <location filename="../UI/UserInterface.py" line="3237"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Čísla verzí</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6829"/> + <location filename="../UI/UserInterface.py" line="6770"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <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="3676"/> + <location filename="../UI/UserInterface.py" line="3651"/> <source>Configure Tool Groups ...</source> <translation>Konfigurace Skupin nástrojů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3680"/> + <location filename="../UI/UserInterface.py" line="3655"/> <source>Configure current Tool Group ...</source> <translation>Konfigurace aktuální skupiny nástrojů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3631"/> + <location filename="../UI/UserInterface.py" line="3606"/> <source>&Builtin Tools</source> <translation>&Vestavěné nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <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="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <source>Problem</source> <translation>Problém</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <source>Process Generation Error</source> <translation>Chyba v procesu generování</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <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="4731"/> + <location filename="../UI/UserInterface.py" line="4672"/> <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="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <source>Documentation Missing</source> <translation>Dokumentace chybí</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source>Documentation</source> <translation>Dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5306"/> + <location filename="../UI/UserInterface.py" line="5247"/> <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="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <source>Save tasks</source> <translation>Uložit úlohy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <source>Read tasks</source> <translation>Načíst úlohy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Error during updates check</source> <translation>Chyba během zjišťování aktualizací</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>Update available</source> <translation>Byla nalezena aktualizace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2201"/> + <location filename="../UI/UserInterface.py" line="2175"/> <source>Show external tools</source> <translation>Zobrazit externí nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196"/> + <location filename="../UI/UserInterface.py" line="2170"/> <source>Show external &tools</source> <translation>Zobrazit externí nás&troje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Could not perform updates check.</source> <translation>Kontrolu updatů nelze provést.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>&Cancel</source> <translation>&Zrušit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>First time usage</source> <translation>Spuštěno poprvé</translation> </message> @@ -76454,62 +76449,62 @@ <translation>Inicializace Plugin manažera...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2793"/> + <location filename="../UI/UserInterface.py" line="2768"/> <source>P&lugins</source> <translation>P&luginy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2887"/> + <location filename="../UI/UserInterface.py" line="2862"/> <source>Plugins</source> <translation>Pluginy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2375"/> + <location filename="../UI/UserInterface.py" line="2349"/> <source>Plugin Infos</source> <translation>Plugin Infa</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2379"/> + <location filename="../UI/UserInterface.py" line="2353"/> <source>Show Plugin Infos</source> <translation>Zobrazit Plugin infa</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2354"/> + <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="2349"/> + <source>&Plugin Infos...</source> + <translation>&Plugin Infa...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3623"/> + <source>&Plugin Tools</source> + <translation>&Plugin nástroje</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2380"/> - <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> + <source>Uninstall Plugin</source> + <translation>Odinstalovat plugin</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2375"/> - <source>&Plugin Infos...</source> - <translation>&Plugin Infa...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3648"/> - <source>&Plugin Tools</source> - <translation>&Plugin nástroje</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2406"/> - <source>Uninstall Plugin</source> - <translation>Odinstalovat plugin</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2401"/> <source>&Uninstall Plugin...</source> <translation>&Odinstalovat plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2407"/> + <location filename="../UI/UserInterface.py" line="2381"/> <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="3796"/> + <location filename="../UI/UserInterface.py" line="3771"/> <source>&Show all</source> <translation>&Zobrazit vše</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3798"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>&Hide all</source> <translation>&Skrýt vše</translation> </message> @@ -76519,97 +76514,97 @@ <translation>Aktivace pluginů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2713"/> + <location filename="../UI/UserInterface.py" line="2687"/> <source>Wi&zards</source> <translation>&Průvodci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show downloadable versions</source> <translation>Zobrazit verze ke stažení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show &downloadable versions...</source> <translation>Zobrazit verze pro &download...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1821"/> + <location filename="../UI/UserInterface.py" line="1795"/> <source>Show the versions available for download</source> <translation>Zobrazit dostupné verze ke stažení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6815"/> + <location filename="../UI/UserInterface.py" line="6756"/> <source><h3>Available versions</h3><table></source> <translation><h3>Dostupné verze</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2414"/> + <location filename="../UI/UserInterface.py" line="2388"/> <source>Plugin Repository</source> <translation>Repozitář pluginů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2414"/> + <location filename="../UI/UserInterface.py" line="2388"/> <source>Plugin &Repository...</source> <translation>&Repozitář pluginů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419"/> - <source>Show Plugins available for download</source> - <translation>Zobrazit pluginy dostupné ke stažení</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2421"/> - <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="2393"/> + <source>Show Plugins available for download</source> + <translation>Zobrazit pluginy dostupné ke stažení</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2395"/> + <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="2367"/> <source>Install Plugins</source> <translation>Instalovat pluginy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2388"/> + <location filename="../UI/UserInterface.py" line="2362"/> <source>&Install Plugins...</source> <translation>&Instalovat pluginy...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2394"/> + <location filename="../UI/UserInterface.py" line="2368"/> <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="2070"/> + <location filename="../UI/UserInterface.py" line="2044"/> <source>Mini Editor</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2065"/> + <location filename="../UI/UserInterface.py" line="2039"/> <source>Mini &Editor...</source> <translation>Mini &Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2071"/> + <location filename="../UI/UserInterface.py" line="2045"/> <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="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Toolbars</source> <translation>Lišty nástrojů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Tool&bars...</source> <translation>&Lišty nástrojů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2234"/> + <location filename="../UI/UserInterface.py" line="2208"/> <source>Configure toolbars</source> <translation>Konfigurace lišt nástrojů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235"/> + <location filename="../UI/UserInterface.py" line="2209"/> <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> @@ -76619,272 +76614,272 @@ <translation>Obnovit manažer nástrojových lišt...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>External Tools</source> <translation>Externí nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>Multiproject-Viewer</source> <translation>Prohlížeč multiprojektu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>&Multiproject-Viewer</source> <translation>Prohlížeč &multiprojektu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6168"/> + <location filename="../UI/UserInterface.py" line="6109"/> <source>Save session</source> <translation>Uložit relaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source>Read session</source> <translation>Načíst relaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3058"/> + <location filename="../UI/UserInterface.py" line="3033"/> <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="3072"/> + <location filename="../UI/UserInterface.py" line="3047"/> <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="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request Feature</source> <translation>Požadavek na vlastnost</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request &Feature...</source> <translation>&Požadavek na vlastnost...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1860"/> + <location filename="../UI/UserInterface.py" line="1834"/> <source>Send a feature request</source> <translation>Poslat požadavek na vlastnost</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1862"/> + <location filename="../UI/UserInterface.py" line="1836"/> <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="3051"/> + <location filename="../UI/UserInterface.py" line="3026"/> <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="3079"/> + <location filename="../UI/UserInterface.py" line="3054"/> <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="3086"/> + <location filename="../UI/UserInterface.py" line="3061"/> <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="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>Horizontal Toolbox</source> <translation>Vodorovná nástrojová lišta</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>&Horizontal Toolbox</source> <translation>&Horizontální lista nástrojů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1624"/> + <location filename="../UI/UserInterface.py" line="1598"/> <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="1626"/> + <location filename="../UI/UserInterface.py" line="1600"/> <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="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>Restart application</source> <translation>Restartovat aplikaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <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="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Alt+Shift+A</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2802"/> + <location filename="../UI/UserInterface.py" line="2777"/> <source>Configure...</source> <translation>Konfigurovat...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3065"/> + <location filename="../UI/UserInterface.py" line="3040"/> <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="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Switch between tabs</source> <translation>Přepnout mezi taby</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Ctrl+1</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>Export Preferences</source> <translation>Exportovat předvolby</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>E&xport Preferences...</source> <translation>E&xportovat předvolby...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160"/> + <location filename="../UI/UserInterface.py" line="2134"/> <source>Export the current configuration</source> <translation>Export aktuální konfigurace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2162"/> + <location filename="../UI/UserInterface.py" line="2136"/> <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="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>Import Preferences</source> <translation>Import předvoleb</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>I&mport Preferences...</source> <translation>I&mport předvoleb...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2174"/> + <location filename="../UI/UserInterface.py" line="2148"/> <source>Import a previously exported configuration</source> <translation>Import dříve exportované konfigurace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176"/> + <location filename="../UI/UserInterface.py" line="2150"/> <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="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Show next</source> <translation>Zobrazit další</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Show previous</source> <translation>Zobrazit předchozí</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>Left Sidebar</source> <translation>Levé menu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>&Left Sidebar</source> <translation>&Levé menu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1638"/> + <location filename="../UI/UserInterface.py" line="1612"/> <source>Toggle the left sidebar window</source> <translation>Přepnout okno levého menu</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1613"/> + <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="1635"/> + <source>Bottom Sidebar</source> + <translation>Dolní menu</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>&Bottom Sidebar</source> + <translation>&Dolní menu</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1639"/> - <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="1661"/> - <source>Bottom Sidebar</source> - <translation>Dolní menu</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>&Bottom Sidebar</source> - <translation>&Dolní menu</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1665"/> <source>Toggle the bottom sidebar window</source> <translation>Přepnout okno dolního menu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1667"/> + <location filename="../UI/UserInterface.py" line="1641"/> <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="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>&Debug-Viewer</source> <translation>Prohlížeč &debugeru</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL Browser</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL &Browser...</source> <translation>SQL &Browser...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2057"/> + <location filename="../UI/UserInterface.py" line="2031"/> <source>Browse a SQL database</source> <translation>Procházet SQL databázi</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2058"/> + <location filename="../UI/UserInterface.py" line="2032"/> <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> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>Icon Editor</source> <translation>Editor ikon</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>&Icon Editor...</source> <translation>Editor &ikon...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt 3 support</source> <translation>Qt 3 podpora</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>PySide Documentation</source> <translation>PySide dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>Py&Side Documentation</source> <translation>Py&Side dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2622"/> + <location filename="../UI/UserInterface.py" line="2596"/> <source>Open PySide Documentation</source> <translation>Otevřít PySide dokumentaci</translation> </message> @@ -76894,221 +76889,221 @@ <translation type="obsolete"><p>Počátek dokumentace PySide nebyl nastaven.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1325"/> + <location filename="../UI/UserInterface.py" line="1299"/> <source>{0} - Passive Mode</source> <translation>{0} - Pasivní mód</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332"/> + <location filename="../UI/UserInterface.py" line="1306"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - pasivní mód</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1336"/> + <location filename="../UI/UserInterface.py" line="1310"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - pasivní mód</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3161"/> + <location filename="../UI/UserInterface.py" line="3136"/> <source>External Tools/{0}</source> <translation>Externí nástroje/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <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="4551"/> + <location filename="../UI/UserInterface.py" line="4492"/> <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="4618"/> + <location filename="../UI/UserInterface.py" line="4559"/> <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="4669"/> + <location filename="../UI/UserInterface.py" line="4610"/> <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="4711"/> + <location filename="../UI/UserInterface.py" line="4652"/> <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="4779"/> + <location filename="../UI/UserInterface.py" line="4720"/> <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="4834"/> + <location filename="../UI/UserInterface.py" line="4775"/> <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="4855"/> + <location filename="../UI/UserInterface.py" line="4796"/> <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="4948"/> + <location filename="../UI/UserInterface.py" line="4889"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>No toolgroup entry '{0}' found.</source> <translation>Skupina nástrojů '{0}' nenalezena. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4996"/> + <location filename="../UI/UserInterface.py" line="4937"/> <source>Starting process '{0} {1}'. </source> <translation>Spouštím proces '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5088"/> + <location filename="../UI/UserInterface.py" line="5029"/> <source>Process '{0}' has exited. </source> <translation>Proces '{0}' byl ukončen. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Adresář dokumentace "<b>{0}</b>" nebyl nalezen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <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="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s úlohami <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6105"/> + <location filename="../UI/UserInterface.py" line="6046"/> <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="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor relace session <b>{0}</b> nelze přečíst.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <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="6613"/> + <location filename="../UI/UserInterface.py" line="6554"/> <source>Trying host {0}</source> <translation>Zkouším host {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="973"/> + <location filename="../UI/UserInterface.py" line="955"/> <source>Cooperation</source> <translation>Spolupráce</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Alt+Shift+O</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1030"/> + <location filename="../UI/UserInterface.py" line="1004"/> <source>Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Alt+Shift+Y</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1038"/> + <location filename="../UI/UserInterface.py" line="1012"/> <source>Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1728"/> + <location filename="../UI/UserInterface.py" line="1702"/> <source>Alt+Shift+B</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2532"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2576"/> + <location filename="../UI/UserInterface.py" line="2550"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2552"/> <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="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6670"/> + <location filename="../UI/UserInterface.py" line="6611"/> <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="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <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> @@ -77133,568 +77128,568 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New Window</source> <translation type="unfinished">Nové okno</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New &Window</source> <translation type="unfinished">&Nové okno</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1904"/> + <location filename="../UI/UserInterface.py" line="1878"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1906"/> + <location filename="../UI/UserInterface.py" line="1880"/> <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="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>&Snapshot...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2129"/> + <location filename="../UI/UserInterface.py" line="2103"/> <source>Take snapshots of a screen region</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2131"/> + <location filename="../UI/UserInterface.py" line="2105"/> <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="4925"/> + <location filename="../UI/UserInterface.py" line="4866"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6885"/> + <location filename="../UI/UserInterface.py" line="6826"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1595"/> + <location filename="../UI/UserInterface.py" line="1569"/> <source>Left Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1607"/> + <location filename="../UI/UserInterface.py" line="1581"/> <source>Right Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1461"/> + <location filename="../UI/UserInterface.py" line="1435"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1463"/> + <location filename="../UI/UserInterface.py" line="1437"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1478"/> + <location filename="../UI/UserInterface.py" line="1452"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1454"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1470"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1472"/> + <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1488"/> + <source>Switch the input focus to the Shell window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1490"/> + <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1498"/> - <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1514"/> - <source>Switch the input focus to the Shell window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1516"/> - <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> <source>&File-Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1530"/> + <location filename="../UI/UserInterface.py" line="1504"/> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1532"/> + <location filename="../UI/UserInterface.py" line="1506"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Lo&g-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1547"/> + <location filename="../UI/UserInterface.py" line="1521"/> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1523"/> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>&Task-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1539"/> + <source>Switch the input focus to the Task-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Templ&ate-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1557"/> + <source>Switch the input focus to the Template-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1559"/> - <source>&Task-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1565"/> - <source>Switch the input focus to the Task-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Templ&ate-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1583"/> - <source>Switch the input focus to the Template-Viewer window.</source> + <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1569"/> + <source>&Left Toolbox</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1572"/> + <source>Toggle the Left Toolbox window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> + <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1581"/> + <source>&Right Toolbox</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1585"/> - <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1595"/> - <source>&Left Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1598"/> - <source>Toggle the Left Toolbox window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1599"/> - <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1607"/> - <source>&Right Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1611"/> <source>Toggle the Right Toolbox window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1612"/> + <location filename="../UI/UserInterface.py" line="1586"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right 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="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>Right Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>&Right Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1651"/> + <location filename="../UI/UserInterface.py" line="1625"/> <source>Toggle the right sidebar window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1653"/> + <location filename="../UI/UserInterface.py" line="1627"/> <source><b>Toggle the right sidebar window</b><p>If the right 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="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Cooperation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Co&operation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1681"/> + <location filename="../UI/UserInterface.py" line="1655"/> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1683"/> + <location filename="../UI/UserInterface.py" line="1657"/> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Symbols-Viewer</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>S&ymbols-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1690"/> + <source>Switch the input focus to the Symbols-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1692"/> + <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Numbers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Num&bers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1708"/> + <source>Switch the input focus to the Numbers-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1710"/> - <source>S&ymbols-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1716"/> - <source>Switch the input focus to the Symbols-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1718"/> - <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Numbers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Num&bers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1734"/> - <source>Switch the input focus to the Numbers-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1736"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2762"/> + <location filename="../UI/UserInterface.py" line="2736"/> <source>&Windows</source> <translation type="unfinished">&Windows</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1567"/> + <location filename="../UI/UserInterface.py" line="1541"/> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>IRC</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>&IRC</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>Meta+Shift+I</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1699"/> + <location filename="../UI/UserInterface.py" line="1673"/> <source>Switch the input focus to the IRC window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1701"/> + <location filename="../UI/UserInterface.py" line="1675"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1936"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1937"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-Designer</source> + <source>Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-&Designer...</source> + <source>Qt-&Linguist...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1962"/> - <source>Start Qt-Designer</source> + <source>Start Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1963"/> - <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-&Linguist...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1988"/> - <source>Start Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1989"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt5 Documentation</source> <translation type="unfinished">Qt4 dokumentace {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt&5 Documentation</source> <translation type="unfinished">Qt&4 dokumentace {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2499"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open Qt5 Documentation</source> <translation type="unfinished">Otevřít Qt4 dokumentaci {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3097"/> + <location filename="../UI/UserInterface.py" line="3072"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293"/> + <location filename="../UI/UserInterface.py" line="2267"/> <source>Manage the saved SSL certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295"/> + <location filename="../UI/UserInterface.py" line="2269"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2283"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311"/> + <location filename="../UI/UserInterface.py" line="2285"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt5 Documentation</source> <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2509"/> <source>Open PyQt5 Documentation</source> <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5313"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>Adresář PyQt4 dokumentace není nakonfigurován.</p> {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2560"/> + <location filename="../UI/UserInterface.py" line="2534"/> <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="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836"/> - <source>Show Error Log</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1832"/> - <source>Show Error &Log...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1837"/> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6608"/> - <source>Version Check</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1408"/> - <source>Open a new eric6 instance</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1410"/> - <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1773"/> - <source><b>Helpviewer</b><p>Display the eric6 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"><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> {6 ?}</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="1810"/> + <source>Show Error Log</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1806"/> + <source>Show Error &Log...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1811"/> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6549"/> + <source>Version Check</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1382"/> + <source>Open a new eric6 instance</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1384"/> + <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1747"/> + <source><b>Helpviewer</b><p>Display the eric6 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"><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> {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1784"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> <translation type="unfinished"><b>Zjistit aktualizace</b><p>Zkontroluje přes internet jestli existují nějaké aktualizace Eric5.</p> {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823"/> + <location filename="../UI/UserInterface.py" line="1797"/> <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> <translation type="unfinished"><b>Zobrazit dostupné verze ke stažení</b><p>Zobrazit dostupné verze eric5 pro stažení z internetu.</p> {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 Web Browser</source> <translation type="unfinished">eric5 web prohlížeč {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 &Web Browser...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2099"/> + <location filename="../UI/UserInterface.py" line="2073"/> <source>Start the eric6 Web Browser</source> <translation type="unfinished">Spustit eric5 web prohlížeč {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2075"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2115"/> + <location filename="../UI/UserInterface.py" line="2089"/> <source>Start the eric6 Icon Editor</source> <translation type="unfinished">Spustit eric5 editor ikon {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2117"/> + <location filename="../UI/UserInterface.py" line="2091"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation type="unfinished"><b>Editor ikon</b><p>Spustí se eric5 editor ikon pro jednoduchou editaci ikon.</p> {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2203"/> + <location filename="../UI/UserInterface.py" line="2177"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> <translation type="unfinished"><b>Zobrazit externí nástroje</b><p>Otevře dialog pro zobrazení cesty a verze externích nástrojů používaných Eric5.</p> {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2602"/> + <location filename="../UI/UserInterface.py" line="2576"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.</p></source> <translation type="unfinished"><b>Eric API dokumentace</b><p>Zobrazit Eric API dokumentaci. Umístění dokumentace je v podadresáři Documentation/Source v instalačním adresáři eric5.</p> {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished">Qt v.3 není podporováno v eric5. {3 ?} {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished">Aktualizace <b>{0}</b> eric5 je připravena na <b>{1}</b>. Chcete ji stáhnout a nainstalovat? {0}?} {6 ?} {1}?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric5 je aktuální {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>You are using the latest version of eric6</source> <translation type="unfinished">Používáte poslední verzi eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">eric5 nebyl ještě nakonfigurován. Bude spuštěn konfigurační dialog. {6 ?}</translation> </message> @@ -77704,87 +77699,87 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3651"/> + <location filename="../UI/UserInterface.py" line="3626"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3723"/> + <location filename="../UI/UserInterface.py" line="3698"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6624"/> + <location filename="../UI/UserInterface.py" line="6565"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>&Hex Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2083"/> + <location filename="../UI/UserInterface.py" line="2057"/> <source>Start the eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2085"/> + <location filename="../UI/UserInterface.py" line="2059"/> <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327"/> + <location filename="../UI/UserInterface.py" line="2301"/> <source>Clear private data</source> <translation type="unfinished">Smazat soukromá data</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2303"/> <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1376"/> + <location filename="../UI/UserInterface.py" line="1350"/> <source>Save session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1381"/> + <location filename="../UI/UserInterface.py" line="1355"/> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>Load session</source> <translation type="unfinished">Načíst relaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1389"/> + <location filename="../UI/UserInterface.py" line="1363"/> <source>Load session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1394"/> + <location filename="../UI/UserInterface.py" line="1368"/> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -77799,102 +77794,102 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6690"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="953"/> + <location filename="../UI/UserInterface.py" line="938"/> <source>Code Documentation Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2485"/> + <location filename="../UI/UserInterface.py" line="2459"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2500"/> + <location filename="../UI/UserInterface.py" line="2474"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2517"/> + <location filename="../UI/UserInterface.py" line="2491"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2624"/> + <location filename="../UI/UserInterface.py" line="2598"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide&2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2643"/> + <location filename="../UI/UserInterface.py" line="2617"/> <source>Open PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2645"/> + <location filename="../UI/UserInterface.py" line="2619"/> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2409"/> <source>Virtualenv Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2403"/> <source>&Virtualenv Manager...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2437"/> + <location filename="../UI/UserInterface.py" line="2411"/> <source><b>Virtualenv Manager</b><p>This opens a dialog to manage the defined Python virtual environments.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2426"/> <source>Virtualenv Configurator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Virtualenv &Configurator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2454"/> + <location filename="../UI/UserInterface.py" line="2428"/> <source><b>Virtualenv Configurator</b><p>This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_de.ts Sun Jul 08 17:33:25 2018 +0200 +++ b/i18n/eric6_de.ts Sun Jul 08 18:55:21 2018 +0200 @@ -5582,621 +5582,621 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1827"/> + <location filename="../Debugger/DebugUI.py" line="1825"/> <source>Run Script</source> <translation>Skript ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="178"/> + <location filename="../Debugger/DebugUI.py" line="176"/> <source>&Run Script...</source> <translation>&Skript ausführen …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="183"/> + <location filename="../Debugger/DebugUI.py" line="181"/> <source>Run the current Script</source> <translation>Das aktuelle Skript ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>Run Project</source> <translation>Projekt ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="193"/> + <location filename="../Debugger/DebugUI.py" line="191"/> <source>Run &Project...</source> <translation>Projekt &ausführen …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="198"/> + <location filename="../Debugger/DebugUI.py" line="196"/> <source>Run the current Project</source> <translation>Das aktuelle Projekt ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>Continue</source> <translation>Weiter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>&Continue</source> <translation>&Weiter</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="338"/> + <source>Continue running the program from the current line</source> + <translation>Führe das laufende Programm ab der aktuellen Zeile weiter aus</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="340"/> - <source>Continue running the program from the current line</source> - <translation>Führe das laufende Programm ab der aktuellen Zeile weiter aus</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="342"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Weiter</b><p>Führe das laufende Programm ab der aktuellen Zeile weiter aus. Das Programm wird angehalten, wenn es das Ende oder einen Haltepunkt erreicht.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Single Step</source> <translation>Einzelschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="392"/> + <location filename="../Debugger/DebugUI.py" line="390"/> <source>Execute a single Python statement</source> <translation>Führe eine einzelne Python-Anweisung aus</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="393"/> + <location filename="../Debugger/DebugUI.py" line="391"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>Einzelschritt</b><p>Führe eine einzelne Python-Anweisung aus. Ist die Anweisung eine <tt>import</tt>-Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle bei der nächsten Anweisung an den Debugger zurückgegeben.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step Over</source> <translation>Prozedurschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step &Over</source> <translation>&Prozedurschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="408"/> + <location filename="../Debugger/DebugUI.py" line="406"/> <source>Execute a single Python statement staying in the current frame</source> <translation>Führe eine einzelne Python-Anweisung aus, bleibe aber in der aktuellen Ebene</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="411"/> + <location filename="../Debugger/DebugUI.py" line="409"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation><b>Prozedurschritt</b><p>Führe eine einzelne Python-Anweisung aus, bleibe jedoch in der aktuellen Ebene. Ist die Anweisung eine <tt>import</tt>-Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle nach Beendigung der Anweisung an den Debugger zurückgegeben.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Out</source> <translation>Rückschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Ou&t</source> <translation>&Rückschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="427"/> + <location filename="../Debugger/DebugUI.py" line="425"/> <source>Execute Python statements until leaving the current frame</source> <translation>Führe Python-Anweisung bis zum Rücksprung aus</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="430"/> + <location filename="../Debugger/DebugUI.py" line="428"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation><b>Rücksprung</b><p>Führe Python-Anweisungen bis zum Rücksprung aus. Sind die Anweisungen innerhalb einer <tt>import</tt>-Anweisung, eines Klassenkonstruktors oder einer Methode oder Funktionsaufrufes, so wird die Kontrolle nach dem Rücksprung an den Debugger zurückgegeben.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>Stop</source> <translation>Anhalten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="446"/> + <location filename="../Debugger/DebugUI.py" line="444"/> <source>Stop debugging</source> <translation>Beende das Debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="447"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Anhalten</b><p>Beende das Debuggen des laufenden Programms.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1100"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Das untersuchte Programm enthält einen unspezifizierten Syntaxfehler.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1137"/> + <location filename="../Debugger/DebugUI.py" line="1135"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Eine nicht abgefangene Ausnahme ist aufgetreten. Details finden Sie im Shell-Fenster.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1262"/> + <location filename="../Debugger/DebugUI.py" line="1260"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Das untersuchte Programm wurde unerwartet beendet.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>Debug Project</source> <translation>Projekt debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>Das aktuelle Projekt besitzt kein Hauptskript. Debuggen ist nicht möglich.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Sin&gle Step</source> <translation>&Einzelschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>&Stop</source> <translation>An&halten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="306"/> <source>Restart the last debugged script</source> <translation>Das zuletzt untersuchte Skript neu starten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>&Exceptions Filter...</source> <translation>&Ausnahmenfilter …</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="472"/> + <source>Configure exceptions filter</source> + <translation>Konfiguriert den Ausnahmenfilter</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="474"/> - <source>Configure exceptions filter</source> - <translation>Konfiguriert den Ausnahmenfilter</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="476"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>Ausnahmen Filter</b><p>Konfiguriert den Ausnahmenfilter. Nur Ausnahmen, deren Typ aufgelistet sind, werden während einer Debug-Sitzung angezeigt.</p><p>Bitte beachten Sie, dass alle nicht abgefangenen Ausnahmen unabhängig von der Liste angezeigt werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="184"/> + <location filename="../Debugger/DebugUI.py" line="182"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Skript ausführen</b><p>Bestimme die Kommandozeilenparameter und führe das Skript außerhalb des Debuggers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1962"/> + <location filename="../Debugger/DebugUI.py" line="1960"/> <source>Debug Script</source> <translation>Skript debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="271"/> + <location filename="../Debugger/DebugUI.py" line="269"/> <source>&Debug Script...</source> <translation>Skript &debuggen …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="276"/> + <location filename="../Debugger/DebugUI.py" line="274"/> <source>Debug the current Script</source> <translation>Das aktuelle Skript debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="277"/> + <location filename="../Debugger/DebugUI.py" line="275"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Skript debuggen</b><p>Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des aktuellen Editors als aktuelle Zeile. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="287"/> + <location filename="../Debugger/DebugUI.py" line="285"/> <source>Debug &Project...</source> <translation>&Projekt debuggen…</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="290"/> + <source>Debug the current Project</source> + <translation>Das aktuelle Projekt debuggen</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="292"/> - <source>Debug the current Project</source> - <translation>Das aktuelle Projekt debuggen</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="294"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Projekt debuggen</b><p>Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des Hauptskriptes des aktuellen Projektes als aktuelle Zeile. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <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="../Debugger/DebugUI.py" line="199"/> + <location filename="../Debugger/DebugUI.py" line="197"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Projekt ausführen</b><p>Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes außerhalb des Debuggers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script</source> <translation>Abdeckungslauf des Skriptes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script...</source> <translation>Abdeckungslauf des Skriptes …</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="212"/> + <source>Perform a coverage run of the current Script</source> + <translation>Führe einen Abdeckungslauf des aktuellen Skriptes durch</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="214"/> - <source>Perform a coverage run of the current Script</source> - <translation>Führe einen Abdeckungslauf des aktuellen Skriptes durch</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="216"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Abdeckungslauf des Skriptes</b><p>Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle eines Abdeckungsanalysetools aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project</source> <translation>Abdeckungslauf des Projektes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project...</source> <translation>Abdeckungslauf des Projektes …</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="228"/> + <source>Perform a coverage run of the current Project</source> + <translation>Führe einen Abdeckungslauf des aktuellen Projektes durch</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="230"/> - <source>Perform a coverage run of the current Project</source> - <translation>Führe einen Abdeckungslauf des aktuellen Projektes durch</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="232"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Abdeckungslauf des Projektes</b><p>Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle eines Abdeckungsanalysetools aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1576"/> + <location filename="../Debugger/DebugUI.py" line="1574"/> <source>Coverage of Project</source> <translation>Abdeckung des Projektes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1563"/> + <location filename="../Debugger/DebugUI.py" line="1561"/> <source>Coverage of Script</source> <translation>Abdeckung des Skriptes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script</source> <translation>Skriptprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script...</source> <translation>Skriptprofil …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="246"/> + <location filename="../Debugger/DebugUI.py" line="244"/> <source>Profile the current Script</source> <translation>Profil des aktuellen Skriptes erstellen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="247"/> + <location filename="../Debugger/DebugUI.py" line="245"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Skriptprofil</b><p>Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle des Python-Profilers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project</source> <translation>Projektprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project...</source> <translation>Projektprofil …</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="258"/> + <source>Profile the current Project</source> + <translation>Profil des aktuellen Projektes erstellen</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="260"/> - <source>Profile the current Project</source> - <translation>Profil des aktuellen Projektes erstellen</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="262"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Projektprofil</b><p>Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle des Python-Profilers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1708"/> + <location filename="../Debugger/DebugUI.py" line="1706"/> <source>Profile of Project</source> <translation>Projektprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1695"/> + <location filename="../Debugger/DebugUI.py" line="1693"/> <source>Profile of Script</source> <translation>Skriptprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>Exceptions Filter</source> <translation>Ausnahmen Filter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="512"/> + <location filename="../Debugger/DebugUI.py" line="510"/> <source>Toggle Breakpoint</source> <translation>Haltepunkt setzen/löschen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="513"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Haltepunkt setzen/löschen</b><p>Setzt/löscht einen Haltepunkt in der aktuellen Zeile des aktuellen Editors.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="543"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Next Breakpoint</source> <translation>Nächster Haltepunkt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="542"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>Nächster Haltepunkt</b><p>Gehe zum nächsten Haltepunkt des aktuellen Editors.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="558"/> + <location filename="../Debugger/DebugUI.py" line="556"/> <source>Previous Breakpoint</source> <translation>Vorheriger Haltepunkt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="557"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>Vorheriger Haltepunkt</b><p>Gehe zum vorherigen Haltepunkt des aktuellen Editors.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="572"/> + <location filename="../Debugger/DebugUI.py" line="570"/> <source>Clear Breakpoints</source> <translation>Haltepunkte löschen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="573"/> + <location filename="../Debugger/DebugUI.py" line="571"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation><b>Haltepunkte löschen</b><p>Haltepunkte aller Editoren löschen.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="603"/> + <location filename="../Debugger/DebugUI.py" line="601"/> <source>&Breakpoints</source> <translation>&Haltepunkte</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="527"/> + <location filename="../Debugger/DebugUI.py" line="525"/> <source>Edit Breakpoint</source> <translation>Haltepunkt bearbeiten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="528"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>Haltepunkt bearbeiten</b><p>Öffnet einen Dialog zum Bearbeiten der Haltepunkteigenschaften. Es wird mit der aktuellen Zeile des aktuellen Editors gearbeitet.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue to Cursor</source> <translation>Weiter bis Einfügemarke</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue &To Cursor</source> <translation>Weiter bis Einfüge&marke</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="356"/> + <location filename="../Debugger/DebugUI.py" line="354"/> <source>Continue running the program from the current line to the current cursor position</source> <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="359"/> + <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>Weiter bis Einfügemarke</b><p>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Variables Type Filter</source> <translation>Variablentypenfilter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Varia&bles Type Filter...</source> <translation>&Variablentypenfilter …</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="456"/> + <source>Configure variables type filter</source> + <translation>Konfiguriert die Variablentypenfilter</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="458"/> - <source>Configure variables type filter</source> - <translation>Konfiguriert die Variablentypenfilter</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="460"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation><b>Variablenfilter</b><p>Konfigurieren der Variablenfilter. Nur Variablen mit einem Typ, der nicht ausgewählt ist, werden im globalen oder lokalen Variablenfenster während einer Debuggingsitzung angezeigt.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1199"/> + <location filename="../Debugger/DebugUI.py" line="1197"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>Das untersuchte Programm erzeugte die Ausnahme <b>{0}</b><br>„<b>{1}</b>“</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source>Breakpoint Condition Error</source> <translation>Fehler in Haltepunktbedingung</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>Die Bedingung des Haltepunktes <b>{0}, {1}</b> enthält einen Syntaxfehler.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation>Ctrl+Shift+PgDown</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="549"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation>Ctrl+Shift+PgUp</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="564"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation>Ctrl+Shift+C</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="597"/> + <source>&Debug</source> + <translation>Debu&g</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="599"/> - <source>&Debug</source> - <translation>Debu&g</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="601"/> <source>&Start</source> <translation>&Start</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="646"/> + <location filename="../Debugger/DebugUI.py" line="644"/> <source>Start</source> <translation>Start</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="660"/> + <location filename="../Debugger/DebugUI.py" line="658"/> <source>Debug</source> <translation>Debug</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1184"/> + <location filename="../Debugger/DebugUI.py" line="1182"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation><p>Das untersuchte Programm erzeugte die Ausnahme <b>{0}</b><br>„<b>{1}</b>“<br>Datei: <b>{2}</b>, Zeile: <b>{3}</b></p><p>Anhalten?</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1119"/> + <location filename="../Debugger/DebugUI.py" line="1117"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation><p>Die Datei <b>{0}</b> enthält den Syntaxfehler <b>{1}</b> in Zeile <b>{2}</b>, Position <b>{3}</b>.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="325"/> + <location filename="../Debugger/DebugUI.py" line="323"/> <source>Stop the running script.</source> <translation>Halte das laufende Skript an.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source>Watch Expression Error</source> <translation>Fehler in Beobachtungsausdruck</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>Der Beobachtungsausdrucks <b>{0}</b> enthält einen Syntaxfehler.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1399"/> + <location filename="../Debugger/DebugUI.py" line="1397"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>Ein Beobachtungsausdruck „<b>{0}</b>“ existiert bereits.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1403"/> + <location filename="../Debugger/DebugUI.py" line="1401"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>Ein Beobachtungsausdruck „<b>{0}</b>“ für die Variable <b>{1}</b> existiert bereits.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1409"/> + <location filename="../Debugger/DebugUI.py" line="1407"/> <source>Watch expression already exists</source> <translation>Beobachtungsausdruck existiert bereits</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>Ignored Exceptions</source> <translation>Ignorierte Ausnahmen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>&Ignored Exceptions...</source> <translation>&Ignorierte Ausnahmen …</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="489"/> + <source>Configure ignored exceptions</source> + <translation>Konfiguriert ignorierte Ausnahmen</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="491"/> - <source>Configure ignored exceptions</source> - <translation>Konfiguriert ignorierte Ausnahmen</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="493"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>Ignorierte Ausnahmen</b><p>Konfiguriert die ignorierten Ausnahmen. Nur Ausnahmen, deren Typ nicht aufgelistet sind, werden während einer Debug-Sitzung angezeigt.</p><p>Bitte beachten Sie, dass nicht abgefangenen Ausnahmen nicht ignoriert werden können.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="506"/> + <location filename="../Debugger/DebugUI.py" line="504"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation>Shift+F11</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation>Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Edit Breakpoint...</source> <translation>Haltepunkt bearbeiten …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1069"/> + <location filename="../Debugger/DebugUI.py" line="1067"/> <source>Program terminated</source> <translation>Programm beendet</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="304"/> + <location filename="../Debugger/DebugUI.py" line="302"/> <source>Restart</source> <translation>Neu starten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="310"/> + <location filename="../Debugger/DebugUI.py" line="308"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation><b>Neu starten</b><p>Setzt die Kommandozeilenparameter und setzt die erste ausführbare Python-Zeile des zuletzt untersuchten Skriptes. Falls ungesicherte Änderungen vorliegen, so werden diese zunächst gesichert.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="326"/> + <location filename="../Debugger/DebugUI.py" line="324"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation><b>Anhalten</b><p>Dies hält das Skript, das im Debugger läuft, an.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1248"/> + <location filename="../Debugger/DebugUI.py" line="1246"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation><p>Das Programm erzeugte das Signal "{0}".<br/>Datei: <b>{1}</b>, Zeile: <b>{2}</b></p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> + <location filename="../Debugger/DebugUI.py" line="1034"/> <source><p>Message: {0}</p></source> <translation><p>Nachricht: {0}</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1040"/> <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> <translation><p>Das Programm wurde mit dem Status {0} beendet.</p>{1}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1045"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> <translation><p><b>{0}</b> wurde mit dem Status {1} beendet.</p>{2}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1055"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>Message: {0}</source> <translation>Nachricht: {0}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1060"/> <source>The program has terminated with an exit status of {0}. {1}</source> <translation>Das Programm wurde mit dem Status {0} beendet. {1}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1065"/> + <location filename="../Debugger/DebugUI.py" line="1063"/> <source>"{0}" has terminated with an exit status of {1}. {2}</source> <translation>„{0}“ wurde mit dem Status {1} beendet. {2}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1074"/> + <location filename="../Debugger/DebugUI.py" line="1072"/> <source>The program has terminated with an exit status of {0}. {1} </source> @@ -6205,7 +6205,7 @@ </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1078"/> + <location filename="../Debugger/DebugUI.py" line="1076"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> @@ -6214,22 +6214,22 @@ </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>Move Instruction Pointer to Cursor</source> <translation>Instruktionszeiger zur Cursorposition bewegen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>&Jump To Cursor</source> <translation>Zum Cursor &springen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="372"/> + <location filename="../Debugger/DebugUI.py" line="370"/> <source>Skip the code from the current line to the current cursor position</source> <translation>Überspringe den Programmteil von der aktuellen Zeile bis zur aktuellen Cursorposition</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="375"/> + <location filename="../Debugger/DebugUI.py" line="373"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation><b>Instruktionszeiger zur Cursorposition bewegen</b><p>Bewege den Python Instruktionszeiger zur aktuellen Cursorposition, ohne Programmteile dazwischen auszuführen.</p><p>Es ist nicht möglich, aus einer Funktion herauszuspringen oder in eine Schleife hinein. In diesem Fall wird eine Fehlermeldung im Log-Fenster ausgegeben.</p></translation> </message> @@ -6237,52 +6237,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="../Debugger/DebugViewer.py" line="174"/> + <location filename="../Debugger/DebugViewer.py" line="145"/> <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="178"/> + <location filename="../Debugger/DebugViewer.py" line="149"/> <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="184"/> + <location filename="../Debugger/DebugViewer.py" line="155"/> <source>Set</source> <translation>Setzen</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="159"/> + <location filename="../Debugger/DebugViewer.py" line="130"/> <source>Source</source> <translation>Quelltext</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="261"/> + <location filename="../Debugger/DebugViewer.py" line="226"/> <source>Threads:</source> <translation>Threads:</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation>ID</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation>Status</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="520"/> + <location filename="../Debugger/DebugViewer.py" line="457"/> <source>waiting at breakpoint</source> <translation>am Haltepunkt wartend</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="522"/> + <location filename="../Debugger/DebugViewer.py" line="459"/> <source>running</source> <translation>ausführend</translation> </message> @@ -40010,7 +40010,7 @@ <context> <name>InterfacePage</name> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="226"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="205"/> <source>English</source> <comment>Translate this with your language</comment> <translation>Deutsch</translation> @@ -40191,37 +40191,12 @@ <translation>Wähle den Typ des Layouts.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="463"/> - <source>Shell</source> - <translation>Shell</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="469"/> - <source>Select to get a separate shell window</source> - <translation>Auswählen, um ein separates Shell-Fenster zu erhalten</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="501"/> - <source>separate window</source> - <translation>separates Fenster</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="492"/> - <source>File-Browser</source> - <translation>Dateibrowser</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="498"/> - <source>Select to get a separate file browser window</source> - <translation>Auswählen, um ein separates Dateibrowser-Fenster zu erhalten</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="562"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="490"/> <source>Reset layout to factory defaults</source> <translation>Layout auf Standardwerte zurücksetzen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="244"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="223"/> <source>System</source> <translation>System</translation> </message> @@ -40246,31 +40221,6 @@ <translation>Seitenleisten</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="479"/> - <source>Select to embed the shell in the Debug-Viewer</source> - <translation>Auswählen, um die Shell im Debuganzeiger einzubetten</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="511"/> - <source>embed in Debug-Viewer</source> - <translation>eingebettet im Debuganzeiger</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="508"/> - <source>Select to embed the file browser in the Debug-Viewer</source> - <translation>Auswählen, um den Dateibrowser im Debuganzeiger einzubetten</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="518"/> - <source>Select to embed the file browser in the Project-Viewer</source> - <translation>Auswählen, um den Dateibrowser im Projektanzeiger einzubetten</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="521"/> - <source>embed in Project-Viewer</source> - <translation>eingebettet im Projektanzeiger</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="63"/> <source>Select to sort file contents by occurrence</source> <translation>Auswählen, um den Dateiinhalt nach Vorkommen anzuzeigen</translation> @@ -40281,12 +40231,12 @@ <translation>Inhalt nach Vorkommen sortieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="533"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="461"/> <source>Tabs</source> <translation>Tabs</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="539"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="467"/> <source>Show only one close button instead of one for each tab</source> <translation>Nur einen Schließen-Knopf anzeigen anstelle von einem pro Tab</translation> </message> @@ -51800,42 +51750,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="../Project/ProjectBrowser.py" line="72"/> + <location filename="../Project/ProjectBrowser.py" line="66"/> <source>files added</source> <translation>Dateien hinzugefügt</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="73"/> + <location filename="../Project/ProjectBrowser.py" line="67"/> <source>local modifications</source> <translation>Lokale Änderungen</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="76"/> + <location filename="../Project/ProjectBrowser.py" line="70"/> <source>update required</source> <translation>Abgleich erforderlich</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="77"/> - <source>conflict</source> - <translation>Konflikt</translation> - </message> - <message> <location filename="../Project/ProjectBrowser.py" line="71"/> + <source>conflict</source> + <translation>Konflikt</translation> + </message> + <message> + <location filename="../Project/ProjectBrowser.py" line="65"/> <source>up to date</source> <translation>Aktuell</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="75"/> + <location filename="../Project/ProjectBrowser.py" line="69"/> <source>files replaced</source> <translation>Dateien ersetzt</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="74"/> + <location filename="../Project/ProjectBrowser.py" line="68"/> <source>files removed</source> <translation>Dateien entfernt</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="434"/> + <location filename="../Project/ProjectBrowser.py" line="398"/> <source>unknown status</source> <translation>unbekannter Status</translation> </message> @@ -74204,252 +74154,252 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752"/> + <location filename="../UI/UserInterface.py" line="1726"/> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1753"/> + <location filename="../UI/UserInterface.py" line="1727"/> <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="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>Helpviewer</source> <translation>Hilfe</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>&Helpviewer...</source> <translation>&Hilfe...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1771"/> + <location filename="../UI/UserInterface.py" line="1745"/> <source>Open the helpviewer window</source> <translation>Öffnet das Hilfe-Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2883"/> + <location filename="../UI/UserInterface.py" line="2858"/> <source>Unittest</source> <translation>Modultests</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1845"/> <source>&Unittest...</source> <translation>&Modultests...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1850"/> <source>Start unittest dialog</source> <translation>Starte den Modultest Dialog</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2757"/> + <location filename="../UI/UserInterface.py" line="2731"/> <source>&Window</source> <translation>&Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2807"/> - <source>&Help</source> - <translation>&Hilfe</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1359"/> - <source>Quit</source> - <translation>Beenden</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2139"/> - <source>Preferences</source> - <translation>Einstellungen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2139"/> - <source>&Preferences...</source> - <translation>&Einstellungen...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2144"/> - <source>Set the prefered configuration</source> - <translation>Konfiguriert die Einstellungen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2146"/> - <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="1365"/> - <source>Quit the IDE</source> - <translation>Beenden der Entwicklungsumgebung</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2882"/> - <source>Tools</source> - <translation>Werkzeuge</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4697"/> - <source>Help</source> - <translation>Hilfe</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2782"/> + <source>&Help</source> + <translation>&Hilfe</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1333"/> + <source>Quit</source> + <translation>Beenden</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2113"/> + <source>Preferences</source> + <translation>Einstellungen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2113"/> + <source>&Preferences...</source> + <translation>&Einstellungen...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2118"/> + <source>Set the prefered configuration</source> + <translation>Konfiguriert die Einstellungen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2120"/> + <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="1339"/> + <source>Quit the IDE</source> + <translation>Beenden der Entwicklungsumgebung</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857"/> + <source>Tools</source> + <translation>Werkzeuge</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4638"/> + <source>Help</source> + <translation>Hilfe</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2757"/> <source>&Toolbars</source> <translation>&Werkzeugleisten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>&Quit</source> <translation>B&eenden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1366"/> + <location filename="../UI/UserInterface.py" line="1340"/> <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 debuggt wird, wird beendet und sämtliche Einstellungen werden gespeichert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1325"/> + <location filename="../UI/UserInterface.py" line="1299"/> <source>{0} - Passive Mode</source> <translation>{0} – Passiver Modus</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332"/> + <location filename="../UI/UserInterface.py" line="1306"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} – {1} – Passiver Modus</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Log-Viewer</source> <translation>Ausgabefenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2884"/> + <location filename="../UI/UserInterface.py" line="2859"/> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1793"/> + <location filename="../UI/UserInterface.py" line="1767"/> <source>Show Versions</source> <translation>Zeige Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1793"/> + <location filename="../UI/UserInterface.py" line="1767"/> <source>Show &Versions</source> <translation>Zeige &Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1797"/> + <location filename="../UI/UserInterface.py" line="1771"/> <source>Display version information</source> <translation>Zeigt Versionsinformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1799"/> + <location filename="../UI/UserInterface.py" line="1773"/> <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="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard &Shortcuts...</source> <translation>&Tastaturkurzbefehle...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2249"/> + <location filename="../UI/UserInterface.py" line="2223"/> <source>Set the keyboard shortcuts</source> <translation>Setze die Tastaturkurzbefehle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2225"/> <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="2708"/> + <location filename="../UI/UserInterface.py" line="2682"/> <source>E&xtras</source> <translation>E&xtras</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Report Bug</source> <translation>Fehler berichten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1844"/> + <location filename="../UI/UserInterface.py" line="1818"/> <source>Report &Bug...</source> <translation>&Fehler berichten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848"/> + <location filename="../UI/UserInterface.py" line="1822"/> <source>Report a bug</source> <translation>Einen Fehler berichten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1849"/> + <location filename="../UI/UserInterface.py" line="1823"/> <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="5849"/> + <location filename="../UI/UserInterface.py" line="5790"/> <source>Export Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle exportieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2233"/> <source>&Export Keyboard Shortcuts...</source> <translation>Tastaturkurzbefehle &exportieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2238"/> <source>Export the keyboard shortcuts</source> <translation>Exportiert die Tastaturkurzbefehle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2240"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Import Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle importieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2273"/> + <location filename="../UI/UserInterface.py" line="2247"/> <source>&Import Keyboard Shortcuts...</source> <translation>Tastaturkurzbefehle &importieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2278"/> + <location filename="../UI/UserInterface.py" line="2252"/> <source>Import the keyboard shortcuts</source> <translation>Importiert die Tastaturkurzbefehle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2280"/> + <location filename="../UI/UserInterface.py" line="2254"/> <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> @@ -74489,112 +74439,112 @@ <translation>Initialisiere Werkzeuge...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1877"/> + <location filename="../UI/UserInterface.py" line="1851"/> <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="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>Unittest Restart</source> <translation>Modultest neu starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1890"/> + <location filename="../UI/UserInterface.py" line="1864"/> <source>Restart last unittest</source> <translation>Modultest neu starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1891"/> + <location filename="../UI/UserInterface.py" line="1865"/> <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="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest Script</source> <translation>Modultest (Skript)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920"/> + <location filename="../UI/UserInterface.py" line="1894"/> <source>Run unittest with current script</source> <translation>Modultest für aktuelles Skript ausführen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922"/> + <location filename="../UI/UserInterface.py" line="1896"/> <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="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>Unittest Project</source> <translation>Modultest (Projekt)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1909"/> <source>Run unittest with current project</source> <translation>Modultest für aktuellesProjekt ausführen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1937"/> + <location filename="../UI/UserInterface.py" line="1911"/> <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="2691"/> + <location filename="../UI/UserInterface.py" line="2665"/> <source>&Unittest</source> <translation>&Modultests</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <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="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>&Restart Unittest...</source> <translation>Modultest &neu starten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest &Script...</source> <translation>Modultest (&Skript)...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1930"/> + <location filename="../UI/UserInterface.py" line="1904"/> <source>Unittest &Project...</source> <translation>Modultest (&Projekt)...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2025"/> + <location filename="../UI/UserInterface.py" line="1999"/> <source>Compare Files</source> <translation>Dateien vergleichen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2025"/> + <location filename="../UI/UserInterface.py" line="1999"/> <source>&Compare Files...</source> <translation>Dateien &vergleichen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2043"/> + <location filename="../UI/UserInterface.py" line="2017"/> <source>Compare two files</source> <translation>Zwei Dateien vergleichen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2031"/> + <location filename="../UI/UserInterface.py" line="2005"/> <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="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare Files side by side</source> <translation>Dateien Seite an Seite vergleichen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2044"/> + <location filename="../UI/UserInterface.py" line="2018"/> <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="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source>Drop Error</source> <translation>Drop-Fehler</translation> </message> @@ -74604,317 +74554,317 @@ <translation>Initialisiere Applikationsserver...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1336"/> + <location filename="../UI/UserInterface.py" line="1310"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} . {1} – {2} – Passiver Modus</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>File-Browser</source> <translation>Dateibrowser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1421"/> + <location filename="../UI/UserInterface.py" line="1395"/> <source>Edit Profile</source> <translation>Editieren-Profil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1401"/> <source>Activate the edit view profile</source> <translation>Aktiviert das Editieren-Ansichtsprofil</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1403"/> + <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="1412"/> + <source>Debug Profile</source> + <translation>Debuggen-Profil</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1418"/> + <source>Activate the debug view profile</source> + <translation>Aktiviert das Debuggen-Ansichtsprofil</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1420"/> + <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="2186"/> + <source>View Profiles</source> + <translation>Ansichtenprofile</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2186"/> + <source>&View Profiles...</source> + <translation>&Ansichtenprofile...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <source>Configure view profiles</source> + <translation>Ansichtenprofile konfigurieren</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2193"/> + <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="4764"/> + <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="4492"/> + <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="4559"/> + <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="4610"/> + <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="4953"/> + <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> + <translation><p>Der Werkzeugeeintrag <b>{0}</b> konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{1}</b> verfügbar ist.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6373"/> + <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="1972"/> + <source>UI Previewer</source> + <translation>UI-Vorschau</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1972"/> + <source>&UI Previewer...</source> + <translation>&UI-Vorschau...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1977"/> + <source>Start the UI Previewer</source> + <translation>Starte die UI-Vorschau</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1978"/> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation><b>UI-Vorschau</b><p>Starte die UI-Vorschau.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4720"/> + <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> + <translation><p>Die UI-Vorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1985"/> + <source>Translations Previewer</source> + <translation>Übersetzungsvorschau</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1985"/> + <source>&Translations Previewer...</source> + <translation>&Übersetzungsvorschau...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1990"/> + <source>Start the Translations Previewer</source> + <translation>Die Übersetzungsvorschau starten</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1992"/> + <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="4775"/> + <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="1482"/> + <source>Shell</source> + <translation>Shell</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>&Shell</source> + <translation>&Shell</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2157"/> + <source>Reload APIs</source> + <translation>APIs neu laden</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2157"/> + <source>Reload &APIs</source> + <translation>APIs &neu laden</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2161"/> + <source>Reload the API information</source> + <translation>Die API-Informationen neu laden</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2163"/> + <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="1533"/> + <source>Task-Viewer</source> + <translation>Aufgabenanzeige</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5983"/> + <source>Save tasks</source> + <translation>Aufgaben speichern</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5983"/> + <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="6012"/> + <source>Read tasks</source> + <translation>Aufgaben lesen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6012"/> + <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="4638"/> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation>Momentan ist kein Betrachter angegeben. Bitte benutzen Sie den Einstellungsdialog, um einen festzulegen.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4652"/> + <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="5450"/> + <source>Documentation Missing</source> + <translation>Dokumentation fehlt</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5450"/> + <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="3292"/> + <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> + <translation>E-Mail-Adresse oder Mailserver-Adresse sind leer. Bitte konfiguriere die E-Mail-Einstellungen im Einstellungsdialog.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Template-Viewer</source> + <translation>Vorlagen</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1429"/> - <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="1438"/> - <source>Debug Profile</source> - <translation>Debuggen-Profil</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1444"/> - <source>Activate the debug view profile</source> - <translation>Aktiviert das Debuggen-Ansichtsprofil</translation> + <source>Alt+Shift+P</source> + <translation>Alt+Shift+P</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1464"/> + <source>Alt+Shift+D</source> + <translation>Alt+Shift+D</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>Alt+Shift+S</source> + <translation>Alt+Shift+S</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1498"/> + <source>Alt+Shift+F</source> + <translation>Alt+Shift+F</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>Alt+Shift+T</source> + <translation>Alt+Shift+T</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1446"/> - <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="2212"/> - <source>View Profiles</source> - <translation>Ansichtenprofile</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2212"/> - <source>&View Profiles...</source> - <translation>&Ansichtenprofile...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2217"/> - <source>Configure view profiles</source> - <translation>Ansichtenprofile konfigurieren</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2219"/> - <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="4823"/> - <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="4551"/> - <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="4618"/> - <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="4669"/> - <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="5012"/> - <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> - <translation><p>Der Werkzeugeeintrag <b>{0}</b> konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{1}</b> verfügbar ist.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6432"/> - <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="1998"/> - <source>UI Previewer</source> - <translation>UI-Vorschau</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1998"/> - <source>&UI Previewer...</source> - <translation>&UI-Vorschau...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2003"/> - <source>Start the UI Previewer</source> - <translation>Starte die UI-Vorschau</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2004"/> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation><b>UI-Vorschau</b><p>Starte die UI-Vorschau.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4779"/> - <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> - <translation><p>Die UI-Vorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2011"/> - <source>Translations Previewer</source> - <translation>Übersetzungsvorschau</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2011"/> - <source>&Translations Previewer...</source> - <translation>&Übersetzungsvorschau...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2016"/> - <source>Start the Translations Previewer</source> - <translation>Die Übersetzungsvorschau starten</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2018"/> - <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="4834"/> - <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="1508"/> - <source>Shell</source> - <translation>Shell</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>&Shell</source> - <translation>&Shell</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2183"/> - <source>Reload APIs</source> - <translation>APIs neu laden</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2183"/> - <source>Reload &APIs</source> - <translation>APIs &neu laden</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2187"/> - <source>Reload the API information</source> - <translation>Die API-Informationen neu laden</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2189"/> - <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="1559"/> - <source>Task-Viewer</source> - <translation>Aufgabenanzeige</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6042"/> - <source>Save tasks</source> - <translation>Aufgaben speichern</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6042"/> - <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="6071"/> - <source>Read tasks</source> - <translation>Aufgaben lesen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6071"/> - <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="4697"/> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation>Momentan ist kein Betrachter angegeben. Bitte benutzen Sie den Einstellungsdialog, um einen festzulegen.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4711"/> - <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="5509"/> - <source>Documentation Missing</source> - <translation>Dokumentation fehlt</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="5509"/> - <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="3317"/> - <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> - <translation>E-Mail-Adresse oder Mailserver-Adresse sind leer. Bitte konfiguriere die E-Mail-Einstellungen im Einstellungsdialog.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Template-Viewer</source> - <translation>Vorlagen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>Alt+Shift+P</source> - <translation>Alt+Shift+P</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1490"/> - <source>Alt+Shift+D</source> - <translation>Alt+Shift+D</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>Alt+Shift+S</source> - <translation>Alt+Shift+S</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> - <source>Alt+Shift+F</source> - <translation>Alt+Shift+F</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1559"/> - <source>Alt+Shift+T</source> - <translation>Alt+Shift+T</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Activate current editor</source> <translation>Aktiviere aktuellen Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt4 Documentation</source> <translation>Qt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt&4 Documentation</source> <translation>Qt&4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2484"/> + <location filename="../UI/UserInterface.py" line="2458"/> <source>Open Qt4 Documentation</source> <translation>Öffne die Qt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596"/> + <location filename="../UI/UserInterface.py" line="2570"/> <source>Eric API Documentation</source> <translation>Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596"/> + <location filename="../UI/UserInterface.py" line="2570"/> <source>&Eric API Documentation</source> <translation>&Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600"/> + <location filename="../UI/UserInterface.py" line="2574"/> <source>Open Eric API Documentation</source> <translation>Öffne die Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4731"/> + <location filename="../UI/UserInterface.py" line="4672"/> <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> @@ -74924,157 +74874,157 @@ <translation>Registriere Objekte...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>Project-Viewer</source> <translation>Projektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Debug-Viewer</source> <translation>Debuganzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>&Project-Viewer</source> <translation>&Projektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1809"/> + <location filename="../UI/UserInterface.py" line="1783"/> <source>Check for Updates</source> <translation>Auf Aktualisierungen prüfen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806"/> + <location filename="../UI/UserInterface.py" line="1780"/> <source>Check for &Updates...</source> <translation>Auf &Aktualisierungen prüfen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt4 Documentation</source> <translation>PyQt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2516"/> + <location filename="../UI/UserInterface.py" line="2490"/> <source>Open PyQt4 Documentation</source> <translation>Öffne die PyQt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2724"/> + <location filename="../UI/UserInterface.py" line="2698"/> <source>Select Tool Group</source> <translation>Werkzeuggruppe wählen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2732"/> + <location filename="../UI/UserInterface.py" line="2706"/> <source>Se&ttings</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2886"/> + <location filename="../UI/UserInterface.py" line="2861"/> <source>Profiles</source> <translation>Profile</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3631"/> + <location filename="../UI/UserInterface.py" line="3606"/> <source>&Builtin Tools</source> <translation>&Eingebaute Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4996"/> + <location filename="../UI/UserInterface.py" line="4937"/> <source>Starting process '{0} {1}'. </source> <translation>Starte Prozess „{0} {1}“. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5088"/> + <location filename="../UI/UserInterface.py" line="5029"/> <source>Process '{0}' has exited. </source> <translation>Prozess „{0}“ ist beendet. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source>Documentation</source> <translation>Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5306"/> + <location filename="../UI/UserInterface.py" line="5247"/> <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="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Error during updates check</source> <translation>Fehler während der Aktualisierungsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>Update available</source> <translation>Aktualisierung verfügbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3262"/> + <location filename="../UI/UserInterface.py" line="3237"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Versionsnummern</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6829"/> + <location filename="../UI/UserInterface.py" line="6770"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3676"/> + <location filename="../UI/UserInterface.py" line="3651"/> <source>Configure Tool Groups ...</source> <translation>Konfiguriere Werkzeuggruppen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3680"/> + <location filename="../UI/UserInterface.py" line="3655"/> <source>Configure current Tool Group ...</source> <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2201"/> + <location filename="../UI/UserInterface.py" line="2175"/> <source>Show external tools</source> <translation>Zeige externe Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196"/> + <location filename="../UI/UserInterface.py" line="2170"/> <source>Show external &tools</source> <translation>Zeige externe &Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Could not perform updates check.</source> <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>&Cancel</source> <translation>&Abbrechen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6613"/> + <location filename="../UI/UserInterface.py" line="6554"/> <source>Trying host {0}</source> <translation>Prüfe Host {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>First time usage</source> <translation>Erstmalige Nutzung</translation> </message> @@ -75084,62 +75034,62 @@ <translation>Initialisiere Plugin-Manager...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2793"/> + <location filename="../UI/UserInterface.py" line="2768"/> <source>P&lugins</source> <translation>Plugi&ns</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2887"/> + <location filename="../UI/UserInterface.py" line="2862"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2375"/> + <location filename="../UI/UserInterface.py" line="2349"/> <source>Plugin Infos</source> <translation>Plugininformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2379"/> + <location filename="../UI/UserInterface.py" line="2353"/> <source>Show Plugin Infos</source> <translation>Zeigt Plugininformationen</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2354"/> + <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> + <translation><b>Plugininformationen...</b><p>Dies öffnet einen Dialog, der einige Informationen über die geladenen Plugins anzeigt.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>&Plugin Infos...</source> + <translation>&Plugininformationen...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3623"/> + <source>&Plugin Tools</source> + <translation>&Pluginwerkzeuge</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2380"/> - <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> - <translation><b>Plugininformationen...</b><p>Dies öffnet einen Dialog, der einige Informationen über die geladenen Plugins anzeigt.</p></translation> + <source>Uninstall Plugin</source> + <translation>Plugin deinstallieren</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2375"/> - <source>&Plugin Infos...</source> - <translation>&Plugininformationen...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3648"/> - <source>&Plugin Tools</source> - <translation>&Pluginwerkzeuge</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2406"/> - <source>Uninstall Plugin</source> - <translation>Plugin deinstallieren</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2401"/> <source>&Uninstall Plugin...</source> <translation>Plugin &deinstallieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2407"/> + <location filename="../UI/UserInterface.py" line="2381"/> <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="3796"/> + <location filename="../UI/UserInterface.py" line="3771"/> <source>&Show all</source> <translation>Alle an&zeigen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3798"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>&Hide all</source> <translation>Alle &ausblenden</translation> </message> @@ -75149,97 +75099,97 @@ <translation>Aktiviere Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2713"/> + <location filename="../UI/UserInterface.py" line="2687"/> <source>Wi&zards</source> <translation>&Assistenten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show downloadable versions</source> <translation>Zeige verfügbare Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show &downloadable versions...</source> <translation>&Zeige verfügbare Versionen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1821"/> + <location filename="../UI/UserInterface.py" line="1795"/> <source>Show the versions available for download</source> <translation>Zeige die verfügbaren eric-Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6815"/> + <location filename="../UI/UserInterface.py" line="6756"/> <source><h3>Available versions</h3><table></source> <translation><h3>Verfügbare Versionen</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2414"/> + <location filename="../UI/UserInterface.py" line="2388"/> <source>Plugin Repository</source> <translation>Plugin-Repository</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2414"/> + <location filename="../UI/UserInterface.py" line="2388"/> <source>Plugin &Repository...</source> <translation>Plugin-&Repository...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419"/> - <source>Show Plugins available for download</source> - <translation>Zeige zum Download verfügbare Plugins an</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2421"/> - <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="2393"/> + <source>Show Plugins available for download</source> + <translation>Zeige zum Download verfügbare Plugins an</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2395"/> + <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="2367"/> <source>Install Plugins</source> <translation>Plugins installieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2388"/> + <location filename="../UI/UserInterface.py" line="2362"/> <source>&Install Plugins...</source> <translation>Plugins &installieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2394"/> + <location filename="../UI/UserInterface.py" line="2368"/> <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="2070"/> + <location filename="../UI/UserInterface.py" line="2044"/> <source>Mini Editor</source> <translation>Mini-Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2065"/> + <location filename="../UI/UserInterface.py" line="2039"/> <source>Mini &Editor...</source> <translation>Mini-&Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2071"/> + <location filename="../UI/UserInterface.py" line="2045"/> <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="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Toolbars</source> <translation>Werkzeugleisten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Tool&bars...</source> <translation>Werkzeug&leisten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2234"/> + <location filename="../UI/UserInterface.py" line="2208"/> <source>Configure toolbars</source> <translation>Werkzeugleisten einrichten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235"/> + <location filename="../UI/UserInterface.py" line="2209"/> <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> @@ -75249,397 +75199,397 @@ <translation>Lade Toolbarmanager...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3161"/> + <location filename="../UI/UserInterface.py" line="3136"/> <source>External Tools/{0}</source> <translation>Externe Werkzeuge/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>External Tools</source> <translation>Externe Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4948"/> + <location filename="../UI/UserInterface.py" line="4889"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>No toolgroup entry '{0}' found.</source> <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>Multiproject-Viewer</source> <translation>Mehrfachprojektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>&Multiproject-Viewer</source> <translation>&Mehrfachprojektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6168"/> + <location filename="../UI/UserInterface.py" line="6109"/> <source>Save session</source> <translation>Sitzung speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6105"/> + <location filename="../UI/UserInterface.py" line="6046"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source>Read session</source> <translation>Sitzung lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3058"/> + <location filename="../UI/UserInterface.py" line="3033"/> <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="3072"/> + <location filename="../UI/UserInterface.py" line="3047"/> <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="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request Feature</source> <translation>Neue Funktion anfragen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request &Feature...</source> <translation>Neue &Funktion anfragen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1860"/> + <location filename="../UI/UserInterface.py" line="1834"/> <source>Send a feature request</source> <translation>Sende eine Anfrage für eine neue Funktion</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1862"/> + <location filename="../UI/UserInterface.py" line="1836"/> <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="3051"/> + <location filename="../UI/UserInterface.py" line="3026"/> <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="3079"/> + <location filename="../UI/UserInterface.py" line="3054"/> <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="3086"/> + <location filename="../UI/UserInterface.py" line="3061"/> <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="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>Horizontal Toolbox</source> <translation>Horizontale Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>&Horizontal Toolbox</source> <translation>&Horizontale Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1624"/> + <location filename="../UI/UserInterface.py" line="1598"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1626"/> + <location filename="../UI/UserInterface.py" line="1600"/> <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="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>Restart application</source> <translation>Anwendung neu starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <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="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2802"/> + <location filename="../UI/UserInterface.py" line="2777"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3065"/> + <location filename="../UI/UserInterface.py" line="3040"/> <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="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Switch between tabs</source> <translation>Zwischen Tabs umschalten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>Export Preferences</source> <translation>Einstellungen exportieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>E&xport Preferences...</source> <translation>Einstellungen e&xportieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160"/> + <location filename="../UI/UserInterface.py" line="2134"/> <source>Export the current configuration</source> <translation>Exportiert die aktuelle Konfiguration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2162"/> + <location filename="../UI/UserInterface.py" line="2136"/> <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="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>Import Preferences</source> <translation>Einstellungen importieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>I&mport Preferences...</source> <translation>Einstellungen i&mportieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2174"/> + <location filename="../UI/UserInterface.py" line="2148"/> <source>Import a previously exported configuration</source> <translation>Importiert eine zuvor exportierte Konfiguration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176"/> + <location filename="../UI/UserInterface.py" line="2150"/> <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="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Show next</source> <translation>Zeige nächste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Show previous</source> <translation>Zeige vorherige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>Left Sidebar</source> <translation>Linke Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>&Left Sidebar</source> <translation>&Linke Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1638"/> + <location filename="../UI/UserInterface.py" line="1612"/> <source>Toggle the left sidebar window</source> <translation>Schalte das Fenster der linken Seitenleiste um</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1613"/> + <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="1635"/> + <source>Bottom Sidebar</source> + <translation>Untere Seitenleiste</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>&Bottom Sidebar</source> + <translation>&Untere Seitenleiste</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1639"/> - <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="1661"/> - <source>Bottom Sidebar</source> - <translation>Untere Seitenleiste</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>&Bottom Sidebar</source> - <translation>&Untere Seitenleiste</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1665"/> <source>Toggle the bottom sidebar window</source> <translation>Schalte das Fenster der unteren Seitenleiste um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1667"/> + <location filename="../UI/UserInterface.py" line="1641"/> <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="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>&Debug-Viewer</source> <translation>&Debuganzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL Browser</source> <translation>SQL-Browser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL &Browser...</source> <translation>SQL-&Browser...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2057"/> + <location filename="../UI/UserInterface.py" line="2031"/> <source>Browse a SQL database</source> <translation>Erforsche eine SQL-Datenbank</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2058"/> + <location filename="../UI/UserInterface.py" line="2032"/> <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="4855"/> + <location filename="../UI/UserInterface.py" line="4796"/> <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="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>Icon Editor</source> <translation>Icon-Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>&Icon Editor...</source> <translation>&Icon-Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt 3 support</source> <translation>Qt3-Unterstützung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>PySide Documentation</source> <translation>PySide-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>Py&Side Documentation</source> <translation>Py&Side-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2622"/> + <location filename="../UI/UserInterface.py" line="2596"/> <source>Open PySide Documentation</source> <translation>Öffne die PySide-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="973"/> + <location filename="../UI/UserInterface.py" line="955"/> <source>Cooperation</source> <translation>Zusammenarbeit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1030"/> + <location filename="../UI/UserInterface.py" line="1004"/> <source>Symbols</source> <translation>Symbole</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1038"/> + <location filename="../UI/UserInterface.py" line="1012"/> <source>Numbers</source> <translation>Zahlen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1728"/> + <location filename="../UI/UserInterface.py" line="1702"/> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Tastaturkurzbefehlsdatei (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python 3 Documentation</source> <translation>Python 3-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python &3 Documentation</source> <translation>Python &3-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2532"/> <source>Open Python 3 Documentation</source> <translation>Öffne die Python 3-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python 2 Documentation</source> <translation>Python 2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python &2 Documentation</source> <translation>Python &2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2576"/> + <location filename="../UI/UserInterface.py" line="2550"/> <source>Open Python 2 Documentation</source> <translation>Öffne die Python 2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2552"/> <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 <i>doc</i> unter dem Verzeichnis, in dem der konfigurierte Python 2-Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html/python-docs-html</i>. Um dies zu überschreiben, können Sie die Umgebungsvariable PYTHON2DOCDIR setzen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>Error getting versions information</source> <translation>Fehler beim Herunterladen der Versionsinformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6670"/> + <location filename="../UI/UserInterface.py" line="6611"/> <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="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Open Browser</source> <translation>Browser starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Could not start a web browser</source> <translation>Der Systemwebbrowser konnte nicht gestartet werden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <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> @@ -75664,569 +75614,569 @@ <translation>Starte Debugger...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New Window</source> <translation>Neues Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New &Window</source> <translation>Neues &Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Unittest Rerun Failed</source> <translation>Fehlerhafte Modultests wiederholen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Rerun Failed Tests...</source> <translation>Fehlerhafte Tests wiederholen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1904"/> + <location filename="../UI/UserInterface.py" line="1878"/> <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="1906"/> + <location filename="../UI/UserInterface.py" line="1880"/> <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="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare &Files side by side...</source> <translation>Dateien &Seite an Seite vergleichen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>Snapshot</source> <translation>Bildschirmfoto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>&Snapshot...</source> <translation>&Bildschirmfoto...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2129"/> + <location filename="../UI/UserInterface.py" line="2103"/> <source>Take snapshots of a screen region</source> <translation>Bildschirmfoto aufnehmen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2131"/> + <location filename="../UI/UserInterface.py" line="2105"/> <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="4925"/> + <location filename="../UI/UserInterface.py" line="4866"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Bildschirmfotoanwendung konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6885"/> + <location filename="../UI/UserInterface.py" line="6826"/> <source>Select Workspace Directory</source> <translation>Wähle Arbeitsverzeichnis</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1595"/> + <location filename="../UI/UserInterface.py" line="1569"/> <source>Left Toolbox</source> <translation>Linke Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1607"/> + <location filename="../UI/UserInterface.py" line="1581"/> <source>Right Toolbox</source> <translation>Rechte Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1461"/> + <location filename="../UI/UserInterface.py" line="1435"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Projektanzeigerfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1463"/> + <location filename="../UI/UserInterface.py" line="1437"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation><b>Projektanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Projektanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1478"/> + <location filename="../UI/UserInterface.py" line="1452"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1454"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation><b>Mehrfachprojektanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1470"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Debuganzeigefenster um.</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1472"/> + <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> + <translation><b>Debuganzeige aktivieren</b><p>Dies schaltet den Eingabefokus auf das Debuganzeigefenster um.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1488"/> + <source>Switch the input focus to the Shell window.</source> + <translation>Schalte den Eingabefokus auf das Shell-Fenster um.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1490"/> + <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> + <translation><b>Shell aktivieren</b><p>Dies schaltet den Eingabefokus auf das Shell-Fenster um.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1498"/> - <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> - <translation><b>Debuganzeige aktivieren</b><p>Dies schaltet den Eingabefokus auf das Debuganzeigefenster um.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1514"/> - <source>Switch the input focus to the Shell window.</source> - <translation>Schalte den Eingabefokus auf das Shell-Fenster um.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1516"/> - <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> - <translation><b>Shell aktivieren</b><p>Dies schaltet den Eingabefokus auf das Shell-Fenster um.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> <source>&File-Browser</source> <translation>Datei&browser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1530"/> + <location filename="../UI/UserInterface.py" line="1504"/> <source>Switch the input focus to the File-Browser window.</source> <translation>Schalte den Eingabefokus auf das Dateibrowserfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1532"/> + <location filename="../UI/UserInterface.py" line="1506"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation><b>Dateibrowser aktivieren</b><p>Dies schaltet den Eingabefokus auf das Dateibrowserfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Lo&g-Viewer</source> <translation>&Ausgabefenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1547"/> + <location filename="../UI/UserInterface.py" line="1521"/> <source>Switch the input focus to the Log-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Ausgabefenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1523"/> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation><b>Ausgabefenster aktivieren</b><p>Dies schaltet den Eingabefokus auf das Ausgabefenster um.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>&Task-Viewer</source> + <translation>&Aufgabenanzeige</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1539"/> + <source>Switch the input focus to the Task-Viewer window.</source> + <translation>Schalte den Eingabefokus auf das Aufgabenanzeigefenster um.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Templ&ate-Viewer</source> + <translation>&Vorlagen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1557"/> + <source>Switch the input focus to the Template-Viewer window.</source> + <translation>Schalte den Eingabefokus auf das Vorlagenfenster um.</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1559"/> - <source>&Task-Viewer</source> - <translation>&Aufgabenanzeige</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1565"/> - <source>Switch the input focus to the Task-Viewer window.</source> - <translation>Schalte den Eingabefokus auf das Aufgabenanzeigefenster um.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Templ&ate-Viewer</source> - <translation>&Vorlagen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1583"/> - <source>Switch the input focus to the Template-Viewer window.</source> - <translation>Schalte den Eingabefokus auf das Vorlagenfenster um.</translation> + <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> + <translation><b>Vorlagen aktivieren</b><p>Dies schaltet den Eingabefokus auf das Vorlagenfenster um.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1569"/> + <source>&Left Toolbox</source> + <translation>&Linke Werkzeugbox</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1572"/> + <source>Toggle the Left Toolbox window</source> + <translation>Schalte das Fenster der linken Werkzeugbox um</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> + <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> + <translation><b>Schalte das Fenster der linken Werkzeugbox um</b><p>Falls das Fenster der linken Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1581"/> + <source>&Right Toolbox</source> + <translation>&Rechte Werkzeugbox</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1585"/> - <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> - <translation><b>Vorlagen aktivieren</b><p>Dies schaltet den Eingabefokus auf das Vorlagenfenster um.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1595"/> - <source>&Left Toolbox</source> - <translation>&Linke Werkzeugbox</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1598"/> - <source>Toggle the Left Toolbox window</source> - <translation>Schalte das Fenster der linken Werkzeugbox um</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1599"/> - <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> - <translation><b>Schalte das Fenster der linken Werkzeugbox um</b><p>Falls das Fenster der linken Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1607"/> - <source>&Right Toolbox</source> - <translation>&Rechte Werkzeugbox</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1611"/> <source>Toggle the Right Toolbox window</source> <translation>Schalte das Fenster der rechten Werkzeugbox um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1612"/> + <location filename="../UI/UserInterface.py" line="1586"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der rechten Werkzeugbox um</b><p>Falls das Fenster der rechten Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>Right Sidebar</source> <translation>Rechte Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>&Right Sidebar</source> <translation>&Rechte Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1651"/> + <location filename="../UI/UserInterface.py" line="1625"/> <source>Toggle the right sidebar window</source> <translation>Schalte das Fenster der rechten Seitenleiste um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1653"/> + <location filename="../UI/UserInterface.py" line="1627"/> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der rechten Seitenleiste um</b><p>Falls das Fenster der rechten Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Cooperation-Viewer</source> <translation>Zusammenarbeit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Co&operation-Viewer</source> <translation>&Zusammenarbeit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1681"/> + <location filename="../UI/UserInterface.py" line="1655"/> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Fenster zur Zusammenarbeit um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1683"/> + <location filename="../UI/UserInterface.py" line="1657"/> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation><b>Zusammenarbeitsfenster aktivieren</b><p>Dies schaltet den Eingabefokus auf das Fenster zur Zusammenarbeit um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Symbols-Viewer</source> <translation>Symbolanzeiger</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>S&ymbols-Viewer</source> + <translation>S&ymbolanzeiger</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1690"/> + <source>Switch the input focus to the Symbols-Viewer window.</source> + <translation>Schalte den Eingabefokus auf das Symbolanzeigerfenster um.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1692"/> + <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> + <translation><b>Symbolanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Symbolanzeigerfenster um.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Numbers-Viewer</source> + <translation>Zahlenanzeiger</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Num&bers-Viewer</source> + <translation>Za&hlenanzeiger</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1708"/> + <source>Switch the input focus to the Numbers-Viewer window.</source> + <translation>Schalte den Eingabefokus auf das Zahlenanzeigerfenster um.</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1710"/> - <source>S&ymbols-Viewer</source> - <translation>S&ymbolanzeiger</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1716"/> - <source>Switch the input focus to the Symbols-Viewer window.</source> - <translation>Schalte den Eingabefokus auf das Symbolanzeigerfenster um.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1718"/> - <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> - <translation><b>Symbolanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Symbolanzeigerfenster um.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Numbers-Viewer</source> - <translation>Zahlenanzeiger</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Num&bers-Viewer</source> - <translation>Za&hlenanzeiger</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1734"/> - <source>Switch the input focus to the Numbers-Viewer window.</source> - <translation>Schalte den Eingabefokus auf das Zahlenanzeigerfenster um.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1736"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation><b>Zahlenanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Zahlenanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2762"/> + <location filename="../UI/UserInterface.py" line="2736"/> <source>&Windows</source> <translation>&Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1567"/> + <location filename="../UI/UserInterface.py" line="1541"/> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation><b>Aufgabenanzeige aktivieren</b><p>Dies schaltet den Eingabefokus auf das Aufgabenanzeigefenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>IRC</source> <translation>IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>&IRC</source> <translation>&IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>Meta+Shift+I</source> <translation>Meta+Shift+I</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1699"/> + <location filename="../UI/UserInterface.py" line="1673"/> <source>Switch the input focus to the IRC window.</source> <translation>Schalte den Eingabefokus auf das IRC-Fenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1701"/> + <location filename="../UI/UserInterface.py" line="1675"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation><b>IRC aktivieren</b><p>Dies schaltet den Eingabefokus auf das IRC-Fenster um.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-Designer</source> + <translation>Qt Designer</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-&Designer...</source> + <translation>Qt &Designer...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1936"/> + <source>Start Qt-Designer</source> + <translation>Starte Qt Designer</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1937"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation><b>Qt Designer</b><p>Starte Qt Designer.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-Designer</source> - <translation>Qt Designer</translation> + <source>Qt-Linguist</source> + <translation>Qt Linguist</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-&Designer...</source> - <translation>Qt &Designer...</translation> + <source>Qt-&Linguist...</source> + <translation>Qt &Linguist...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1962"/> - <source>Start Qt-Designer</source> - <translation>Starte Qt Designer</translation> + <source>Start Qt-Linguist</source> + <translation>Starte Qt Linguist</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1963"/> - <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> - <translation><b>Qt Designer</b><p>Starte Qt Designer.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-Linguist</source> - <translation>Qt Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-&Linguist...</source> - <translation>Qt &Linguist...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1988"/> - <source>Start Qt-Linguist</source> - <translation>Starte Qt Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1989"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation><b>Qt Linguist</b><p>Starte Qt Linguist (Übersetzungsprogramm).</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt5 Documentation</source> <translation>Qt5 Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt&5 Documentation</source> <translation>Qt&5 Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2499"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open Qt5 Documentation</source> <translation>Öffne die Qt5 Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3097"/> + <location filename="../UI/UserInterface.py" line="3072"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation><p>Dieser Teil der Statusleiste ermöglicht das Zoomen des aktuellen Editors, der Shell oder des Terminals.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates</source> <translation>SSL-Zertifikate verwalten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates...</source> <translation>SSL-Zertifikate verwalten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293"/> + <location filename="../UI/UserInterface.py" line="2267"/> <source>Manage the saved SSL certificates</source> <translation>Verwalten der gespeicherten SSL-Zertifikate</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295"/> + <location filename="../UI/UserInterface.py" line="2269"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation><b>SSL-Zertifikate verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter SSL-Zertifikate.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters</source> <translation>Meldungsfilter bearbeiten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters...</source> <translation>Meldungsfilter bearbeiten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2283"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation>Bearbeite die Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311"/> + <location filename="../UI/UserInterface.py" line="2285"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation><b>Meldungsfilter bearbeiten</b><p>Dies öffnet einen Dialog zur Bearbeitung der Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt&4 Documentation</source> <translation>PyQt&4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt5 Documentation</source> <translation>PyQt5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt&5 Documentation</source> <translation>PyQt&5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2509"/> <source>Open PyQt5 Documentation</source> <translation>Öffne die PyQt5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5313"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><p>Der PyQt5-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2560"/> + <location filename="../UI/UserInterface.py" line="2534"/> <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 <i>doc</i> unter dem Verzeichnis, in dem der Python 3-Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html</i>. Um dies zu überschreiben, können Sie die Umgebungsvariable PYTHON3DOCDIR setzen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836"/> - <source>Show Error Log</source> - <translation>Zeige Fehlerbericht</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1832"/> - <source>Show Error &Log...</source> - <translation>Zeige Fehler&bericht...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1837"/> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation><b>Zeige Fehlerbericht...</b><p>Dies öffnet einen Dialog zur Anzeige des aktuellsten Fehlerberichtes.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6608"/> - <source>Version Check</source> - <translation>Versionsprüfung</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1408"/> - <source>Open a new eric6 instance</source> - <translation>Öffnet eine neue eric6-Instanz</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1410"/> - <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> - <translation><b>Neues Fenster</b><p>Dies öffnet eine neue Instanz der eric6-IDE.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1773"/> - <source><b>Helpviewer</b><p>Display the eric6 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 eric6-Webbrowser 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="1810"/> + <source>Show Error Log</source> + <translation>Zeige Fehlerbericht</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1806"/> + <source>Show Error &Log...</source> + <translation>Zeige Fehler&bericht...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1811"/> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation><b>Zeige Fehlerbericht...</b><p>Dies öffnet einen Dialog zur Anzeige des aktuellsten Fehlerberichtes.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6549"/> + <source>Version Check</source> + <translation>Versionsprüfung</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1382"/> + <source>Open a new eric6 instance</source> + <translation>Öffnet eine neue eric6-Instanz</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1384"/> + <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> + <translation><b>Neues Fenster</b><p>Dies öffnet eine neue Instanz der eric6-IDE.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1747"/> + <source><b>Helpviewer</b><p>Display the eric6 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 eric6-Webbrowser 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="1784"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> <translation><b>Auf Aktualisierungen prüfen...</b> <p>Dies prüft im Internet auf Updates von eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823"/> + <location filename="../UI/UserInterface.py" line="1797"/> <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> <translation><b>Zeige verfügbare Versionen...</b><p>Zeigt die eric6-Versionen, die vom Internet heruntergeladen werden können.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 Web Browser</source> <translation>eric6-Webbrowser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 &Web Browser...</source> <translation>eric6-&Webbrowser...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2099"/> + <location filename="../UI/UserInterface.py" line="2073"/> <source>Start the eric6 Web Browser</source> <translation>Startet den eric6-Webbrowser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2075"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation><b>eric6-Webbrowser</b><p>Durchforste das Internet mit dem eric6-Webbrowser.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2115"/> + <location filename="../UI/UserInterface.py" line="2089"/> <source>Start the eric6 Icon Editor</source> <translation>Starte den eric6-Icon-Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2117"/> + <location filename="../UI/UserInterface.py" line="2091"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation><b>Icon-Editor</b><p>Startet den eric6-Icon-Editor zum Editieren einfacher Icons.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2203"/> + <location filename="../UI/UserInterface.py" line="2177"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> <translation><b>Zeige externe Werkzeuge</b><p>Öffnet einen Dialog, der die Pfade und Versionen der von eric6 genutzten externen Werkzeuge anzeigt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2602"/> + <location filename="../UI/UserInterface.py" line="2576"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 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 eric6-Installationverzeichnis.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt v.3 wird von eric6 nicht unterstützt.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>Eine Aktualisierung auf <b>{0}</b> von Eric6 ist unter <b>{1}</b> verfügbar. Wollen Sie sie laden?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>Eric6 is up to date</source> <translation>Eric6 ist aktuell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>You are using the latest version of eric6</source> <translation>Sie verwenden die aktuellste Version von eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>eric6 wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation> </message> @@ -76236,87 +76186,87 @@ <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3651"/> + <location filename="../UI/UserInterface.py" line="3626"/> <source>&User Tools</source> <translation>&Benutzerwerkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3723"/> + <location filename="../UI/UserInterface.py" line="3698"/> <source>No User Tools Configured</source> <translation>Keine Benutzerwerkzeuge konfiguriert</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6624"/> + <location filename="../UI/UserInterface.py" line="6565"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>Die Versionsinformationen konnten nicht heruntergeladen werden, da sie <b>nicht verbunden</b> sind. Bitte gehen Sie online und versuchen Sie es erneut.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>Hex Editor</source> <translation>Hex-Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>&Hex Editor...</source> <translation>&Hex Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2083"/> + <location filename="../UI/UserInterface.py" line="2057"/> <source>Start the eric6 Hex Editor</source> <translation>Starte den eric6 Hex-Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2085"/> + <location filename="../UI/UserInterface.py" line="2059"/> <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> <translation><b>Hex-Editor</b><p>Startet den eric6 Hex-Editor zum Ansehen oder Bearbeiten von Binärdateien.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327"/> + <location filename="../UI/UserInterface.py" line="2301"/> <source>Clear private data</source> <translation>Private Daten löschen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2303"/> <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> <translation><b>Private Daten löschen</b><p>Löscht private Daten wie die Listen der zuletzt geöffneten Dateien, Projekte oder Mehrfachprojekte.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1376"/> + <location filename="../UI/UserInterface.py" line="1350"/> <source>Save session...</source> <translation>Sitzung speichern...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1381"/> + <location filename="../UI/UserInterface.py" line="1355"/> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation><b>Sitzung speichern...</b><p>Dies speichert die aktuelle Sitzung in eine Datei. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>Load session</source> <translation>Sitzung laden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1389"/> + <location filename="../UI/UserInterface.py" line="1363"/> <source>Load session...</source> <translation>Sitzung laden...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1394"/> + <location filename="../UI/UserInterface.py" line="1368"/> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation><b>Sitzung laden...</b><p>Dies lädt eine zuvor gesicherte Sitzung. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>eric6 Session Files (*.e5s)</source> <translation>eric6 Sitzungsdateien (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>Crash Session found!</source> <translation>Absturzsitzung gefunden!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Eine Sitzungsdatei einer abgestürzten Sitzung wurde gefunden. Soll diese Sitzung wiederhergestellt werden?</translation> </message> @@ -76331,102 +76281,102 @@ <translation>Initialisiere Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>Update Check</source> <translation>Aktualisierungsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation>Eric wurde direkt von vom Quelltext installiert. Eine Aktualitätsprüfung ist daher nicht möglich.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6690"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation>Sie verwenden ein Snapshot-Release von eri6. Eine neueres, stabiles Release könnte verfügbar sein.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="953"/> + <location filename="../UI/UserInterface.py" line="938"/> <source>Code Documentation Viewer</source> <translation>Dokumentationsanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2485"/> + <location filename="../UI/UserInterface.py" line="2459"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, 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/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2500"/> + <location filename="../UI/UserInterface.py" line="2474"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Qt5-Dokumentation</b><p>Zeige die Qt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2517"/> + <location filename="../UI/UserInterface.py" line="2491"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, 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/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>PyQt5-Dokumentation</b><p>Zeige die PyQt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2624"/> + <location filename="../UI/UserInterface.py" line="2598"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, 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/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide2 Documentation</source> <translation>PySide2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide&2 Documentation</source> <translation>PySide&2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2643"/> + <location filename="../UI/UserInterface.py" line="2617"/> <source>Open PySide2 Documentation</source> <translation>Öffne die PySide2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2645"/> + <location filename="../UI/UserInterface.py" line="2619"/> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>PySide2-Dokumentation</b><p>Zeige die PySide2-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><p>Der PySide{0}-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2409"/> <source>Virtualenv Manager</source> <translation>Virtualenv Manager</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2403"/> <source>&Virtualenv Manager...</source> <translation>&Virtualenv Manager...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2437"/> + <location filename="../UI/UserInterface.py" line="2411"/> <source><b>Virtualenv Manager</b><p>This opens a dialog to manage the defined Python virtual environments.</p></source> <translation><b>Virtualenv Manager</b><p>Dies öffnet einen Dialog zur Verwaltung der definierten virtuellen Python Umgebungen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2426"/> <source>Virtualenv Configurator</source> <translation>Virtualenv Konfigurator</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Virtualenv &Configurator...</source> <translation>Virtualenv &Konfigurator...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2454"/> + <location filename="../UI/UserInterface.py" line="2428"/> <source><b>Virtualenv Configurator</b><p>This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.</p></source> <translation><b>Virtualenv Konfigurator</b><p>Dies öffnet einen Dialog zur Eingabe aller Parameter, die zur Erzeugung einer virtuellen Python Umgebung mittels virtualenv oder pyvenv benötigt werden.</p></translation> </message>
--- a/i18n/eric6_empty.ts Sun Jul 08 17:33:25 2018 +0200 +++ b/i18n/eric6_empty.ts Sun Jul 08 18:55:21 2018 +0200 @@ -5523,648 +5523,648 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1827"/> + <location filename="../Debugger/DebugUI.py" line="1825"/> <source>Run Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="178"/> + <location filename="../Debugger/DebugUI.py" line="176"/> <source>&Run Script...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="183"/> + <location filename="../Debugger/DebugUI.py" line="181"/> <source>Run the current Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="184"/> + <location filename="../Debugger/DebugUI.py" line="182"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>Run Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="193"/> + <location filename="../Debugger/DebugUI.py" line="191"/> <source>Run &Project...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="198"/> + <location filename="../Debugger/DebugUI.py" line="196"/> <source>Run the current Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="199"/> + <location filename="../Debugger/DebugUI.py" line="197"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="212"/> + <source>Perform a coverage run of the current Script</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="214"/> - <source>Perform a coverage run of the current Script</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="216"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="228"/> + <source>Perform a coverage run of the current Project</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="230"/> - <source>Perform a coverage run of the current Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="232"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="246"/> + <location filename="../Debugger/DebugUI.py" line="244"/> <source>Profile the current Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="247"/> + <location filename="../Debugger/DebugUI.py" line="245"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="258"/> + <source>Profile the current Project</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="260"/> - <source>Profile the current Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="262"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1962"/> + <location filename="../Debugger/DebugUI.py" line="1960"/> <source>Debug Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="271"/> + <location filename="../Debugger/DebugUI.py" line="269"/> <source>&Debug Script...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="276"/> + <location filename="../Debugger/DebugUI.py" line="274"/> <source>Debug the current Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="277"/> + <location filename="../Debugger/DebugUI.py" line="275"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>Debug Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="287"/> + <location filename="../Debugger/DebugUI.py" line="285"/> <source>Debug &Project...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="290"/> + <source>Debug the current Project</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="292"/> - <source>Debug the current Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="294"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="304"/> + <location filename="../Debugger/DebugUI.py" line="302"/> <source>Restart</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="306"/> + <source>Restart the last debugged script</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="308"/> - <source>Restart the last debugged script</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="310"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>Stop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="325"/> + <location filename="../Debugger/DebugUI.py" line="323"/> <source>Stop the running script.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="326"/> + <location filename="../Debugger/DebugUI.py" line="324"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>Continue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>&Continue</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="338"/> + <source>Continue running the program from the current line</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="340"/> - <source>Continue running the program from the current line</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="342"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue to Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue &To Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="356"/> + <location filename="../Debugger/DebugUI.py" line="354"/> <source>Continue running the program from the current line to the current cursor position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="359"/> + <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Single Step</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Sin&gle Step</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="392"/> + <location filename="../Debugger/DebugUI.py" line="390"/> <source>Execute a single Python statement</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="393"/> + <location filename="../Debugger/DebugUI.py" line="391"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step Over</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step &Over</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="408"/> + <location filename="../Debugger/DebugUI.py" line="406"/> <source>Execute a single Python statement staying in the current frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="411"/> + <location filename="../Debugger/DebugUI.py" line="409"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Out</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Ou&t</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="427"/> + <location filename="../Debugger/DebugUI.py" line="425"/> <source>Execute Python statements until leaving the current frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="430"/> + <location filename="../Debugger/DebugUI.py" line="428"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>&Stop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="446"/> + <location filename="../Debugger/DebugUI.py" line="444"/> <source>Stop debugging</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="447"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Variables Type Filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Varia&bles Type Filter...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="456"/> + <source>Configure variables type filter</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="458"/> - <source>Configure variables type filter</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="460"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>Exceptions Filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>&Exceptions Filter...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="472"/> + <source>Configure exceptions filter</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="474"/> - <source>Configure exceptions filter</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="476"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>Ignored Exceptions</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>&Ignored Exceptions...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="489"/> + <source>Configure ignored exceptions</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="491"/> - <source>Configure ignored exceptions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="493"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="512"/> + <location filename="../Debugger/DebugUI.py" line="510"/> <source>Toggle Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="506"/> + <location filename="../Debugger/DebugUI.py" line="504"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="513"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="527"/> + <location filename="../Debugger/DebugUI.py" line="525"/> <source>Edit Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Edit Breakpoint...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="528"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="543"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Next Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="542"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="558"/> + <location filename="../Debugger/DebugUI.py" line="556"/> <source>Previous Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="549"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="557"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="572"/> + <location filename="../Debugger/DebugUI.py" line="570"/> <source>Clear Breakpoints</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="564"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="573"/> + <location filename="../Debugger/DebugUI.py" line="571"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="597"/> + <source>&Debug</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="599"/> - <source>&Debug</source> + <source>&Start</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="601"/> - <source>&Start</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="603"/> <source>&Breakpoints</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="646"/> + <location filename="../Debugger/DebugUI.py" line="644"/> <source>Start</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="660"/> + <location filename="../Debugger/DebugUI.py" line="658"/> <source>Debug</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> + <location filename="../Debugger/DebugUI.py" line="1034"/> <source><p>Message: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1040"/> <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1045"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1055"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>Message: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1060"/> <source>The program has terminated with an exit status of {0}. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1065"/> + <location filename="../Debugger/DebugUI.py" line="1063"/> <source>"{0}" has terminated with an exit status of {1}. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1069"/> + <location filename="../Debugger/DebugUI.py" line="1067"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1074"/> + <location filename="../Debugger/DebugUI.py" line="1072"/> <source>The program has terminated with an exit status of {0}. {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1078"/> + <location filename="../Debugger/DebugUI.py" line="1076"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1100"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1119"/> + <location filename="../Debugger/DebugUI.py" line="1117"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1137"/> + <location filename="../Debugger/DebugUI.py" line="1135"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1184"/> + <location filename="../Debugger/DebugUI.py" line="1182"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1199"/> + <location filename="../Debugger/DebugUI.py" line="1197"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1248"/> + <location filename="../Debugger/DebugUI.py" line="1246"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1262"/> + <location filename="../Debugger/DebugUI.py" line="1260"/> <source>The program being debugged has terminated unexpectedly.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source>Breakpoint Condition Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source>Watch Expression Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1399"/> + <location filename="../Debugger/DebugUI.py" line="1397"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1403"/> + <location filename="../Debugger/DebugUI.py" line="1401"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1409"/> + <location filename="../Debugger/DebugUI.py" line="1407"/> <source>Watch expression already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1576"/> + <location filename="../Debugger/DebugUI.py" line="1574"/> <source>Coverage of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1563"/> + <location filename="../Debugger/DebugUI.py" line="1561"/> <source>Coverage of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1708"/> + <location filename="../Debugger/DebugUI.py" line="1706"/> <source>Profile of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1695"/> + <location filename="../Debugger/DebugUI.py" line="1693"/> <source>Profile of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>Move Instruction Pointer to Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>&Jump To Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="372"/> + <location filename="../Debugger/DebugUI.py" line="370"/> <source>Skip the code from the current line to the current cursor position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="375"/> + <location filename="../Debugger/DebugUI.py" line="373"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation type="unfinished"></translation> </message> @@ -6172,52 +6172,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="../Debugger/DebugViewer.py" line="174"/> + <location filename="../Debugger/DebugViewer.py" line="145"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="178"/> + <location filename="../Debugger/DebugViewer.py" line="149"/> <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="184"/> + <location filename="../Debugger/DebugViewer.py" line="155"/> <source>Set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="159"/> + <location filename="../Debugger/DebugViewer.py" line="130"/> <source>Source</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="261"/> + <location filename="../Debugger/DebugViewer.py" line="226"/> <source>Threads:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="520"/> + <location filename="../Debugger/DebugViewer.py" line="457"/> <source>waiting at breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="522"/> + <location filename="../Debugger/DebugViewer.py" line="459"/> <source>running</source> <translation type="unfinished"></translation> </message> @@ -40011,67 +40011,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="463"/> - <source>Shell</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="469"/> - <source>Select to get a separate shell window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="501"/> - <source>separate window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="479"/> - <source>Select to embed the shell in the Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="511"/> - <source>embed in Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="492"/> - <source>File-Browser</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="498"/> - <source>Select to get a separate file browser window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="508"/> - <source>Select to embed the file browser in the Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="518"/> - <source>Select to embed the file browser in the Project-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="521"/> - <source>embed in Project-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="533"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="461"/> <source>Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="539"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="467"/> <source>Show only one close button instead of one for each tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="562"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="490"/> <source>Reset layout to factory defaults</source> <translation type="unfinished"></translation> </message> @@ -40081,12 +40031,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="244"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="223"/> <source>System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="226"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="205"/> <source>English</source> <comment>Translate this with your language</comment> <translation type="unfinished"></translation> @@ -51546,42 +51496,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="../Project/ProjectBrowser.py" line="71"/> + <location filename="../Project/ProjectBrowser.py" line="65"/> <source>up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="72"/> + <location filename="../Project/ProjectBrowser.py" line="66"/> <source>files added</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="73"/> + <location filename="../Project/ProjectBrowser.py" line="67"/> <source>local modifications</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="74"/> + <location filename="../Project/ProjectBrowser.py" line="68"/> <source>files removed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="75"/> + <location filename="../Project/ProjectBrowser.py" line="69"/> <source>files replaced</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="76"/> + <location filename="../Project/ProjectBrowser.py" line="70"/> <source>update required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="77"/> + <location filename="../Project/ProjectBrowser.py" line="71"/> <source>conflict</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="434"/> + <location filename="../Project/ProjectBrowser.py" line="398"/> <source>unknown status</source> <translation type="unfinished"></translation> </message> @@ -73664,2031 +73614,2031 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1595"/> + <location filename="../UI/UserInterface.py" line="1569"/> <source>Left Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>Horizontal Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1607"/> + <location filename="../UI/UserInterface.py" line="1581"/> <source>Right Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>Project-Viewer</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1446"/> + <source>Multiproject-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Template-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1464"/> + <source>Debug-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="955"/> + <source>Cooperation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1667"/> + <source>IRC</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>Task-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1515"/> + <source>Log-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>Shell</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1498"/> + <source>File-Browser</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1004"/> + <source>Symbols</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1012"/> + <source>Numbers</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1299"/> + <source>{0} - Passive Mode</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1306"/> + <source>{0} - {1} - Passive Mode</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1310"/> + <source>{0} - {1} - {2} - Passive Mode</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1333"/> + <source>Quit</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1333"/> + <source>&Quit</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1333"/> + <source>Ctrl+Q</source> + <comment>File|Quit</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1339"/> + <source>Quit the IDE</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1340"/> + <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="1376"/> + <source>New Window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1376"/> + <source>New &Window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1376"/> + <source>Ctrl+Shift+N</source> + <comment>File|New Window</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1382"/> + <source>Open a new eric6 instance</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1384"/> + <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1395"/> + <source>Edit Profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1401"/> + <source>Activate the edit view profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1403"/> + <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="1412"/> + <source>Debug Profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1418"/> + <source>Activate the debug view profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1420"/> + <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="1429"/> + <source>&Project-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1429"/> + <source>Alt+Shift+P</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1435"/> + <source>Switch the input focus to the Project-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1437"/> + <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1446"/> + <source>&Multiproject-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1446"/> + <source>Alt+Shift+M</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1452"/> + <source>Switch the input focus to the Multiproject-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1454"/> + <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1464"/> + <source>&Debug-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1464"/> + <source>Alt+Shift+D</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1470"/> + <source>Switch the input focus to the Debug-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1472"/> - <source>Multiproject-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Template-Viewer</source> + <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>&Shell</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>Alt+Shift+S</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1488"/> + <source>Switch the input focus to the Shell window.</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1490"/> - <source>Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="973"/> - <source>Cooperation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1693"/> - <source>IRC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1559"/> - <source>Task-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1541"/> - <source>Log-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>Shell</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> - <source>File-Browser</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1030"/> - <source>Symbols</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1038"/> - <source>Numbers</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1325"/> - <source>{0} - Passive Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1332"/> - <source>{0} - {1} - Passive Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1336"/> - <source>{0} - {1} - {2} - Passive Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1359"/> - <source>Quit</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1359"/> - <source>&Quit</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1359"/> - <source>Ctrl+Q</source> - <comment>File|Quit</comment> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1365"/> - <source>Quit the IDE</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1366"/> - <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="1402"/> - <source>New Window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1402"/> - <source>New &Window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1402"/> - <source>Ctrl+Shift+N</source> - <comment>File|New Window</comment> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1408"/> - <source>Open a new eric6 instance</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1410"/> - <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1421"/> - <source>Edit Profile</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1427"/> - <source>Activate the edit view profile</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1429"/> - <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="1438"/> - <source>Debug Profile</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1444"/> - <source>Activate the debug view profile</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1446"/> - <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="1455"/> - <source>&Project-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>Alt+Shift+P</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1461"/> - <source>Switch the input focus to the Project-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1463"/> - <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> - <source>&Multiproject-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> - <source>Alt+Shift+M</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1478"/> - <source>Switch the input focus to the Multiproject-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1480"/> - <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1490"/> - <source>&Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1490"/> - <source>Alt+Shift+D</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1496"/> - <source>Switch the input focus to the Debug-Viewer window.</source> + <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1498"/> + <source>&File-Browser</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1498"/> - <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>&Shell</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>Alt+Shift+S</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1514"/> - <source>Switch the input focus to the Shell window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1516"/> - <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> - <source>&File-Browser</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> <source>Alt+Shift+F</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1530"/> + <location filename="../UI/UserInterface.py" line="1504"/> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1532"/> + <location filename="../UI/UserInterface.py" line="1506"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Lo&g-Viewer</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1515"/> + <source>Alt+Shift+G</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1521"/> + <source>Switch the input focus to the Log-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1523"/> + <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>&Task-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>Alt+Shift+T</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1539"/> + <source>Switch the input focus to the Task-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1541"/> - <source>Alt+Shift+G</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1547"/> - <source>Switch the input focus to the Log-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1549"/> - <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1559"/> - <source>&Task-Viewer</source> + <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Templ&ate-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Alt+Shift+A</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1557"/> + <source>Switch the input focus to the Template-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1559"/> - <source>Alt+Shift+T</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1565"/> - <source>Switch the input focus to the Task-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1567"/> - <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Templ&ate-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Alt+Shift+A</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1583"/> - <source>Switch the input focus to the Template-Viewer window.</source> + <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1569"/> + <source>&Left Toolbox</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1572"/> + <source>Toggle the Left Toolbox window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> + <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1581"/> + <source>&Right Toolbox</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1585"/> - <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1595"/> - <source>&Left Toolbox</source> + <source>Toggle the Right Toolbox window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1586"/> + <source><b>Toggle the Right Toolbox window</b><p>If the Right 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="1594"/> + <source>&Horizontal Toolbox</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1598"/> - <source>Toggle the Left Toolbox window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1599"/> - <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1607"/> - <source>&Right Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1611"/> - <source>Toggle the Right Toolbox window</source> + <source>Toggle the Horizontal Toolbox window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1600"/> + <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="1608"/> + <source>Left Sidebar</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1608"/> + <source>&Left Sidebar</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1612"/> - <source><b>Toggle the Right Toolbox window</b><p>If the Right 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="1620"/> - <source>&Horizontal Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1624"/> - <source>Toggle the Horizontal Toolbox window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1626"/> - <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="1634"/> - <source>Left Sidebar</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1634"/> - <source>&Left Sidebar</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1638"/> <source>Toggle the left sidebar window</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1613"/> + <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="1621"/> + <source>Right Sidebar</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1621"/> + <source>&Right Sidebar</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1625"/> + <source>Toggle the right sidebar window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1627"/> + <source><b>Toggle the right sidebar window</b><p>If the right 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="1635"/> + <source>Bottom Sidebar</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>&Bottom Sidebar</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1639"/> - <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="1647"/> - <source>Right Sidebar</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1647"/> - <source>&Right Sidebar</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1651"/> - <source>Toggle the right sidebar window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1653"/> - <source><b>Toggle the right sidebar window</b><p>If the right 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="1661"/> - <source>Bottom Sidebar</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>&Bottom Sidebar</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1665"/> <source>Toggle the bottom sidebar window</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1641"/> + <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="1649"/> + <source>Cooperation-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1649"/> + <source>Co&operation-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1649"/> + <source>Alt+Shift+O</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1655"/> + <source>Switch the input focus to the Cooperation-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1657"/> + <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1667"/> - <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> + <source>&IRC</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1667"/> + <source>Meta+Shift+I</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1673"/> + <source>Switch the input focus to the IRC window.</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1675"/> - <source>Cooperation-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1675"/> - <source>Co&operation-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1675"/> - <source>Alt+Shift+O</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1681"/> - <source>Switch the input focus to the Cooperation-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1683"/> - <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1693"/> - <source>&IRC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1693"/> - <source>Meta+Shift+I</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1699"/> - <source>Switch the input focus to the IRC window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1701"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Symbols-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>S&ymbols-Viewer</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>Alt+Shift+Y</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1690"/> + <source>Switch the input focus to the Symbols-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1692"/> + <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Numbers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Num&bers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Alt+Shift+B</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1708"/> + <source>Switch the input focus to the Numbers-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1710"/> - <source>Alt+Shift+Y</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1716"/> - <source>Switch the input focus to the Symbols-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1718"/> - <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Numbers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Num&bers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Alt+Shift+B</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1734"/> - <source>Switch the input focus to the Numbers-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1736"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>What's This?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>&What's This?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>Shift+F1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752"/> + <location filename="../UI/UserInterface.py" line="1726"/> <source>Context sensitive help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1753"/> + <location filename="../UI/UserInterface.py" line="1727"/> <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="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>Helpviewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>&Helpviewer...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>F1</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1745"/> + <source>Open the helpviewer window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1747"/> + <source><b>Helpviewer</b><p>Display the eric6 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="1767"/> + <source>Show Versions</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show &Versions</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1771"/> - <source>Open the helpviewer window</source> + <source>Display version information</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1773"/> - <source><b>Helpviewer</b><p>Display the eric6 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="1793"/> - <source>Show Versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show &Versions</source> + <source><b>Show Versions</b><p>Display version information.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1783"/> + <source>Check for Updates</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1780"/> + <source>Check for &Updates...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1784"/> + <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1791"/> + <source>Show downloadable versions</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1791"/> + <source>Show &downloadable versions...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1795"/> + <source>Show the versions available for download</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1797"/> - <source>Display version information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1799"/> - <source><b>Show Versions</b><p>Display version information.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1809"/> - <source>Check for Updates</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1806"/> - <source>Check for &Updates...</source> + <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1810"/> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1817"/> - <source>Show downloadable versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1817"/> - <source>Show &downloadable versions...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1821"/> - <source>Show the versions available for download</source> + <source>Show Error Log</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1806"/> + <source>Show Error &Log...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1811"/> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3292"/> + <source>Report Bug</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1818"/> + <source>Report &Bug...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1822"/> + <source>Report a bug</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1823"/> - <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> + <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="1830"/> + <source>Request Feature</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1830"/> + <source>Request &Feature...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1834"/> + <source>Send a feature request</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1836"/> - <source>Show Error Log</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1832"/> - <source>Show Error &Log...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1837"/> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3317"/> - <source>Report Bug</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1844"/> - <source>Report &Bug...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1848"/> - <source>Report a bug</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1849"/> - <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="1856"/> - <source>Request Feature</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1856"/> - <source>Request &Feature...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1860"/> - <source>Send a feature request</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1862"/> <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="2883"/> + <location filename="../UI/UserInterface.py" line="2858"/> <source>Unittest</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1845"/> <source>&Unittest...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1850"/> <source>Start unittest dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1877"/> + <location filename="../UI/UserInterface.py" line="1851"/> <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="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>Unittest Restart</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>&Restart Unittest...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1890"/> + <location filename="../UI/UserInterface.py" line="1864"/> <source>Restart last unittest</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1891"/> + <location filename="../UI/UserInterface.py" line="1865"/> <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="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1878"/> + <source>Rerun failed tests of the last run</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1880"/> + <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="1889"/> + <source>Unittest Script</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1889"/> + <source>Unittest &Script...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1894"/> + <source>Run unittest with current script</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1896"/> + <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="4386"/> + <source>Unittest Project</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1904"/> - <source>Rerun failed tests of the last run</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1906"/> - <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="1915"/> - <source>Unittest Script</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1915"/> - <source>Unittest &Script...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1920"/> - <source>Run unittest with current script</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1922"/> - <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="4445"/> - <source>Unittest Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1930"/> <source>Unittest &Project...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1909"/> <source>Run unittest with current project</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1911"/> + <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="1931"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1936"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1937"/> - <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-Designer</source> + <source>Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-&Designer...</source> + <source>Qt-&Linguist...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1962"/> - <source>Start Qt-Designer</source> + <source>Start Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1963"/> - <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-&Linguist...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1988"/> - <source>Start Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1989"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>UI Previewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>&UI Previewer...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003"/> + <location filename="../UI/UserInterface.py" line="1977"/> <source>Start the UI Previewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004"/> + <location filename="../UI/UserInterface.py" line="1978"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>Translations Previewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>&Translations Previewer...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2016"/> + <location filename="../UI/UserInterface.py" line="1990"/> <source>Start the Translations Previewer</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1992"/> + <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>Compare Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>&Compare Files...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2017"/> + <source>Compare two files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2005"/> + <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="2012"/> + <source>Compare Files side by side</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2012"/> + <source>Compare &Files side by side...</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2018"/> - <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>Compare Files</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>&Compare Files...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2043"/> - <source>Compare two files</source> + <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="2026"/> + <source>SQL Browser</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2026"/> + <source>SQL &Browser...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2031"/> - <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="2038"/> - <source>Compare Files side by side</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2038"/> - <source>Compare &Files side by side...</source> + <source>Browse a SQL database</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2032"/> + <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2044"/> - <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> + <source>Mini Editor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2039"/> + <source>Mini &Editor...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2045"/> + <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="2052"/> - <source>SQL Browser</source> + <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2052"/> - <source>SQL &Browser...</source> + <source>&Hex Editor...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2057"/> - <source>Browse a SQL database</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2058"/> - <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2070"/> - <source>Mini Editor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2065"/> - <source>Mini &Editor...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2071"/> - <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="2078"/> - <source>Hex Editor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2078"/> - <source>&Hex Editor...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2083"/> <source>Start the eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2085"/> + <location filename="../UI/UserInterface.py" line="2059"/> <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 &Web Browser...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2099"/> + <location filename="../UI/UserInterface.py" line="2073"/> <source>Start the eric6 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2075"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>&Icon Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2115"/> + <location filename="../UI/UserInterface.py" line="2089"/> <source>Start the eric6 Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2117"/> + <location filename="../UI/UserInterface.py" line="2091"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>&Snapshot...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2103"/> + <source>Take snapshots of a screen region</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2105"/> + <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="2113"/> + <source>Preferences</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2113"/> + <source>&Preferences...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2118"/> + <source>Set the prefered configuration</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2120"/> + <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="2129"/> - <source>Take snapshots of a screen region</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2131"/> - <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="2139"/> - <source>Preferences</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2139"/> - <source>&Preferences...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2144"/> - <source>Set the prefered configuration</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2146"/> - <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="2155"/> <source>Export Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>E&xport Preferences...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160"/> + <location filename="../UI/UserInterface.py" line="2134"/> <source>Export the current configuration</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2162"/> + <location filename="../UI/UserInterface.py" line="2136"/> <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="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>Import Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>I&mport Preferences...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2174"/> + <location filename="../UI/UserInterface.py" line="2148"/> <source>Import a previously exported configuration</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176"/> + <location filename="../UI/UserInterface.py" line="2150"/> <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="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload &APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2187"/> + <location filename="../UI/UserInterface.py" line="2161"/> <source>Reload the API information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2189"/> + <location filename="../UI/UserInterface.py" line="2163"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2201"/> + <location filename="../UI/UserInterface.py" line="2175"/> <source>Show external tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196"/> + <location filename="../UI/UserInterface.py" line="2170"/> <source>Show external &tools</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2177"/> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2186"/> + <source>View Profiles</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2186"/> + <source>&View Profiles...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <source>Configure view profiles</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2193"/> + <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="2203"/> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2212"/> - <source>View Profiles</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2212"/> - <source>&View Profiles...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2217"/> - <source>Configure view profiles</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2219"/> - <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="2229"/> <source>Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Tool&bars...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2234"/> + <location filename="../UI/UserInterface.py" line="2208"/> <source>Configure toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235"/> + <location filename="../UI/UserInterface.py" line="2209"/> <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="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard &Shortcuts...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2249"/> + <location filename="../UI/UserInterface.py" line="2223"/> <source>Set the keyboard shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2225"/> <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="5849"/> + <location filename="../UI/UserInterface.py" line="5790"/> <source>Export Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2233"/> <source>&Export Keyboard Shortcuts...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2238"/> <source>Export the keyboard shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2240"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Import Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2273"/> + <location filename="../UI/UserInterface.py" line="2247"/> <source>&Import Keyboard Shortcuts...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2252"/> + <source>Import the keyboard shortcuts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2254"/> + <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="2262"/> + <source>Manage SSL Certificates</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2262"/> + <source>Manage SSL Certificates...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2267"/> + <source>Manage the saved SSL certificates</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2269"/> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2278"/> + <source>Edit Message Filters</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2278"/> - <source>Import the keyboard shortcuts</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2280"/> - <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="2288"/> - <source>Manage SSL Certificates</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2288"/> - <source>Manage SSL Certificates...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2293"/> - <source>Manage the saved SSL certificates</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2295"/> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2304"/> - <source>Edit Message Filters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2304"/> <source>Edit Message Filters...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2283"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311"/> + <location filename="../UI/UserInterface.py" line="2285"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327"/> + <location filename="../UI/UserInterface.py" line="2301"/> <source>Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2303"/> <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Activate current editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Alt+Shift+E</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Show next</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Ctrl+Alt+Tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Show previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Shift+Ctrl+Alt+Tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Switch between tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Ctrl+1</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>Plugin Infos</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>&Plugin Infos...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2353"/> + <source>Show Plugin Infos</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2354"/> + <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="2367"/> + <source>Install Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2362"/> + <source>&Install Plugins...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2368"/> + <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="2380"/> + <source>Uninstall Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2375"/> - <source>Plugin Infos</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2375"/> - <source>&Plugin Infos...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2379"/> - <source>Show Plugin Infos</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2380"/> - <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="2393"/> - <source>Install Plugins</source> + <source>&Uninstall Plugin...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2381"/> + <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="2388"/> + <source>Plugin Repository</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2388"/> - <source>&Install Plugins...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2394"/> - <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="2406"/> - <source>Uninstall Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2401"/> - <source>&Uninstall Plugin...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2407"/> - <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="2414"/> - <source>Plugin Repository</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2414"/> <source>Plugin &Repository...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419"/> + <location filename="../UI/UserInterface.py" line="2393"/> <source>Show Plugins available for download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2421"/> + <location filename="../UI/UserInterface.py" line="2395"/> <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="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2484"/> + <location filename="../UI/UserInterface.py" line="2458"/> <source>Open Qt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2499"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open Qt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2516"/> + <location filename="../UI/UserInterface.py" line="2490"/> <source>Open PyQt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2509"/> <source>Open PyQt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2532"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2560"/> + <location filename="../UI/UserInterface.py" line="2534"/> <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="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2550"/> + <source>Open Python 2 Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2552"/> + <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="2570"/> + <source>Eric API Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2570"/> + <source>&Eric API Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2574"/> + <source>Open Eric API Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2576"/> - <source>Open Python 2 Documentation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2578"/> - <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="2596"/> - <source>Eric API Documentation</source> + <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2592"/> + <source>PySide Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2592"/> + <source>Py&Side Documentation</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2596"/> - <source>&Eric API Documentation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2600"/> - <source>Open Eric API Documentation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2602"/> - <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2618"/> - <source>PySide Documentation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2618"/> - <source>Py&Side Documentation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2622"/> <source>Open PySide Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691"/> + <location filename="../UI/UserInterface.py" line="2665"/> <source>&Unittest</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2708"/> + <location filename="../UI/UserInterface.py" line="2682"/> <source>E&xtras</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2713"/> + <location filename="../UI/UserInterface.py" line="2687"/> <source>Wi&zards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2724"/> + <location filename="../UI/UserInterface.py" line="2698"/> <source>Select Tool Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2732"/> + <location filename="../UI/UserInterface.py" line="2706"/> <source>Se&ttings</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2731"/> + <source>&Window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2736"/> + <source>&Windows</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757"/> - <source>&Window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2762"/> - <source>&Windows</source> + <source>&Toolbars</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768"/> + <source>P&lugins</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2777"/> + <source>Configure...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2782"/> - <source>&Toolbars</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2793"/> - <source>P&lugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2802"/> - <source>Configure...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2807"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2882"/> + <location filename="../UI/UserInterface.py" line="2857"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2884"/> + <location filename="../UI/UserInterface.py" line="2859"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2886"/> + <location filename="../UI/UserInterface.py" line="2861"/> <source>Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2887"/> + <location filename="../UI/UserInterface.py" line="2862"/> <source>Plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3051"/> + <location filename="../UI/UserInterface.py" line="3026"/> <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="3058"/> + <location filename="../UI/UserInterface.py" line="3033"/> <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="3065"/> + <location filename="../UI/UserInterface.py" line="3040"/> <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="3047"/> + <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="3054"/> + <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="3061"/> + <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="3072"/> - <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="3079"/> - <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="3086"/> - <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="3097"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3161"/> + <location filename="../UI/UserInterface.py" line="3136"/> <source>External Tools/{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3262"/> + <location filename="../UI/UserInterface.py" line="3237"/> <source><h3>Version Numbers</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6829"/> + <location filename="../UI/UserInterface.py" line="6770"/> <source></table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <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="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>Restart application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>The application needs to be restarted. Do it now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3631"/> + <location filename="../UI/UserInterface.py" line="3606"/> <source>&Builtin Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3648"/> + <location filename="../UI/UserInterface.py" line="3623"/> <source>&Plugin Tools</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="3626"/> + <source>&User Tools</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="3651"/> - <source>&User Tools</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3676"/> <source>Configure Tool Groups ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3680"/> + <location filename="../UI/UserInterface.py" line="3655"/> <source>Configure current Tool Group ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3723"/> + <location filename="../UI/UserInterface.py" line="3698"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3796"/> + <location filename="../UI/UserInterface.py" line="3771"/> <source>&Show all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3798"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>&Hide all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <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="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <source>Problem</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <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="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4551"/> + <location filename="../UI/UserInterface.py" line="4492"/> <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="4618"/> + <location filename="../UI/UserInterface.py" line="4559"/> <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="4669"/> + <location filename="../UI/UserInterface.py" line="4610"/> <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="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <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="4711"/> + <location filename="../UI/UserInterface.py" line="4652"/> <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="4731"/> + <location filename="../UI/UserInterface.py" line="4672"/> <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="4779"/> + <location filename="../UI/UserInterface.py" line="4720"/> <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="4834"/> + <location filename="../UI/UserInterface.py" line="4775"/> <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="4855"/> + <location filename="../UI/UserInterface.py" line="4796"/> <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="4925"/> + <location filename="../UI/UserInterface.py" line="4866"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>External Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4948"/> + <location filename="../UI/UserInterface.py" line="4889"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4996"/> + <location filename="../UI/UserInterface.py" line="4937"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5088"/> + <location filename="../UI/UserInterface.py" line="5029"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <source>Documentation Missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <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="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source>Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5306"/> + <location filename="../UI/UserInterface.py" line="5247"/> <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="5372"/> + <location filename="../UI/UserInterface.py" line="5313"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <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="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <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="6168"/> + <location filename="../UI/UserInterface.py" line="6109"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6105"/> + <location filename="../UI/UserInterface.py" line="6046"/> <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="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source>Read session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <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="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>&Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6608"/> + <location filename="../UI/UserInterface.py" line="6549"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6613"/> + <location filename="../UI/UserInterface.py" line="6554"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6624"/> + <location filename="../UI/UserInterface.py" line="6565"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6670"/> + <location filename="../UI/UserInterface.py" line="6611"/> <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="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <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="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Error during updates check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Could not perform updates check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6815"/> + <location filename="../UI/UserInterface.py" line="6756"/> <source><h3>Available versions</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>First time usage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6885"/> + <location filename="../UI/UserInterface.py" line="6826"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1376"/> + <location filename="../UI/UserInterface.py" line="1350"/> <source>Save session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1381"/> + <location filename="../UI/UserInterface.py" line="1355"/> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>Load session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1389"/> + <location filename="../UI/UserInterface.py" line="1363"/> <source>Load session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1394"/> + <location filename="../UI/UserInterface.py" line="1368"/> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -75703,102 +75653,102 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6690"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="953"/> + <location filename="../UI/UserInterface.py" line="938"/> <source>Code Documentation Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2485"/> + <location filename="../UI/UserInterface.py" line="2459"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2500"/> + <location filename="../UI/UserInterface.py" line="2474"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2517"/> + <location filename="../UI/UserInterface.py" line="2491"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2624"/> + <location filename="../UI/UserInterface.py" line="2598"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide&2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2643"/> + <location filename="../UI/UserInterface.py" line="2617"/> <source>Open PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2645"/> + <location filename="../UI/UserInterface.py" line="2619"/> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2409"/> <source>Virtualenv Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2403"/> <source>&Virtualenv Manager...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2437"/> + <location filename="../UI/UserInterface.py" line="2411"/> <source><b>Virtualenv Manager</b><p>This opens a dialog to manage the defined Python virtual environments.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2426"/> <source>Virtualenv Configurator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Virtualenv &Configurator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2454"/> + <location filename="../UI/UserInterface.py" line="2428"/> <source><b>Virtualenv Configurator</b><p>This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_en.ts Sun Jul 08 17:33:25 2018 +0200 +++ b/i18n/eric6_en.ts Sun Jul 08 18:55:21 2018 +0200 @@ -5530,648 +5530,648 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1827"/> + <location filename="../Debugger/DebugUI.py" line="1825"/> <source>Run Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="178"/> + <location filename="../Debugger/DebugUI.py" line="176"/> <source>&Run Script...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="183"/> + <location filename="../Debugger/DebugUI.py" line="181"/> <source>Run the current Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="184"/> + <location filename="../Debugger/DebugUI.py" line="182"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>Run Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="193"/> + <location filename="../Debugger/DebugUI.py" line="191"/> <source>Run &Project...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="198"/> + <location filename="../Debugger/DebugUI.py" line="196"/> <source>Run the current Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="199"/> + <location filename="../Debugger/DebugUI.py" line="197"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="212"/> + <source>Perform a coverage run of the current Script</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="214"/> - <source>Perform a coverage run of the current Script</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="216"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="228"/> + <source>Perform a coverage run of the current Project</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="230"/> - <source>Perform a coverage run of the current Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="232"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="246"/> + <location filename="../Debugger/DebugUI.py" line="244"/> <source>Profile the current Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="247"/> + <location filename="../Debugger/DebugUI.py" line="245"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="258"/> + <source>Profile the current Project</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="260"/> - <source>Profile the current Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="262"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1962"/> + <location filename="../Debugger/DebugUI.py" line="1960"/> <source>Debug Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="271"/> + <location filename="../Debugger/DebugUI.py" line="269"/> <source>&Debug Script...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="276"/> + <location filename="../Debugger/DebugUI.py" line="274"/> <source>Debug the current Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="277"/> + <location filename="../Debugger/DebugUI.py" line="275"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>Debug Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="287"/> + <location filename="../Debugger/DebugUI.py" line="285"/> <source>Debug &Project...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="290"/> + <source>Debug the current Project</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="292"/> - <source>Debug the current Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="294"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="306"/> <source>Restart the last debugged script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="325"/> + <location filename="../Debugger/DebugUI.py" line="323"/> <source>Stop the running script.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>Continue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>&Continue</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="338"/> + <source>Continue running the program from the current line</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="340"/> - <source>Continue running the program from the current line</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="342"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue to Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue &To Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="356"/> + <location filename="../Debugger/DebugUI.py" line="354"/> <source>Continue running the program from the current line to the current cursor position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="359"/> + <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Single Step</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Sin&gle Step</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="392"/> + <location filename="../Debugger/DebugUI.py" line="390"/> <source>Execute a single Python statement</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="393"/> + <location filename="../Debugger/DebugUI.py" line="391"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step Over</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step &Over</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="408"/> + <location filename="../Debugger/DebugUI.py" line="406"/> <source>Execute a single Python statement staying in the current frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="411"/> + <location filename="../Debugger/DebugUI.py" line="409"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Out</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Ou&t</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="427"/> + <location filename="../Debugger/DebugUI.py" line="425"/> <source>Execute Python statements until leaving the current frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="430"/> + <location filename="../Debugger/DebugUI.py" line="428"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>Stop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>&Stop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="446"/> + <location filename="../Debugger/DebugUI.py" line="444"/> <source>Stop debugging</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="447"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Variables Type Filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Varia&bles Type Filter...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="456"/> + <source>Configure variables type filter</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="458"/> - <source>Configure variables type filter</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="460"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>Exceptions Filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>&Exceptions Filter...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="472"/> + <source>Configure exceptions filter</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="474"/> - <source>Configure exceptions filter</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="476"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>Ignored Exceptions</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>&Ignored Exceptions...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="489"/> + <source>Configure ignored exceptions</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="491"/> - <source>Configure ignored exceptions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="493"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="512"/> + <location filename="../Debugger/DebugUI.py" line="510"/> <source>Toggle Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="506"/> + <location filename="../Debugger/DebugUI.py" line="504"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="513"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="527"/> + <location filename="../Debugger/DebugUI.py" line="525"/> <source>Edit Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Edit Breakpoint...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="528"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="543"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Next Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="542"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="558"/> + <location filename="../Debugger/DebugUI.py" line="556"/> <source>Previous Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="549"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="557"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="572"/> + <location filename="../Debugger/DebugUI.py" line="570"/> <source>Clear Breakpoints</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="564"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="573"/> + <location filename="../Debugger/DebugUI.py" line="571"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="597"/> + <source>&Debug</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="599"/> - <source>&Debug</source> + <source>&Start</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="601"/> - <source>&Start</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="603"/> <source>&Breakpoints</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="646"/> + <location filename="../Debugger/DebugUI.py" line="644"/> <source>Start</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="660"/> + <location filename="../Debugger/DebugUI.py" line="658"/> <source>Debug</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1100"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1119"/> + <location filename="../Debugger/DebugUI.py" line="1117"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1137"/> + <location filename="../Debugger/DebugUI.py" line="1135"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1184"/> + <location filename="../Debugger/DebugUI.py" line="1182"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1199"/> + <location filename="../Debugger/DebugUI.py" line="1197"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1262"/> + <location filename="../Debugger/DebugUI.py" line="1260"/> <source>The program being debugged has terminated unexpectedly.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source>Breakpoint Condition Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source>Watch Expression Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1399"/> + <location filename="../Debugger/DebugUI.py" line="1397"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1403"/> + <location filename="../Debugger/DebugUI.py" line="1401"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1409"/> + <location filename="../Debugger/DebugUI.py" line="1407"/> <source>Watch expression already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1576"/> + <location filename="../Debugger/DebugUI.py" line="1574"/> <source>Coverage of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1563"/> + <location filename="../Debugger/DebugUI.py" line="1561"/> <source>Coverage of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1708"/> + <location filename="../Debugger/DebugUI.py" line="1706"/> <source>Profile of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1695"/> + <location filename="../Debugger/DebugUI.py" line="1693"/> <source>Profile of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1069"/> + <location filename="../Debugger/DebugUI.py" line="1067"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="304"/> + <location filename="../Debugger/DebugUI.py" line="302"/> <source>Restart</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="310"/> + <location filename="../Debugger/DebugUI.py" line="308"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="326"/> + <location filename="../Debugger/DebugUI.py" line="324"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1248"/> + <location filename="../Debugger/DebugUI.py" line="1246"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> + <location filename="../Debugger/DebugUI.py" line="1034"/> <source><p>Message: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1040"/> <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1045"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1055"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>Message: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1060"/> <source>The program has terminated with an exit status of {0}. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1065"/> + <location filename="../Debugger/DebugUI.py" line="1063"/> <source>"{0}" has terminated with an exit status of {1}. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1074"/> + <location filename="../Debugger/DebugUI.py" line="1072"/> <source>The program has terminated with an exit status of {0}. {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1078"/> + <location filename="../Debugger/DebugUI.py" line="1076"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>Move Instruction Pointer to Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>&Jump To Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="372"/> + <location filename="../Debugger/DebugUI.py" line="370"/> <source>Skip the code from the current line to the current cursor position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="375"/> + <location filename="../Debugger/DebugUI.py" line="373"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation type="unfinished"></translation> </message> @@ -6179,52 +6179,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="../Debugger/DebugViewer.py" line="174"/> + <location filename="../Debugger/DebugViewer.py" line="145"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="178"/> + <location filename="../Debugger/DebugViewer.py" line="149"/> <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="184"/> + <location filename="../Debugger/DebugViewer.py" line="155"/> <source>Set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="159"/> + <location filename="../Debugger/DebugViewer.py" line="130"/> <source>Source</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="261"/> + <location filename="../Debugger/DebugViewer.py" line="226"/> <source>Threads:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="520"/> + <location filename="../Debugger/DebugViewer.py" line="457"/> <source>waiting at breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="522"/> + <location filename="../Debugger/DebugViewer.py" line="459"/> <source>running</source> <translation type="unfinished"></translation> </message> @@ -40024,77 +40024,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="463"/> - <source>Shell</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="469"/> - <source>Select to get a separate shell window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="501"/> - <source>separate window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="479"/> - <source>Select to embed the shell in the Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="511"/> - <source>embed in Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="492"/> - <source>File-Browser</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="498"/> - <source>Select to get a separate file browser window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="508"/> - <source>Select to embed the file browser in the Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="518"/> - <source>Select to embed the file browser in the Project-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="521"/> - <source>embed in Project-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="533"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="461"/> <source>Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="539"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="467"/> <source>Show only one close button instead of one for each tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="562"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="490"/> <source>Reset layout to factory defaults</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="244"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="223"/> <source>System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="226"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="205"/> <source>English</source> <comment>Translate this with your language</comment> <translation>English</translation> @@ -51594,42 +51544,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="../Project/ProjectBrowser.py" line="71"/> + <location filename="../Project/ProjectBrowser.py" line="65"/> <source>up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="72"/> + <location filename="../Project/ProjectBrowser.py" line="66"/> <source>files added</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="73"/> + <location filename="../Project/ProjectBrowser.py" line="67"/> <source>local modifications</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="74"/> + <location filename="../Project/ProjectBrowser.py" line="68"/> <source>files removed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="75"/> + <location filename="../Project/ProjectBrowser.py" line="69"/> <source>files replaced</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="76"/> + <location filename="../Project/ProjectBrowser.py" line="70"/> <source>update required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="77"/> + <location filename="../Project/ProjectBrowser.py" line="71"/> <source>conflict</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="434"/> + <location filename="../Project/ProjectBrowser.py" line="398"/> <source>unknown status</source> <translation type="unfinished"></translation> </message> @@ -73689,1380 +73639,1380 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>Project-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>Multiproject-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Debug-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="973"/> + <location filename="../UI/UserInterface.py" line="955"/> <source>Cooperation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1030"/> + <location filename="../UI/UserInterface.py" line="1004"/> <source>Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Log-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Task-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Template-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1038"/> + <location filename="../UI/UserInterface.py" line="1012"/> <source>Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>File-Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Shell</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>Horizontal Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1325"/> + <location filename="../UI/UserInterface.py" line="1299"/> <source>{0} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332"/> + <location filename="../UI/UserInterface.py" line="1306"/> <source>{0} - {1} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1336"/> + <location filename="../UI/UserInterface.py" line="1310"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Quit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>&Quit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1365"/> + <location filename="../UI/UserInterface.py" line="1339"/> <source>Quit the IDE</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1366"/> + <location filename="../UI/UserInterface.py" line="1340"/> <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="1421"/> + <location filename="../UI/UserInterface.py" line="1395"/> <source>Edit Profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1401"/> <source>Activate the edit view profile</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1403"/> + <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="1412"/> + <source>Debug Profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1418"/> + <source>Activate the debug view profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1420"/> + <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="1429"/> - <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="1438"/> - <source>Debug Profile</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1444"/> - <source>Activate the debug view profile</source> + <source>&Project-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1429"/> + <source>Alt+Shift+P</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1446"/> + <source>&Multiproject-Viewer</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1446"/> - <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="1455"/> - <source>&Project-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>Alt+Shift+P</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> - <source>&Multiproject-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> <source>Alt+Shift+M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>&Debug-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Alt+Shift+D</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>&Shell</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Alt+Shift+S</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>Alt+Shift+F</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Alt+Shift+G</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Alt+Shift+T</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Alt+Shift+A</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>&Horizontal Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1624"/> + <location filename="../UI/UserInterface.py" line="1598"/> <source>Toggle the Horizontal Toolbox window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1626"/> + <location filename="../UI/UserInterface.py" line="1600"/> <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="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>Left Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>&Left Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1638"/> + <location filename="../UI/UserInterface.py" line="1612"/> <source>Toggle the left sidebar window</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1613"/> + <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="1635"/> + <source>Bottom Sidebar</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>&Bottom Sidebar</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1639"/> - <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="1661"/> - <source>Bottom Sidebar</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>&Bottom Sidebar</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1665"/> <source>Toggle the bottom sidebar window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1667"/> + <location filename="../UI/UserInterface.py" line="1641"/> <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="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Alt+Shift+O</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Alt+Shift+Y</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1728"/> + <location filename="../UI/UserInterface.py" line="1702"/> <source>Alt+Shift+B</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>What's This?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>&What's This?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>Shift+F1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752"/> + <location filename="../UI/UserInterface.py" line="1726"/> <source>Context sensitive help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1753"/> + <location filename="../UI/UserInterface.py" line="1727"/> <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="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>Helpviewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>&Helpviewer...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>F1</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1745"/> + <source>Open the helpviewer window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show Versions</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show &Versions</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1771"/> - <source>Open the helpviewer window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show Versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show &Versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1797"/> <source>Display version information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1799"/> + <location filename="../UI/UserInterface.py" line="1773"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1809"/> + <location filename="../UI/UserInterface.py" line="1783"/> <source>Check for Updates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806"/> + <location filename="../UI/UserInterface.py" line="1780"/> <source>Check for &Updates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show downloadable versions</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show &downloadable versions...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1821"/> + <location filename="../UI/UserInterface.py" line="1795"/> <source>Show the versions available for download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Report Bug</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1844"/> + <location filename="../UI/UserInterface.py" line="1818"/> <source>Report &Bug...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848"/> + <location filename="../UI/UserInterface.py" line="1822"/> <source>Report a bug</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1849"/> + <location filename="../UI/UserInterface.py" line="1823"/> <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="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request Feature</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request &Feature...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1860"/> + <location filename="../UI/UserInterface.py" line="1834"/> <source>Send a feature request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1862"/> + <location filename="../UI/UserInterface.py" line="1836"/> <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="2883"/> + <location filename="../UI/UserInterface.py" line="2858"/> <source>Unittest</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1845"/> <source>&Unittest...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1850"/> <source>Start unittest dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1877"/> + <location filename="../UI/UserInterface.py" line="1851"/> <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="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>Unittest Restart</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>&Restart Unittest...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1890"/> + <location filename="../UI/UserInterface.py" line="1864"/> <source>Restart last unittest</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1891"/> + <location filename="../UI/UserInterface.py" line="1865"/> <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="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest &Script...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920"/> + <location filename="../UI/UserInterface.py" line="1894"/> <source>Run unittest with current script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922"/> + <location filename="../UI/UserInterface.py" line="1896"/> <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="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>Unittest Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1930"/> + <location filename="../UI/UserInterface.py" line="1904"/> <source>Unittest &Project...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1909"/> <source>Run unittest with current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1937"/> + <location filename="../UI/UserInterface.py" line="1911"/> <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="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>UI Previewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>&UI Previewer...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003"/> + <location filename="../UI/UserInterface.py" line="1977"/> <source>Start the UI Previewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004"/> + <location filename="../UI/UserInterface.py" line="1978"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>Translations Previewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>&Translations Previewer...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2016"/> + <location filename="../UI/UserInterface.py" line="1990"/> <source>Start the Translations Previewer</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1992"/> + <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>Compare Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>&Compare Files...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2017"/> + <source>Compare two files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2005"/> + <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="2012"/> + <source>Compare Files side by side</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2018"/> - <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>Compare Files</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>&Compare Files...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2043"/> - <source>Compare two files</source> + <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="2026"/> + <source>SQL Browser</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2026"/> + <source>SQL &Browser...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2031"/> - <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="2038"/> - <source>Compare Files side by side</source> + <source>Browse a SQL database</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2032"/> + <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2044"/> - <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="2052"/> - <source>SQL Browser</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2052"/> - <source>SQL &Browser...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2057"/> - <source>Browse a SQL database</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2058"/> - <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2070"/> <source>Mini Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2065"/> + <location filename="../UI/UserInterface.py" line="2039"/> <source>Mini &Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2071"/> + <location filename="../UI/UserInterface.py" line="2045"/> <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="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>&Icon Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>&Preferences...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144"/> + <location filename="../UI/UserInterface.py" line="2118"/> <source>Set the prefered configuration</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146"/> + <location filename="../UI/UserInterface.py" line="2120"/> <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="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>Export Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>E&xport Preferences...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160"/> + <location filename="../UI/UserInterface.py" line="2134"/> <source>Export the current configuration</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2162"/> + <location filename="../UI/UserInterface.py" line="2136"/> <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="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>Import Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>I&mport Preferences...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2174"/> + <location filename="../UI/UserInterface.py" line="2148"/> <source>Import a previously exported configuration</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176"/> + <location filename="../UI/UserInterface.py" line="2150"/> <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="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload &APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2187"/> + <location filename="../UI/UserInterface.py" line="2161"/> <source>Reload the API information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2189"/> + <location filename="../UI/UserInterface.py" line="2163"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2201"/> + <location filename="../UI/UserInterface.py" line="2175"/> <source>Show external tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196"/> + <location filename="../UI/UserInterface.py" line="2170"/> <source>Show external &tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>View Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>&View Profiles...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2217"/> + <location filename="../UI/UserInterface.py" line="2191"/> <source>Configure view profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2219"/> + <location filename="../UI/UserInterface.py" line="2193"/> <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="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Tool&bars...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2234"/> + <location filename="../UI/UserInterface.py" line="2208"/> <source>Configure toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235"/> + <location filename="../UI/UserInterface.py" line="2209"/> <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="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard &Shortcuts...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2249"/> + <location filename="../UI/UserInterface.py" line="2223"/> <source>Set the keyboard shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2225"/> <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="5849"/> + <location filename="../UI/UserInterface.py" line="5790"/> <source>Export Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2233"/> <source>&Export Keyboard Shortcuts...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2238"/> <source>Export the keyboard shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2240"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Import Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2273"/> + <location filename="../UI/UserInterface.py" line="2247"/> <source>&Import Keyboard Shortcuts...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2278"/> + <location filename="../UI/UserInterface.py" line="2252"/> <source>Import the keyboard shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2280"/> + <location filename="../UI/UserInterface.py" line="2254"/> <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="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Activate current editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Alt+Shift+E</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Show next</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Ctrl+Alt+Tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Show previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Shift+Ctrl+Alt+Tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Switch between tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Ctrl+1</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>Plugin Infos</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>&Plugin Infos...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2353"/> + <source>Show Plugin Infos</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2354"/> + <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="2367"/> + <source>Install Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2362"/> + <source>&Install Plugins...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2368"/> + <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="2380"/> + <source>Uninstall Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2375"/> - <source>Plugin Infos</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2375"/> - <source>&Plugin Infos...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2379"/> - <source>Show Plugin Infos</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2380"/> - <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="2393"/> - <source>Install Plugins</source> + <source>&Uninstall Plugin...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2381"/> + <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="2388"/> + <source>Plugin Repository</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2388"/> - <source>&Install Plugins...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2394"/> - <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="2406"/> - <source>Uninstall Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2401"/> - <source>&Uninstall Plugin...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2407"/> - <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="2414"/> - <source>Plugin Repository</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2414"/> <source>Plugin &Repository...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419"/> + <location filename="../UI/UserInterface.py" line="2393"/> <source>Show Plugins available for download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2421"/> + <location filename="../UI/UserInterface.py" line="2395"/> <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="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2484"/> + <location filename="../UI/UserInterface.py" line="2458"/> <source>Open Qt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2516"/> + <location filename="../UI/UserInterface.py" line="2490"/> <source>Open PyQt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596"/> + <location filename="../UI/UserInterface.py" line="2570"/> <source>Eric API Documentation</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2570"/> + <source>&Eric API Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2574"/> + <source>Open Eric API Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2592"/> + <source>PySide Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2592"/> + <source>Py&Side Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2596"/> - <source>&Eric API Documentation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2600"/> - <source>Open Eric API Documentation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2618"/> - <source>PySide Documentation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2618"/> - <source>Py&Side Documentation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2622"/> <source>Open PySide Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691"/> + <location filename="../UI/UserInterface.py" line="2665"/> <source>&Unittest</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2708"/> + <location filename="../UI/UserInterface.py" line="2682"/> <source>E&xtras</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2713"/> + <location filename="../UI/UserInterface.py" line="2687"/> <source>Wi&zards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2724"/> + <location filename="../UI/UserInterface.py" line="2698"/> <source>Select Tool Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2732"/> + <location filename="../UI/UserInterface.py" line="2706"/> <source>Se&ttings</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2731"/> + <source>&Window</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757"/> - <source>&Window</source> + <source>&Toolbars</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768"/> + <source>P&lugins</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2777"/> + <source>Configure...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2782"/> - <source>&Toolbars</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2793"/> - <source>P&lugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2802"/> - <source>Configure...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2807"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2882"/> + <location filename="../UI/UserInterface.py" line="2857"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2884"/> + <location filename="../UI/UserInterface.py" line="2859"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2886"/> + <location filename="../UI/UserInterface.py" line="2861"/> <source>Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2887"/> + <location filename="../UI/UserInterface.py" line="2862"/> <source>Plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3051"/> + <location filename="../UI/UserInterface.py" line="3026"/> <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="3058"/> + <location filename="../UI/UserInterface.py" line="3033"/> <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="3065"/> + <location filename="../UI/UserInterface.py" line="3040"/> <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="3072"/> + <location filename="../UI/UserInterface.py" line="3047"/> <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="3079"/> + <location filename="../UI/UserInterface.py" line="3054"/> <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="3086"/> + <location filename="../UI/UserInterface.py" line="3061"/> <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="3161"/> + <location filename="../UI/UserInterface.py" line="3136"/> <source>External Tools/{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3262"/> + <location filename="../UI/UserInterface.py" line="3237"/> <source><h3>Version Numbers</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6829"/> + <location filename="../UI/UserInterface.py" line="6770"/> <source></table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <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="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>Restart application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>The application needs to be restarted. Do it now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3676"/> + <location filename="../UI/UserInterface.py" line="3651"/> <source>Configure Tool Groups ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3680"/> + <location filename="../UI/UserInterface.py" line="3655"/> <source>Configure current Tool Group ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3631"/> + <location filename="../UI/UserInterface.py" line="3606"/> <source>&Builtin Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3648"/> + <location filename="../UI/UserInterface.py" line="3623"/> <source>&Plugin Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3796"/> + <location filename="../UI/UserInterface.py" line="3771"/> <source>&Show all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3798"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>&Hide all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <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="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <source>Problem</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <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="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4551"/> + <location filename="../UI/UserInterface.py" line="4492"/> <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="4618"/> + <location filename="../UI/UserInterface.py" line="4559"/> <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="4669"/> + <location filename="../UI/UserInterface.py" line="4610"/> <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="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <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="4711"/> + <location filename="../UI/UserInterface.py" line="4652"/> <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="4731"/> + <location filename="../UI/UserInterface.py" line="4672"/> <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="4779"/> + <location filename="../UI/UserInterface.py" line="4720"/> <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="4834"/> + <location filename="../UI/UserInterface.py" line="4775"/> <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="4855"/> + <location filename="../UI/UserInterface.py" line="4796"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>External Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4948"/> + <location filename="../UI/UserInterface.py" line="4889"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4996"/> + <location filename="../UI/UserInterface.py" line="4937"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5088"/> + <location filename="../UI/UserInterface.py" line="5029"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <source>Documentation Missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <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="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source>Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5306"/> + <location filename="../UI/UserInterface.py" line="5247"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <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="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <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="6168"/> + <location filename="../UI/UserInterface.py" line="6109"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6105"/> + <location filename="../UI/UserInterface.py" line="6046"/> <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="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source>Read session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <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="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>&Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6613"/> + <location filename="../UI/UserInterface.py" line="6554"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Error during updates check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Could not perform updates check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6815"/> + <location filename="../UI/UserInterface.py" line="6756"/> <source><h3>Available versions</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>First time usage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2532"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2576"/> + <location filename="../UI/UserInterface.py" line="2550"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2552"/> <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="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6670"/> + <location filename="../UI/UserInterface.py" line="6611"/> <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="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <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> @@ -75087,568 +75037,568 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New &Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1904"/> + <location filename="../UI/UserInterface.py" line="1878"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1906"/> + <location filename="../UI/UserInterface.py" line="1880"/> <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="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>&Snapshot...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2129"/> + <location filename="../UI/UserInterface.py" line="2103"/> <source>Take snapshots of a screen region</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2131"/> + <location filename="../UI/UserInterface.py" line="2105"/> <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="4925"/> + <location filename="../UI/UserInterface.py" line="4866"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6885"/> + <location filename="../UI/UserInterface.py" line="6826"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1595"/> + <location filename="../UI/UserInterface.py" line="1569"/> <source>Left Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1607"/> + <location filename="../UI/UserInterface.py" line="1581"/> <source>Right Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1461"/> + <location filename="../UI/UserInterface.py" line="1435"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1463"/> + <location filename="../UI/UserInterface.py" line="1437"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1478"/> + <location filename="../UI/UserInterface.py" line="1452"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1454"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1470"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1472"/> + <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1488"/> + <source>Switch the input focus to the Shell window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1490"/> + <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1498"/> - <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1514"/> - <source>Switch the input focus to the Shell window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1516"/> - <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> <source>&File-Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1530"/> + <location filename="../UI/UserInterface.py" line="1504"/> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1532"/> + <location filename="../UI/UserInterface.py" line="1506"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Lo&g-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1547"/> + <location filename="../UI/UserInterface.py" line="1521"/> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1523"/> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>&Task-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1539"/> + <source>Switch the input focus to the Task-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Templ&ate-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1557"/> + <source>Switch the input focus to the Template-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1559"/> - <source>&Task-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1565"/> - <source>Switch the input focus to the Task-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Templ&ate-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1583"/> - <source>Switch the input focus to the Template-Viewer window.</source> + <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1569"/> + <source>&Left Toolbox</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1572"/> + <source>Toggle the Left Toolbox window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> + <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1581"/> + <source>&Right Toolbox</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1585"/> - <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1595"/> - <source>&Left Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1598"/> - <source>Toggle the Left Toolbox window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1599"/> - <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1607"/> - <source>&Right Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1611"/> <source>Toggle the Right Toolbox window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1612"/> + <location filename="../UI/UserInterface.py" line="1586"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right 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="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>Right Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>&Right Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1651"/> + <location filename="../UI/UserInterface.py" line="1625"/> <source>Toggle the right sidebar window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1653"/> + <location filename="../UI/UserInterface.py" line="1627"/> <source><b>Toggle the right sidebar window</b><p>If the right 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="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Cooperation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Co&operation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1681"/> + <location filename="../UI/UserInterface.py" line="1655"/> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1683"/> + <location filename="../UI/UserInterface.py" line="1657"/> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Symbols-Viewer</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>S&ymbols-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1690"/> + <source>Switch the input focus to the Symbols-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1692"/> + <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Numbers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Num&bers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1708"/> + <source>Switch the input focus to the Numbers-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1710"/> - <source>S&ymbols-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1716"/> - <source>Switch the input focus to the Symbols-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1718"/> - <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Numbers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Num&bers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1734"/> - <source>Switch the input focus to the Numbers-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1736"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2762"/> + <location filename="../UI/UserInterface.py" line="2736"/> <source>&Windows</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1567"/> + <location filename="../UI/UserInterface.py" line="1541"/> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>IRC</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>&IRC</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>Meta+Shift+I</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1699"/> + <location filename="../UI/UserInterface.py" line="1673"/> <source>Switch the input focus to the IRC window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1701"/> + <location filename="../UI/UserInterface.py" line="1675"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1936"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1937"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-Designer</source> + <source>Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-&Designer...</source> + <source>Qt-&Linguist...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1962"/> - <source>Start Qt-Designer</source> + <source>Start Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1963"/> - <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-&Linguist...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1988"/> - <source>Start Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1989"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2499"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open Qt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3097"/> + <location filename="../UI/UserInterface.py" line="3072"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293"/> + <location filename="../UI/UserInterface.py" line="2267"/> <source>Manage the saved SSL certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295"/> + <location filename="../UI/UserInterface.py" line="2269"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2283"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311"/> + <location filename="../UI/UserInterface.py" line="2285"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2509"/> <source>Open PyQt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5313"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2560"/> + <location filename="../UI/UserInterface.py" line="2534"/> <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="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836"/> - <source>Show Error Log</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1832"/> - <source>Show Error &Log...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1837"/> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6608"/> - <source>Version Check</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1408"/> - <source>Open a new eric6 instance</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1410"/> - <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1773"/> - <source><b>Helpviewer</b><p>Display the eric6 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="1810"/> + <source>Show Error Log</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1806"/> + <source>Show Error &Log...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1811"/> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6549"/> + <source>Version Check</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1382"/> + <source>Open a new eric6 instance</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1384"/> + <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1747"/> + <source><b>Helpviewer</b><p>Display the eric6 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="1784"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823"/> + <location filename="../UI/UserInterface.py" line="1797"/> <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 &Web Browser...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2099"/> + <location filename="../UI/UserInterface.py" line="2073"/> <source>Start the eric6 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2075"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2115"/> + <location filename="../UI/UserInterface.py" line="2089"/> <source>Start the eric6 Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2117"/> + <location filename="../UI/UserInterface.py" line="2091"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2203"/> + <location filename="../UI/UserInterface.py" line="2177"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2602"/> + <location filename="../UI/UserInterface.py" line="2576"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished"></translation> </message> @@ -75658,87 +75608,87 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3651"/> + <location filename="../UI/UserInterface.py" line="3626"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3723"/> + <location filename="../UI/UserInterface.py" line="3698"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6624"/> + <location filename="../UI/UserInterface.py" line="6565"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>&Hex Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2083"/> + <location filename="../UI/UserInterface.py" line="2057"/> <source>Start the eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2085"/> + <location filename="../UI/UserInterface.py" line="2059"/> <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327"/> + <location filename="../UI/UserInterface.py" line="2301"/> <source>Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2303"/> <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1376"/> + <location filename="../UI/UserInterface.py" line="1350"/> <source>Save session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1381"/> + <location filename="../UI/UserInterface.py" line="1355"/> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>Load session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1389"/> + <location filename="../UI/UserInterface.py" line="1363"/> <source>Load session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1394"/> + <location filename="../UI/UserInterface.py" line="1368"/> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -75753,102 +75703,102 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6690"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="953"/> + <location filename="../UI/UserInterface.py" line="938"/> <source>Code Documentation Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2485"/> + <location filename="../UI/UserInterface.py" line="2459"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2500"/> + <location filename="../UI/UserInterface.py" line="2474"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2517"/> + <location filename="../UI/UserInterface.py" line="2491"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2624"/> + <location filename="../UI/UserInterface.py" line="2598"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide&2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2643"/> + <location filename="../UI/UserInterface.py" line="2617"/> <source>Open PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2645"/> + <location filename="../UI/UserInterface.py" line="2619"/> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2409"/> <source>Virtualenv Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2403"/> <source>&Virtualenv Manager...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2437"/> + <location filename="../UI/UserInterface.py" line="2411"/> <source><b>Virtualenv Manager</b><p>This opens a dialog to manage the defined Python virtual environments.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2426"/> <source>Virtualenv Configurator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Virtualenv &Configurator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2454"/> + <location filename="../UI/UserInterface.py" line="2428"/> <source><b>Virtualenv Configurator</b><p>This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_es.ts Sun Jul 08 17:33:25 2018 +0200 +++ b/i18n/eric6_es.ts Sun Jul 08 18:55:21 2018 +0200 @@ -5577,621 +5577,621 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1827"/> + <location filename="../Debugger/DebugUI.py" line="1825"/> <source>Run Script</source> <translation>Ejecutar Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="178"/> + <location filename="../Debugger/DebugUI.py" line="176"/> <source>&Run Script...</source> <translation>&Ejecutar script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="183"/> + <location filename="../Debugger/DebugUI.py" line="181"/> <source>Run the current Script</source> <translation>Ejecutar el script actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="184"/> + <location filename="../Debugger/DebugUI.py" line="182"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Ejecutar Script</b><p>Establece los parámetros de la línea de comandos y ejecuta el script fuera del depurador. Si tiene cambios sin guardar, deben ser guardados primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>Run Project</source> <translation>Ejecutar Proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="193"/> + <location filename="../Debugger/DebugUI.py" line="191"/> <source>Run &Project...</source> <translation>Ejecutar &Proyecto...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="198"/> + <location filename="../Debugger/DebugUI.py" line="196"/> <source>Run the current Project</source> <translation>Ejecutar el proyecto Actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="199"/> + <location filename="../Debugger/DebugUI.py" line="197"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Ejecutar Proyecto</b><p>Establece los argumentos de la línea de comandos y ejecuta el proyecto actual fuera del depurador. Si los archivos del proyecto actual tienen archivos sin guardar, deben ser guardados primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script</source> <translation>Ejecutar Script con definición de cobertura</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script...</source> <translation>Ejecutar Script con definición de cobertura...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="212"/> + <source>Perform a coverage run of the current Script</source> + <translation>Llevar a cabo una ejecución con definición de cobertura del Script actual</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="214"/> - <source>Perform a coverage run of the current Script</source> - <translation>Llevar a cabo una ejecución con definición de cobertura del Script actual</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="216"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Ejecutar Script con definición de cobertura</b><p>Establece los argumentos de línea de comando y ejecuta el script bajo el control de una herramienta de análisis de cobertura. Si el archivo tiene cambios sin guardar, pueden ser guardados primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project</source> <translation>Ejecutar el Proyecto con definición de cobertura</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project...</source> <translation>Ejecutar el Proyecto con definición de cobertura...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="228"/> + <source>Perform a coverage run of the current Project</source> + <translation>Llevar a cabo una ejecución con definición de cobertura del Proyecto actual</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="230"/> - <source>Perform a coverage run of the current Project</source> - <translation>Llevar a cabo una ejecución con definición de cobertura del Proyecto actual</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="232"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Ejecutar Proyecto con definición de cobertura</b><p>Establecer los argumentos de línea de comando y ejecutar el proyecto actual bajo el control de una herramienta de análisis de cobertura. Si hay archivos con cambios sin guardar, se pueden guardar primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script</source> <translation>Hacer Profiling del Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script...</source> <translation>Hacer Profiling del Script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="246"/> + <location filename="../Debugger/DebugUI.py" line="244"/> <source>Profile the current Script</source> <translation>Hacer Profiling del Script actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="247"/> + <location filename="../Debugger/DebugUI.py" line="245"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Hacer Profiling del Script</b><p>Establecer los argumentos de línea de comandos y hacer profiling del script. Si el archivo tiene cambios sin guardar, se pueden guardar primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project</source> <translation>Hacer Profiling del Proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project...</source> <translation>Hacer Profiling del Proyecto...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="258"/> + <source>Profile the current Project</source> + <translation>Hacer Profiling del Proyecto actual</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="260"/> - <source>Profile the current Project</source> - <translation>Hacer Profiling del Proyecto actual</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="262"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Hacer Profiling del Proyecto</b><p>Establecer los argumentos de línea de comandos y hacer profiling del proyecto actual. Si hay archivos que tienen cambios sin guardar, se puede guardar primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1962"/> + <location filename="../Debugger/DebugUI.py" line="1960"/> <source>Debug Script</source> <translation>Depurar Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="271"/> + <location filename="../Debugger/DebugUI.py" line="269"/> <source>&Debug Script...</source> <translation>&Depurar script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="276"/> + <location filename="../Debugger/DebugUI.py" line="274"/> <source>Debug the current Script</source> <translation>Depurar el script actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="277"/> + <location filename="../Debugger/DebugUI.py" line="275"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Depurar Script</b><p>Establecer los argumentos de línea de comandos y establecer la línea actual en la ventana actual de edición como la primera sentencia Python ejecutable. Si el archivo tiene cambios sin guardar, se puede guardar primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>Debug Project</source> <translation>Depurar proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="287"/> + <location filename="../Debugger/DebugUI.py" line="285"/> <source>Debug &Project...</source> <translation>Depurar &proyecto...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="290"/> + <source>Debug the current Project</source> + <translation>Depurar el proyecto actual</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="292"/> - <source>Debug the current Project</source> - <translation>Depurar el proyecto actual</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="294"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Depurar Proyecto</b><p>Establecer los argumentos de línea de comandos y establecer la línea actual en la ventana actual de edición como la primera sentencia Python ejecutable. Si hay archivos que tienen cambios sin guardar, se pueden guardar primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="306"/> <source>Restart the last debugged script</source> <translation>Reiniciar el último script depurado</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="325"/> + <location filename="../Debugger/DebugUI.py" line="323"/> <source>Stop the running script.</source> <translation>Detener el script en ejecución.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>Continue</source> <translation>Continuar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>&Continue</source> <translation>&Continuar</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="338"/> + <source>Continue running the program from the current line</source> + <translation>Continúa el programa a partir de la línea actual</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="340"/> - <source>Continue running the program from the current line</source> - <translation>Continúa el programa a partir de la línea actual</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="342"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Continuar</b><p>Continúa la ejecución del programa a partir de la línea actual. El programa se detendrá al terminar o al alcanzar un breakpoint.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue to Cursor</source> <translation>Continuar hasta el cursor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue &To Cursor</source> <translation>Continuar &hasta el cursor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="356"/> + <location filename="../Debugger/DebugUI.py" line="354"/> <source>Continue running the program from the current line to the current cursor position</source> <translation>Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="359"/> + <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>Continuar hasta el Cursor</b><p>Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Single Step</source> <translation>Un paso</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Sin&gle Step</source> <translation>Un &paso</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="392"/> + <location filename="../Debugger/DebugUI.py" line="390"/> <source>Execute a single Python statement</source> <translation>Ejecuta una sentencia python</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="393"/> + <location filename="../Debugger/DebugUI.py" line="391"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>Paso Único</b><p>Ejecutar una única sentencia Python. Si la sentencia es un <tt>import</tt>, un constructor de clase, o un método o llamada a función entonces el control se devuelve al depurador en la siguiente sentencia.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step Over</source> <translation>Saltar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step &Over</source> <translation>Salta&r</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="408"/> + <location filename="../Debugger/DebugUI.py" line="406"/> <source>Execute a single Python statement staying in the current frame</source> <translation>Ejecutar una única sentencia Python sin salir del marco actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="411"/> + <location filename="../Debugger/DebugUI.py" line="409"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation><b>Saltar</b><p>Eejcutar una única sentencia Python sin salir del marco actual. Si la sentencia es un <tt>import</tt>, un constructor de clase, o un método o llamada a función, el control se devuelve al depurador despues de que la sentencia se haya completado.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Out</source> <translation>Paso atras</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Ou&t</source> <translation>Paso &atras</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="427"/> + <location filename="../Debugger/DebugUI.py" line="425"/> <source>Execute Python statements until leaving the current frame</source> <translation>Ejecutar sentencia Python hasta abandonar el marco actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="430"/> + <location filename="../Debugger/DebugUI.py" line="428"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation><b>Saltar fuera</b><p>Ejecuta sentencias Python hasta salir del marco actual. Si las sentencias están dentro de una sentencia <tt>import</tt>, un constructor de clase, o un método o llamada a función, el control se devuelve al depurador despues de que el marco actual ha sido abandonado.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>Stop</source> <translation>Detener</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>&Stop</source> <translation>&Parar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="446"/> + <location filename="../Debugger/DebugUI.py" line="444"/> <source>Stop debugging</source> <translation>Detener depuración</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="447"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Detener</b><p>Detener la sesión de depuración en ejecución.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Variables Type Filter</source> <translation>Fitro por tipo de variable</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Varia&bles Type Filter...</source> <translation>&Fitro por tipo de variable...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="456"/> + <source>Configure variables type filter</source> + <translation>Configurar Fitro por tipo de variable</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="458"/> - <source>Configure variables type filter</source> - <translation>Configurar Fitro por tipo de variable</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="460"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation><b>Fitro por tipo de variable</b><p>Configurar el fitro por tipo de variable. Durante una sesión de depuración, solo se muestran en las ventanas de variables locales o globales los tipos de variable que no han sido seleccionados.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>Exceptions Filter</source> <translation>Filtro de excepciones</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>&Exceptions Filter...</source> <translation>Filtro de e&xcepciones...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="472"/> + <source>Configure exceptions filter</source> + <translation>Configurar Filtro de excepciones</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="474"/> - <source>Configure exceptions filter</source> - <translation>Configurar Filtro de excepciones</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="476"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>Filtro de excepciones</b><p>Configurar el filtro de excepciones. Durante una sesión de depuración solo se resaltan los tipos de excepción de la lista.</p><p>Por favor, note que se resaltarán todas las excepciones que no sean gestionadas, independientemente de la lista de filtros.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="512"/> + <location filename="../Debugger/DebugUI.py" line="510"/> <source>Toggle Breakpoint</source> <translation>Alternar Punto de Interrupción (Breakpoint)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="513"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Alternar Punto de Interrupción</b><p>Inserta o elimina un punto de interrupción en la línea actual del editor actual.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="527"/> + <location filename="../Debugger/DebugUI.py" line="525"/> <source>Edit Breakpoint</source> <translation>Editar Punto de Interrupción (Breakpoint)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Edit Breakpoint...</source> <translation>Editar Punto de Interrupción (Breakpoint)...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="528"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>Editar Punto de Interrupción (Breakpoint)</b><p>Abre un diálogo para editar las propiedades de los breakpoints. Se aplica a la línea actual del editor actual.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="543"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Next Breakpoint</source> <translation>Siguiente Punto de Interrupción (Breakpoint)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation>Ctrl+Shift+PgDown</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="542"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>Siguiente Breakpoint</b><p>Mueve el cursor al siguiente breakpoint.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="558"/> + <location filename="../Debugger/DebugUI.py" line="556"/> <source>Previous Breakpoint</source> <translation>Breakpoint (Punto de interrupción) Anterior</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="549"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation>Ctrl+Shift+PgUp</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="557"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>Punto de Interrupción (Breakpoint) Anterior</b><p>Mueve el cursor al anterior punto de interrupción.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="572"/> + <location filename="../Debugger/DebugUI.py" line="570"/> <source>Clear Breakpoints</source> <translation>Eliminar Puntos de Interrupción (Breakpoints)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="564"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation>Ctrl+Shift+C</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="573"/> + <location filename="../Debugger/DebugUI.py" line="571"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation><b>Eliminar Puntos de Interrupción (Breakpoints)</b><p>Elimina todos los puntos de interrupción del editor.</p></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="597"/> + <source>&Debug</source> + <translation>&Depurar</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="599"/> - <source>&Debug</source> - <translation>&Depurar</translation> + <source>&Start</source> + <translation>&Iniciar</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="601"/> - <source>&Start</source> - <translation>&Iniciar</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="603"/> <source>&Breakpoints</source> <translation>Puntos de interrupción (&Breakpoints)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="646"/> + <location filename="../Debugger/DebugUI.py" line="644"/> <source>Start</source> <translation>Iniciar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="660"/> + <location filename="../Debugger/DebugUI.py" line="658"/> <source>Debug</source> <translation>Depurar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1100"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>El programa en depuración contiene un error de sintaxis no especificado.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1137"/> + <location filename="../Debugger/DebugUI.py" line="1135"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Ha saltado una excepción que no ha sido manejada. Vea la ventana de shell para mas detalles.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1262"/> + <location filename="../Debugger/DebugUI.py" line="1260"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>El programa en depuración ha terminado inesperadamente.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source>Breakpoint Condition Error</source> <translation>Error en la condición del Breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1576"/> + <location filename="../Debugger/DebugUI.py" line="1574"/> <source>Coverage of Project</source> <translation>Cobertura del Proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1563"/> + <location filename="../Debugger/DebugUI.py" line="1561"/> <source>Coverage of Script</source> <translation>Cobertura del Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>There is no main script defined for the current project. Aborting</source> <translation>No hay script principal definido para el proyecto actual. Abortando</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1708"/> + <location filename="../Debugger/DebugUI.py" line="1706"/> <source>Profile of Project</source> <translation>Profiling del proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1695"/> + <location filename="../Debugger/DebugUI.py" line="1693"/> <source>Profile of Script</source> <translation>Profiling del script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>No hay script principal definido para el proyecto actual. La depuración no es posible.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source>Watch Expression Error</source> <translation>Error en la Expresión a Examinar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1409"/> + <location filename="../Debugger/DebugUI.py" line="1407"/> <source>Watch expression already exists</source> <translation>La expresión a Examinar ya existe</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>Ignored Exceptions</source> <translation>Excepciones Ignoradas</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>&Ignored Exceptions...</source> <translation>Excepciones &Ignoradas...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="489"/> + <source>Configure ignored exceptions</source> + <translation>Configurar excepciones ignoradas</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="491"/> - <source>Configure ignored exceptions</source> - <translation>Configurar excepciones ignoradas</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="493"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>Excepciones ignoradas</b><p>Configurar las excepciones ignoradas. Durante una sesión de depuración se resaltarán solamente los tipos de excepción que no están en la lista.</p><p>Por favor, note que las excepciones no gestionadas no pueden ser ignoradas..</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="506"/> + <location filename="../Debugger/DebugUI.py" line="504"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation>Shift+F11</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation>Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1119"/> + <location filename="../Debugger/DebugUI.py" line="1117"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation><p>El archivo <b>{0}</b> contiene el error de sintaxis <b>{1}</b> en la línea<b>{2}</b>, carácter <b>{3}</b>.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1184"/> + <location filename="../Debugger/DebugUI.py" line="1182"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation><p>El programa en depuración ha lanzado la excepción <b>{0}</b><br>"<b>{1}</b>"<br>Archivo: <b>{2}</b>, Línea: <b>{3}</b></p><p>¿Interrumpir aquí?</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1199"/> + <location filename="../Debugger/DebugUI.py" line="1197"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>El programa en depuración ha lanzado la excepción <b>{0}</b><br>"<b>{1}</b>"</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>La condición del punto de ruptura <b>{0},{1}</b> tiene un error de sintaxis.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>La expresión a examinar <b>{0}</b> contiene un error de sintaxis.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1399"/> + <location filename="../Debugger/DebugUI.py" line="1397"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>Una expresión a examinar '<b>{0}</b>' ya existe.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1403"/> + <location filename="../Debugger/DebugUI.py" line="1401"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>Una expresión a examinar '<b>{0}</b>' para la variable <b>{1}</b> ya existe.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1069"/> + <location filename="../Debugger/DebugUI.py" line="1067"/> <source>Program terminated</source> <translation>Programa terminado</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="304"/> + <location filename="../Debugger/DebugUI.py" line="302"/> <source>Restart</source> <translation>Reiniciar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="310"/> + <location filename="../Debugger/DebugUI.py" line="308"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation><b>Reiniciar</b><p>Establecer los argumentos de línea de comandos y la línea actual para que sea la primera sentencia del script que se depuró en último lugar. Si hay cambios sin guardar, pueden ser guardados primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="326"/> + <location filename="../Debugger/DebugUI.py" line="324"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation><b>Detener</b><p>Esto detiene el script que está corriendo en el backend del depurador.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1248"/> + <location filename="../Debugger/DebugUI.py" line="1246"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation><p>El programa ha generado la señal "{0}".<br/>Archivo: <b>{1}</b>, Línea: <b>{2}</b></p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> + <location filename="../Debugger/DebugUI.py" line="1034"/> <source><p>Message: {0}</p></source> <translation><p>Mensaje: {0}</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1040"/> <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> <translation><p>El programa ha terminato con estado de salida {0}.</p>{1}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1045"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> <translation><p><b>{0}</b> ha terminado con estado de salida {1}.</p>{2}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1055"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>Message: {0}</source> <translation>Mensaje: {0}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1060"/> <source>The program has terminated with an exit status of {0}. {1}</source> <translation>El programa ha terminado con estado de salida {0}. {1}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1065"/> + <location filename="../Debugger/DebugUI.py" line="1063"/> <source>"{0}" has terminated with an exit status of {1}. {2}</source> <translation>"{0}" ha terminado con estado de salida {1}. {2}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1074"/> + <location filename="../Debugger/DebugUI.py" line="1072"/> <source>The program has terminated with an exit status of {0}. {1} </source> @@ -6200,7 +6200,7 @@ </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1078"/> + <location filename="../Debugger/DebugUI.py" line="1076"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> @@ -6209,22 +6209,22 @@ </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>Move Instruction Pointer to Cursor</source> <translation>Mover el Puntero de Instrucción hasta el Cursor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>&Jump To Cursor</source> <translation>Saltar al &Cursor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="372"/> + <location filename="../Debugger/DebugUI.py" line="370"/> <source>Skip the code from the current line to the current cursor position</source> <translation>Omitir el código desde la línea actual hasta la posición actual del cursor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="375"/> + <location filename="../Debugger/DebugUI.py" line="373"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation><b>Mover Puntero de Instrucción hasta el Cursor</b><p>Mover el puntero interno de instrucción de Python hasta la posición actual del cursor sin executar el código entre ambos puntos.</p><p>No es posible saltar fuera de una función o saltar a un bloque de código, por ej. un bucle. En estos casos, se imprime un error de mensaje a la ventana de log.</p></translation> </message> @@ -6232,52 +6232,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="../Debugger/DebugViewer.py" line="174"/> + <location filename="../Debugger/DebugViewer.py" line="145"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>Para definir filtros de variables introduzca patrones de expresión regular separados por ';'. </translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="178"/> + <location filename="../Debugger/DebugViewer.py" line="149"/> <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>Para definir filtros de variables introduzca patrones de expresión regular separados por ';'. Todas las variables y atributos de clases que coincidan con una de las expresiones, no se muestran en el listado anterior.</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="184"/> + <location filename="../Debugger/DebugViewer.py" line="155"/> <source>Set</source> <translation>Establecer</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="159"/> + <location filename="../Debugger/DebugViewer.py" line="130"/> <source>Source</source> <translation>Código fuente</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="261"/> + <location filename="../Debugger/DebugViewer.py" line="226"/> <source>Threads:</source> <translation>Hilos:</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation>ID</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation>Nombre</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation>Estado</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="520"/> + <location filename="../Debugger/DebugViewer.py" line="457"/> <source>waiting at breakpoint</source> <translation>esperando en el punto de ruptura</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="522"/> + <location filename="../Debugger/DebugViewer.py" line="459"/> <source>running</source> <translation>en ejecución</translation> </message> @@ -40011,7 +40011,7 @@ <context> <name>InterfacePage</name> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="226"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="205"/> <source>English</source> <comment>Translate this with your language</comment> <translation>Español</translation> @@ -40194,35 +40194,35 @@ <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="463"/> <source>Shell</source> - <translation>Shell</translation> + <translation type="obsolete">Shell</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="469"/> <source>Select to get a separate shell window</source> - <translation>Seleccionar para tener una ventana de shell separada</translation> + <translation type="obsolete">Seleccionar para tener una ventana de shell separada</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="501"/> <source>separate window</source> - <translation>Ventana separada</translation> + <translation type="obsolete">Ventana separada</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="492"/> <source>File-Browser</source> - <translation>Explorador de archivos</translation> + <translation type="obsolete">Explorador de archivos</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="498"/> <source>Select to get a separate file browser window</source> - <translation>Seleccionar para tener un explorador de archivos en ventana separada</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="562"/> + <translation type="obsolete">Seleccionar para tener un explorador de archivos en ventana separada</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="490"/> <source>Reset layout to factory defaults</source> <translation>Restablecer disposición a valores por defecto</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="244"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="223"/> <source>System</source> <translation>Sistema</translation> </message> @@ -40249,27 +40249,27 @@ <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="479"/> <source>Select to embed the shell in the Debug-Viewer</source> - <translation>Seleccionar para embeber la shell en el Visor de Depuración</translation> + <translation type="obsolete">Seleccionar para embeber la shell en el Visor de Depuración</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="511"/> <source>embed in Debug-Viewer</source> - <translation>Embeber en el Visor de Depuración</translation> + <translation type="obsolete">Embeber en el Visor de Depuración</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="508"/> <source>Select to embed the file browser in the Debug-Viewer</source> - <translation>Seleccionar para embeber el navegador de archivos en el Visor de Depuración</translation> + <translation type="obsolete">Seleccionar para embeber el navegador de archivos en el Visor de Depuración</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="518"/> <source>Select to embed the file browser in the Project-Viewer</source> - <translation>Seleccionar para embeber el navegador de archivos en el Visor de Proyectos</translation> + <translation type="obsolete">Seleccionar para embeber el navegador de archivos en el Visor de Proyectos</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="521"/> <source>embed in Project-Viewer</source> - <translation>Embeber en el Visor de Proyectos</translation> + <translation type="obsolete">Embeber en el Visor de Proyectos</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="63"/> @@ -40282,12 +40282,12 @@ <translation>Ordenar contenidos por ocurrencia</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="533"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="461"/> <source>Tabs</source> <translation>Pestañas</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="539"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="467"/> <source>Show only one close button instead of one for each tab</source> <translation>Mostrar solamente un boton de cerrar en lugar de uno por cada pestaña</translation> </message> @@ -51800,42 +51800,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="../Project/ProjectBrowser.py" line="72"/> + <location filename="../Project/ProjectBrowser.py" line="66"/> <source>files added</source> <translation>archivos añadidos</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="73"/> + <location filename="../Project/ProjectBrowser.py" line="67"/> <source>local modifications</source> <translation>modificaciones locales</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="76"/> + <location filename="../Project/ProjectBrowser.py" line="70"/> <source>update required</source> <translation>actualización necesaria</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="77"/> - <source>conflict</source> - <translation>conflicto</translation> - </message> - <message> <location filename="../Project/ProjectBrowser.py" line="71"/> + <source>conflict</source> + <translation>conflicto</translation> + </message> + <message> + <location filename="../Project/ProjectBrowser.py" line="65"/> <source>up to date</source> <translation>al dia</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="75"/> + <location filename="../Project/ProjectBrowser.py" line="69"/> <source>files replaced</source> <translation>Archivos reemplazados</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="74"/> + <location filename="../Project/ProjectBrowser.py" line="68"/> <source>files removed</source> <translation>archivos eliminados</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="434"/> + <location filename="../Project/ProjectBrowser.py" line="398"/> <source>unknown status</source> <translation>estado desconocido</translation> </message> @@ -74210,893 +74210,893 @@ <translation>Activando Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>Project-Viewer</source> <translation>Visor de Proyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Debug-Viewer</source> <translation>Visor Depurador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Log-Viewer</source> <translation>Visor Log</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Task-Viewer</source> <translation>Visor de Tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Template-Viewer</source> <translation>Visor de Plantillas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>File-Browser</source> <translation>Explorador de archivos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Quit</source> <translation>Salir</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>&Quit</source> <translation>&Salir</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1365"/> + <location filename="../UI/UserInterface.py" line="1339"/> <source>Quit the IDE</source> <translation>Salir del IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1366"/> + <location filename="../UI/UserInterface.py" line="1340"/> <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>Salir del IDE</b><p>Sale del IDE. Salve primero cualquier cambio que no haya guardado. Se detendran las depuraciones en curso y las preferencias se guardarán en disco.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1421"/> + <location filename="../UI/UserInterface.py" line="1395"/> <source>Edit Profile</source> <translation>Perfil de Edición</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1401"/> <source>Activate the edit view profile</source> <translation>Activar el perfil de vista de edición</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1403"/> + <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>Perfil de Edición</b><p>Activar "Perfil de Vista de Edición". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1412"/> + <source>Debug Profile</source> + <translation>Perfil de Depuración</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1418"/> + <source>Activate the debug view profile</source> + <translation>Activar el perfil de vista de depuración</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1420"/> + <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>Perfil de Depuración</b><p>Activar "Perfil de Vista de Depuracion". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1429"/> - <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>Perfil de Edición</b><p>Activar "Perfil de Vista de Edición". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1438"/> - <source>Debug Profile</source> - <translation>Perfil de Depuración</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1444"/> - <source>Activate the debug view profile</source> - <translation>Activar el perfil de vista de depuración</translation> + <source>&Project-Viewer</source> + <translation>Visor de &Proyecto</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1429"/> + <source>Alt+Shift+P</source> + <translation>Alt+Shift+P</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1464"/> + <source>Alt+Shift+D</source> + <translation>Alt+Shift+D</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>&Shell</source> + <translation>&Shell</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>Alt+Shift+S</source> + <translation>Alt+Shift+S</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1498"/> + <source>Alt+Shift+F</source> + <translation>Alt+Shift+F</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1515"/> + <source>Alt+Shift+G</source> + <translation>Alt+Shift+G</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>Alt+Shift+T</source> + <translation>Alt+Shift+T</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1446"/> - <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>Perfil de Depuración</b><p>Activar "Perfil de Vista de Depuracion". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>&Project-Viewer</source> - <translation>Visor de &Proyecto</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>Alt+Shift+P</source> - <translation>Alt+Shift+P</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1490"/> - <source>Alt+Shift+D</source> - <translation>Alt+Shift+D</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>&Shell</source> - <translation>&Shell</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>Alt+Shift+S</source> - <translation>Alt+Shift+S</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> - <source>Alt+Shift+F</source> - <translation>Alt+Shift+F</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1541"/> - <source>Alt+Shift+G</source> - <translation>Alt+Shift+G</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1559"/> - <source>Alt+Shift+T</source> - <translation>Alt+Shift+T</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>What's This?</source> <translation>¿Qué es esto?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>&What's This?</source> <translation>¿&Qué es esto?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752"/> + <location filename="../UI/UserInterface.py" line="1726"/> <source>Context sensitive help</source> <translation>Ayuda sensible al contexto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1753"/> + <location filename="../UI/UserInterface.py" line="1727"/> <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>Mostrar ayuda sensible al contexto</b><p>En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>Helpviewer</source> <translation>Visor de Ayuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>&Helpviewer...</source> <translation>Visor de &Ayuda...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>F1</source> <translation>F1</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1745"/> + <source>Open the helpviewer window</source> + <translation>Abrir la ventana del visor de ayuda</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show Versions</source> + <translation>Mostrar Versiones</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show &Versions</source> + <translation>Mostrar Versione&s</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1771"/> - <source>Open the helpviewer window</source> - <translation>Abrir la ventana del visor de ayuda</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show Versions</source> - <translation>Mostrar Versiones</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show &Versions</source> - <translation>Mostrar Versione&s</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1797"/> <source>Display version information</source> <translation>Mostrar información de versiones</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1799"/> + <location filename="../UI/UserInterface.py" line="1773"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Mostrar Versiones</b><p>Muestra información de versiones.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1809"/> + <location filename="../UI/UserInterface.py" line="1783"/> <source>Check for Updates</source> <translation>Buscar actualizaciones</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806"/> + <location filename="../UI/UserInterface.py" line="1780"/> <source>Check for &Updates...</source> <translation>Buscar act&ualizaciones...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show downloadable versions</source> <translation>Mostrar versiones descargables</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show &downloadable versions...</source> <translation>Mostrar versiones &descargables...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1821"/> + <location filename="../UI/UserInterface.py" line="1795"/> <source>Show the versions available for download</source> <translation>Mostrar las versiones disponibles para descarga</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Report Bug</source> <translation>Enviar informe de bugs</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1844"/> + <location filename="../UI/UserInterface.py" line="1818"/> <source>Report &Bug...</source> <translation>Enviar informe de &bugs...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848"/> + <location filename="../UI/UserInterface.py" line="1822"/> <source>Report a bug</source> <translation>Enviar informe de bugs</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1849"/> + <location filename="../UI/UserInterface.py" line="1823"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation><b>Enviar informe de Bugs...</b><p>Abre un diálogo para enviar un informe de un error (bug).</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2883"/> + <location filename="../UI/UserInterface.py" line="2858"/> <source>Unittest</source> <translation>Test Unitario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1845"/> <source>&Unittest...</source> <translation>Te&st Unitario...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1850"/> <source>Start unittest dialog</source> <translation>Ejecutar diálogo de tests unitarios</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1877"/> + <location filename="../UI/UserInterface.py" line="1851"/> <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 unitarios</b><p>Lleva a cabo tests unitarios. Este diálogo proporciona la capacidad de seleccionar y ejecutar una suite de tests unitarios.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>Unittest Restart</source> <translation>Ejecutar de nuevo Test Unitario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>&Restart Unittest...</source> <translation>Ejecuta&r de nuevo Test Unitario...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1890"/> + <location filename="../UI/UserInterface.py" line="1864"/> <source>Restart last unittest</source> <translation>Ejecutar de nuevo el último test unitario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1891"/> + <location filename="../UI/UserInterface.py" line="1865"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>Ejecutar de nuevo Test Unitario</b><p>Vuelve a ejecutar el último test unitario que se ha ejecutado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest Script</source> <translation>Test Unitario de Script</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest &Script...</source> <translation>Test Unitario de &Script...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920"/> + <location filename="../UI/UserInterface.py" line="1894"/> <source>Run unittest with current script</source> <translation>Ejecutar test unitario con el script actual</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922"/> + <location filename="../UI/UserInterface.py" line="1896"/> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Test Unitario de Script</b><p>Ejecuta un test unitario con el script actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>Unittest Project</source> <translation>Test Unitario de Proyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1930"/> + <location filename="../UI/UserInterface.py" line="1904"/> <source>Unittest &Project...</source> <translation>Test Unitario de &Proyecto...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1909"/> <source>Run unittest with current project</source> <translation>Ejecutar test unitario con el proyecto actual</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1937"/> + <location filename="../UI/UserInterface.py" line="1911"/> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Test Unitario del Proyecto</b>Ejecuta un test unitario con el proyecto actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>UI Previewer</source> <translation>Previsualizador de UI</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>&UI Previewer...</source> <translation>Previsualizador de &UI...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003"/> + <location filename="../UI/UserInterface.py" line="1977"/> <source>Start the UI Previewer</source> <translation>Ejecutar el Previsualizador de UI</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004"/> + <location filename="../UI/UserInterface.py" line="1978"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation><b>Previsualizador de UI</b><p>Ejecuta el Previsualizador de UI.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>Translations Previewer</source> <translation>Previsualizador de Traducciones</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>&Translations Previewer...</source> <translation>Previsualizador de &Traducciones...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2016"/> + <location filename="../UI/UserInterface.py" line="1990"/> <source>Start the Translations Previewer</source> <translation>Ejecutar el Previsualizador de traducciones</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1992"/> + <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> + <translation><b>Previsualizador de traducciones<b><p>Ejecuta el Previsualizador de traducciones.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>Compare Files</source> + <translation>Comparar Archivos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>&Compare Files...</source> + <translation>&Comparar Archivos...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2017"/> + <source>Compare two files</source> + <translation>Comparar dos archivos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2005"/> + <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> + <translation><b>Comparar Archivos</b><p>Abre un diálogo para comparar dos archivos.</b></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2012"/> + <source>Compare Files side by side</source> + <translation>Comparar Archivos uno al lado de otro</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2018"/> - <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> - <translation><b>Previsualizador de traducciones<b><p>Ejecuta el Previsualizador de traducciones.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>Compare Files</source> - <translation>Comparar Archivos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>&Compare Files...</source> - <translation>&Comparar Archivos...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2043"/> - <source>Compare two files</source> - <translation>Comparar dos archivos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2031"/> - <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> - <translation><b>Comparar Archivos</b><p>Abre un diálogo para comparar dos archivos.</b></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2038"/> - <source>Compare Files side by side</source> - <translation>Comparar Archivos uno al lado de otro</translation> + <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>Comparar Archivos uno al lado de otro</b><p>Abre un diálogo para comparar dos archivos y mostrar los resultados en paralelo.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2113"/> + <source>Preferences</source> + <translation>Preferencias</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2113"/> + <source>&Preferences...</source> + <translation>&Preferencias...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2118"/> + <source>Set the prefered configuration</source> + <translation>Establecer la configuración preferida</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2120"/> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation><b>Preferencias</b><p>Establecezca los elementos de configuración de la aplicación con sus valores preferidos.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2157"/> + <source>Reload APIs</source> + <translation>Recargar APIs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2157"/> + <source>Reload &APIs</source> + <translation>Recargar &APIs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2161"/> + <source>Reload the API information</source> + <translation>Recargar la información de API</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2163"/> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation><b>Recargar APIs</b><p>Recarga la información de API.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2175"/> + <source>Show external tools</source> + <translation>Mostrar herramientas externas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2170"/> + <source>Show external &tools</source> + <translation>Mostrar herramien&tas externas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2186"/> + <source>View Profiles</source> + <translation>Perfiles de Vista</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2186"/> + <source>&View Profiles...</source> + <translation>Perfiles de &Vista...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <source>Configure view profiles</source> + <translation>Configurar perfiles de vista</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2193"/> + <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>Perfiles de Vista</b><p>Configure los perfiles de vista. Con este diálogo puede establecer la visibilidad de las diversas ventanas para los perfiles de vista predeterminados.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2218"/> + <source>Keyboard Shortcuts</source> + <translation>Atajos de Teclado</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2218"/> + <source>Keyboard &Shortcuts...</source> + <translation>Atajo&s de Teclado...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2223"/> + <source>Set the keyboard shortcuts</source> + <translation>Establecer los atajos de teclado</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2225"/> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation><b>Atajos de Teclado</b><p>Establezca los atajos de teclado para la aplicación con sus valores preferidos.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5790"/> + <source>Export Keyboard Shortcuts</source> + <translation>Exportar Atajos de Teclado</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2233"/> + <source>&Export Keyboard Shortcuts...</source> + <translation>&Exportar Atajos de Teclado...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2238"/> + <source>Export the keyboard shortcuts</source> + <translation>Exportar los atajos de teclado</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2240"/> + <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> + <translation><b>Exportar Atajos de Teclado</b><p>Exporte los atajos de teclado de la aplicación.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5814"/> + <source>Import Keyboard Shortcuts</source> + <translation>Importar Atajos de Teclado</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2247"/> + <source>&Import Keyboard Shortcuts...</source> + <translation>&Importar Atajos de Teclado...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2252"/> + <source>Import the keyboard shortcuts</source> + <translation>Importar los atajos de teclado</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2254"/> + <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> + <translation><b>Importar Atajos de Teclado</b><p>Importe los atajos de teclado de la aplicación.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2312"/> + <source>Activate current editor</source> + <translation>Activar editor actual</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2312"/> + <source>Alt+Shift+E</source> + <translation>Alt+Shift+E</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2322"/> + <source>Ctrl+Alt+Tab</source> + <translation>Ctrl+Alt+Tab</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2331"/> + <source>Shift+Ctrl+Alt+Tab</source> + <translation>Shift+Ctrl+Alt+Tab</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>Plugin Infos</source> + <translation>Información sobre Plugins</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>&Plugin Infos...</source> + <translation>Información sobre &Plugins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2353"/> + <source>Show Plugin Infos</source> + <translation>Mostrar Información sobre Plugins</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2354"/> + <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> + <translation><b>Información sobre Plugins...</b><p>Abre un diálogo que muestra información sobre las extensiones (plugins) cargadas.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2380"/> + <source>Uninstall Plugin</source> + <translation>Desinstalar Plugin</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2375"/> + <source>&Uninstall Plugin...</source> + <translation>Desinstalar Pl&ugin...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2381"/> + <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> + <translation><b>Desinstalar Plugin...</b><p>Abre un diálogo para desinstalar una extensión o plugin.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2388"/> + <source>Plugin Repository</source> + <translation>Repositorio de Plugins</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2388"/> + <source>Plugin &Repository...</source> + <translation>&Repositorio de Plugins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2393"/> + <source>Show Plugins available for download</source> + <translation>Mostrar Plugins disponibles para descarga</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2395"/> + <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> + <translation><b>Repositorios de Plugins...</b><p>Abre un diálogo que muestra una lista de extensiones (plugins) disponibles en Internet.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2454"/> + <source>Qt4 Documentation</source> + <translation>Documentación de Qt4</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2454"/> + <source>Qt&4 Documentation</source> + <translation>Documentación de Qt&4</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2458"/> + <source>Open Qt4 Documentation</source> + <translation>Abrir Documentación de Qt4</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2486"/> + <source>PyQt4 Documentation</source> + <translation>Documentación de PyQt4</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2490"/> + <source>Open PyQt4 Documentation</source> + <translation>Abrir Documentación de PyQt4</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2570"/> + <source>Eric API Documentation</source> + <translation>Documentación de API de Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2570"/> + <source>&Eric API Documentation</source> + <translation>Documentación de API de &Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2574"/> + <source>Open Eric API Documentation</source> + <translation>Abrir Documentación de API de Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2665"/> + <source>&Unittest</source> + <translation>Te&st Unitario</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2682"/> + <source>E&xtras</source> + <translation>E&xtras</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2687"/> + <source>Wi&zards</source> + <translation>Asis&tentes</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2698"/> + <source>Select Tool Group</source> + <translation>Seleccionar Grupo de Herramientas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2706"/> + <source>Se&ttings</source> + <translation>Con&figuración</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2731"/> + <source>&Window</source> + <translation>Ven&tana</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2757"/> + <source>&Toolbars</source> + <translation>&Barra de Herramientas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768"/> + <source>P&lugins</source> + <translation>P&lugins</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782"/> + <source>&Help</source> + <translation>Ay&uda</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857"/> + <source>Tools</source> + <translation>Herramientas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2859"/> + <source>Settings</source> + <translation>Ajustes</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4638"/> + <source>Help</source> + <translation>Ayuda</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2861"/> + <source>Profiles</source> + <translation>Perfiles</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2862"/> + <source>Plugins</source> + <translation>Plugins</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3237"/> + <source><h3>Version Numbers</h3><table></source> + <translation><h3>Números de Versiones</h3><table></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6770"/> + <source></table></source> + <translation></table></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3292"/> + <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> + <translation>La dirección de correo electrónico o la dirección del servidor de correo están en blanco. Por favor configure las opciones de Correo Electrónico en el diálogo de Preferencias.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3651"/> + <source>Configure Tool Groups ...</source> + <translation>Configurar Grupos de Herramientas ...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3655"/> + <source>Configure current Tool Group ...</source> + <translation>Configurar Grupo de Herramientas actual ...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606"/> + <source>&Builtin Tools</source> + <translation>Herramientas de serie (&builtin)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3623"/> + <source>&Plugin Tools</source> + <translation>Herramientas de Extensión (&Plugin)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3771"/> + <source>&Show all</source> + <translation>&Ver todo</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3773"/> + <source>&Hide all</source> + <translation>&Ocultar todo</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4386"/> + <source>There is no main script defined for the current project. Aborting</source> + <translation>No hay script principal definido para el proyecto actual. Abortando</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4764"/> + <source>Problem</source> + <translation>Problema</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4953"/> + <source>Process Generation Error</source> + <translation>Error de Generación de Proceso</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4638"/> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation>No hay visor personalizado seleccionado actualmente. Por favor, especifique uno en el diálogo de preferencias.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4672"/> + <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> + <translation><p>No se ha podido ejecutar el visor de ayuda.<br>Asegúrese de que esta disponible como <b>hh</b>.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5450"/> + <source>Documentation Missing</source> + <translation>Falta documentación</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5433"/> + <source>Documentation</source> + <translation>Documentación</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5247"/> + <source><p>The PyQt4 documentation starting point has not been configured.</p></source> + <translation><P>El punto de entrada de documentación de PyQt4 no ha sido configurado.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5983"/> + <source>Save tasks</source> + <translation>Guardar tareas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6012"/> + <source>Read tasks</source> + <translation>Leer tareas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6373"/> + <source>Drop Error</source> + <translation>Error de volcado</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6732"/> + <source>Error during updates check</source> + <translation>Error durante la verificación de actualización</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6545"/> + <source>&Cancel</source> + <translation>&Cancelar</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6712"/> + <source>Update available</source> + <translation>Actualizaciones disponibles</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6732"/> + <source>Could not perform updates check.</source> + <translation>No se puede llevar a cabo la verificación de actualizaciones.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756"/> + <source><h3>Available versions</h3><table></source> + <translation><h3>Versiones disponibles</h3><table></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6807"/> + <source>First time usage</source> + <translation>Usado por primera vez</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2044"/> - <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>Comparar Archivos uno al lado de otro</b><p>Abre un diálogo para comparar dos archivos y mostrar los resultados en paralelo.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2139"/> - <source>Preferences</source> - <translation>Preferencias</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2139"/> - <source>&Preferences...</source> - <translation>&Preferencias...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2144"/> - <source>Set the prefered configuration</source> - <translation>Establecer la configuración preferida</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2146"/> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> - <translation><b>Preferencias</b><p>Establecezca los elementos de configuración de la aplicación con sus valores preferidos.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2183"/> - <source>Reload APIs</source> - <translation>Recargar APIs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2183"/> - <source>Reload &APIs</source> - <translation>Recargar &APIs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2187"/> - <source>Reload the API information</source> - <translation>Recargar la información de API</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2189"/> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> - <translation><b>Recargar APIs</b><p>Recarga la información de API.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2201"/> - <source>Show external tools</source> - <translation>Mostrar herramientas externas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2196"/> - <source>Show external &tools</source> - <translation>Mostrar herramien&tas externas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2212"/> - <source>View Profiles</source> - <translation>Perfiles de Vista</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2212"/> - <source>&View Profiles...</source> - <translation>Perfiles de &Vista...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2217"/> - <source>Configure view profiles</source> - <translation>Configurar perfiles de vista</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2219"/> - <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>Perfiles de Vista</b><p>Configure los perfiles de vista. Con este diálogo puede establecer la visibilidad de las diversas ventanas para los perfiles de vista predeterminados.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2244"/> - <source>Keyboard Shortcuts</source> - <translation>Atajos de Teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2244"/> - <source>Keyboard &Shortcuts...</source> - <translation>Atajo&s de Teclado...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2249"/> - <source>Set the keyboard shortcuts</source> - <translation>Establecer los atajos de teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2251"/> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation><b>Atajos de Teclado</b><p>Establezca los atajos de teclado para la aplicación con sus valores preferidos.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="5849"/> - <source>Export Keyboard Shortcuts</source> - <translation>Exportar Atajos de Teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2259"/> - <source>&Export Keyboard Shortcuts...</source> - <translation>&Exportar Atajos de Teclado...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2264"/> - <source>Export the keyboard shortcuts</source> - <translation>Exportar los atajos de teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2266"/> - <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> - <translation><b>Exportar Atajos de Teclado</b><p>Exporte los atajos de teclado de la aplicación.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="5873"/> - <source>Import Keyboard Shortcuts</source> - <translation>Importar Atajos de Teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2273"/> - <source>&Import Keyboard Shortcuts...</source> - <translation>&Importar Atajos de Teclado...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2278"/> - <source>Import the keyboard shortcuts</source> - <translation>Importar los atajos de teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2280"/> - <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> - <translation><b>Importar Atajos de Teclado</b><p>Importe los atajos de teclado de la aplicación.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2338"/> - <source>Activate current editor</source> - <translation>Activar editor actual</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2338"/> - <source>Alt+Shift+E</source> - <translation>Alt+Shift+E</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2348"/> - <source>Ctrl+Alt+Tab</source> - <translation>Ctrl+Alt+Tab</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2357"/> - <source>Shift+Ctrl+Alt+Tab</source> - <translation>Shift+Ctrl+Alt+Tab</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2375"/> - <source>Plugin Infos</source> - <translation>Información sobre Plugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2375"/> - <source>&Plugin Infos...</source> - <translation>Información sobre &Plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2379"/> - <source>Show Plugin Infos</source> - <translation>Mostrar Información sobre Plugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2380"/> - <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> - <translation><b>Información sobre Plugins...</b><p>Abre un diálogo que muestra información sobre las extensiones (plugins) cargadas.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2406"/> - <source>Uninstall Plugin</source> - <translation>Desinstalar Plugin</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2401"/> - <source>&Uninstall Plugin...</source> - <translation>Desinstalar Pl&ugin...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2407"/> - <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> - <translation><b>Desinstalar Plugin...</b><p>Abre un diálogo para desinstalar una extensión o plugin.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2414"/> - <source>Plugin Repository</source> - <translation>Repositorio de Plugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2414"/> - <source>Plugin &Repository...</source> - <translation>&Repositorio de Plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2419"/> - <source>Show Plugins available for download</source> - <translation>Mostrar Plugins disponibles para descarga</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2421"/> - <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> - <translation><b>Repositorios de Plugins...</b><p>Abre un diálogo que muestra una lista de extensiones (plugins) disponibles en Internet.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2480"/> - <source>Qt4 Documentation</source> - <translation>Documentación de Qt4</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2480"/> - <source>Qt&4 Documentation</source> - <translation>Documentación de Qt&4</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2484"/> - <source>Open Qt4 Documentation</source> - <translation>Abrir Documentación de Qt4</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512"/> - <source>PyQt4 Documentation</source> - <translation>Documentación de PyQt4</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2516"/> - <source>Open PyQt4 Documentation</source> - <translation>Abrir Documentación de PyQt4</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2596"/> - <source>Eric API Documentation</source> - <translation>Documentación de API de Eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2596"/> - <source>&Eric API Documentation</source> - <translation>Documentación de API de &Eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2600"/> - <source>Open Eric API Documentation</source> - <translation>Abrir Documentación de API de Eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2691"/> - <source>&Unittest</source> - <translation>Te&st Unitario</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2708"/> - <source>E&xtras</source> - <translation>E&xtras</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2713"/> - <source>Wi&zards</source> - <translation>Asis&tentes</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2724"/> - <source>Select Tool Group</source> - <translation>Seleccionar Grupo de Herramientas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2732"/> - <source>Se&ttings</source> - <translation>Con&figuración</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2757"/> - <source>&Window</source> - <translation>Ven&tana</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2782"/> - <source>&Toolbars</source> - <translation>&Barra de Herramientas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2793"/> - <source>P&lugins</source> - <translation>P&lugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2807"/> - <source>&Help</source> - <translation>Ay&uda</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2882"/> - <source>Tools</source> - <translation>Herramientas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2884"/> - <source>Settings</source> - <translation>Ajustes</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4697"/> - <source>Help</source> - <translation>Ayuda</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2886"/> - <source>Profiles</source> - <translation>Perfiles</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887"/> - <source>Plugins</source> - <translation>Plugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3262"/> - <source><h3>Version Numbers</h3><table></source> - <translation><h3>Números de Versiones</h3><table></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6829"/> - <source></table></source> - <translation></table></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3317"/> - <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> - <translation>La dirección de correo electrónico o la dirección del servidor de correo están en blanco. Por favor configure las opciones de Correo Electrónico en el diálogo de Preferencias.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3676"/> - <source>Configure Tool Groups ...</source> - <translation>Configurar Grupos de Herramientas ...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3680"/> - <source>Configure current Tool Group ...</source> - <translation>Configurar Grupo de Herramientas actual ...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3631"/> - <source>&Builtin Tools</source> - <translation>Herramientas de serie (&builtin)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3648"/> - <source>&Plugin Tools</source> - <translation>Herramientas de Extensión (&Plugin)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3796"/> - <source>&Show all</source> - <translation>&Ver todo</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3798"/> - <source>&Hide all</source> - <translation>&Ocultar todo</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4445"/> - <source>There is no main script defined for the current project. Aborting</source> - <translation>No hay script principal definido para el proyecto actual. Abortando</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4823"/> - <source>Problem</source> - <translation>Problema</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="5012"/> - <source>Process Generation Error</source> - <translation>Error de Generación de Proceso</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4697"/> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation>No hay visor personalizado seleccionado actualmente. Por favor, especifique uno en el diálogo de preferencias.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4731"/> - <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> - <translation><p>No se ha podido ejecutar el visor de ayuda.<br>Asegúrese de que esta disponible como <b>hh</b>.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="5509"/> - <source>Documentation Missing</source> - <translation>Falta documentación</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="5492"/> - <source>Documentation</source> - <translation>Documentación</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="5306"/> - <source><p>The PyQt4 documentation starting point has not been configured.</p></source> - <translation><P>El punto de entrada de documentación de PyQt4 no ha sido configurado.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6042"/> - <source>Save tasks</source> - <translation>Guardar tareas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6071"/> - <source>Read tasks</source> - <translation>Leer tareas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6432"/> - <source>Drop Error</source> - <translation>Error de volcado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6791"/> - <source>Error during updates check</source> - <translation>Error durante la verificación de actualización</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6604"/> - <source>&Cancel</source> - <translation>&Cancelar</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6771"/> - <source>Update available</source> - <translation>Actualizaciones disponibles</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6791"/> - <source>Could not perform updates check.</source> - <translation>No se puede llevar a cabo la verificación de actualizaciones.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6815"/> - <source><h3>Available versions</h3><table></source> - <translation><h3>Versiones disponibles</h3><table></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6866"/> - <source>First time usage</source> - <translation>Usado por primera vez</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2070"/> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2065"/> + <location filename="../UI/UserInterface.py" line="2039"/> <source>Mini &Editor...</source> <translation>Mini &Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2071"/> + <location filename="../UI/UserInterface.py" line="2045"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Editor</b><p>Abre un diálogo con un editor simple.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2393"/> + <location filename="../UI/UserInterface.py" line="2367"/> <source>Install Plugins</source> <translation>Instalar Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2388"/> + <location filename="../UI/UserInterface.py" line="2362"/> <source>&Install Plugins...</source> <translation>&Instalar Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2394"/> + <location filename="../UI/UserInterface.py" line="2368"/> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Instalar Plugins...</b><p>Abre un diálogo para instalar o actualizar extensiones (plugins).</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Toolbars</source> <translation>Barras de Herramientas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Tool&bars...</source> <translation>&Barras de Herramientas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2234"/> + <location filename="../UI/UserInterface.py" line="2208"/> <source>Configure toolbars</source> <translation>Configurar Barras de Herramientas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235"/> + <location filename="../UI/UserInterface.py" line="2209"/> <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>Barras de Herramientas</b><p>Configure las barras de herramientas. Con este diálogo puede cambiar las accines mostradas en las diversas barras de herramientas, y definir sus propias barras de herramientas.</p></translation> </message> @@ -75106,491 +75106,491 @@ <translation>Restaurando Gestor de Barras de Herramientas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>External Tools</source> <translation>Herramientas Externas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>Multiproject-Viewer</source> <translation>Visor de Multiproyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>&Multiproject-Viewer</source> <translation>Visor de &Multiproyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6168"/> + <location filename="../UI/UserInterface.py" line="6109"/> <source>Save session</source> <translation>Guardar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source>Read session</source> <translation>Cargar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3058"/> + <location filename="../UI/UserInterface.py" line="3033"/> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation><p>Esta zona de la barra de estado muestra la codificación del editor actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3072"/> + <location filename="../UI/UserInterface.py" line="3047"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Esta zona de la barra de estado muestra una indicación de las propiedades de escritura de los archivos del editor.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request Feature</source> <translation>Solicitar nueva característica</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request &Feature...</source> <translation>Solicitar nueva &característica...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1860"/> + <location filename="../UI/UserInterface.py" line="1834"/> <source>Send a feature request</source> <translation>Enviar una solicitud de nueva característica</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1862"/> + <location filename="../UI/UserInterface.py" line="1836"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation><b>Solicitar nueva Característica...</b><p>Abre un diálogo para enviar una solicitud de nueva característica.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3051"/> + <location filename="../UI/UserInterface.py" line="3026"/> <source><p>This part of the status bar displays the current editors language.</p></source> <translation><p>Esta zona de la barra de estado muestra el lenguaje del editor actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3079"/> + <location filename="../UI/UserInterface.py" line="3054"/> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation><p>Esta zona de la barra de estado muestra el número de línea en el editor actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3086"/> + <location filename="../UI/UserInterface.py" line="3061"/> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Esta zona de la barra de estado muestra la posición del cursor en el editor actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>Horizontal Toolbox</source> <translation>Caja de Herramientas Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>&Horizontal Toolbox</source> <translation>Caja de Herramientas &Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1624"/> + <location filename="../UI/UserInterface.py" line="1598"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Conmutar la ventana de Caja de Herramientas Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1626"/> + <location filename="../UI/UserInterface.py" line="1600"/> <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>Conmutar la ventana de Caja de Herramientas Horizontal</b><p>Si la ventana de Caja de Herramientas Horizontal está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>Restart application</source> <translation>Reiniciar aplicación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>The application needs to be restarted. Do it now?</source> <translation>La aplicación necesita ser reiniciada. ¿Desea hacerlo ahora?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2802"/> + <location filename="../UI/UserInterface.py" line="2777"/> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3065"/> + <location filename="../UI/UserInterface.py" line="3040"/> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation><p>Esta zona de la barra de estado muestra la configuración actual de fin de línea (eol) para los editores.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Switch between tabs</source> <translation>Alternar entre pestañas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>Export Preferences</source> <translation>Exportar Preferencias</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>E&xport Preferences...</source> <translation>E&xportar Preferencias...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160"/> + <location filename="../UI/UserInterface.py" line="2134"/> <source>Export the current configuration</source> <translation>Exportar la configuración actual</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2162"/> + <location filename="../UI/UserInterface.py" line="2136"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation><b>Exportar Preferencias</b><p>Exportar la configuración actual a un archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>Import Preferences</source> <translation>Importar Preferencias</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>I&mport Preferences...</source> <translation>I&mportar Preferencias...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2174"/> + <location filename="../UI/UserInterface.py" line="2148"/> <source>Import a previously exported configuration</source> <translation>Importar una configuración previamente exportada</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176"/> + <location filename="../UI/UserInterface.py" line="2150"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation><b>Importar Preferencias</b><p>Importar una configuración previamente exportada.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Show next</source> <translation>Mostrar siguente</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Show previous</source> <translation>Mostrar anterior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>Left Sidebar</source> <translation>Barra Lateral a la Izquierda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>&Left Sidebar</source> <translation>Barra &Lateral a la Izquierda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1638"/> + <location filename="../UI/UserInterface.py" line="1612"/> <source>Toggle the left sidebar window</source> <translation>Conmutar la barra lateral a la izquierda</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1613"/> + <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>Conmutar la barra lateral a la izquierda</b><p>Si la barra lateral a la izquierda está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>Bottom Sidebar</source> + <translation>Barra Lateral Inferior</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>&Bottom Sidebar</source> + <translation>&Barra Lateral Inferior</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1639"/> - <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>Conmutar la barra lateral a la izquierda</b><p>Si la barra lateral a la izquierda está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>Bottom Sidebar</source> - <translation>Barra Lateral Inferior</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>&Bottom Sidebar</source> - <translation>&Barra Lateral Inferior</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1665"/> <source>Toggle the bottom sidebar window</source> <translation>Conmutar la barra lateral inferior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1667"/> + <location filename="../UI/UserInterface.py" line="1641"/> <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>Conmutar la barra lateral inferior</b><p>Si la barra lateral inferior está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>&Debug-Viewer</source> <translation>Visor &Depurador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL Browser</source> <translation>Navegador SQL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL &Browser...</source> <translation>&Navegador SQL...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2057"/> + <location filename="../UI/UserInterface.py" line="2031"/> <source>Browse a SQL database</source> <translation>Navegar una base de datos SQL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2058"/> + <location filename="../UI/UserInterface.py" line="2032"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>Navegador SQL</b><p>Navegar una base de datos SQL.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>Icon Editor</source> <translation>Editor de Iconos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>&Icon Editor...</source> <translation>Editor de &Iconos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt 3 support</source> <translation>Soporte para Qt 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>PySide Documentation</source> <translation>Documentación de PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>Py&Side Documentation</source> <translation>Documentación de Py&Side</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2622"/> + <location filename="../UI/UserInterface.py" line="2596"/> <source>Open PySide Documentation</source> <translation>Abrir Documentación de PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1325"/> + <location filename="../UI/UserInterface.py" line="1299"/> <source>{0} - Passive Mode</source> <translation>{0} - Modo Pasivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332"/> + <location filename="../UI/UserInterface.py" line="1306"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - Modo Pasivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1336"/> + <location filename="../UI/UserInterface.py" line="1310"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - Modo Pasivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3161"/> + <location filename="../UI/UserInterface.py" line="3136"/> <source>External Tools/{0}</source> <translation>Herramientas Externas/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>El archivo <b>{0}</b> no existe o tiene longitud nula. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4551"/> + <location filename="../UI/UserInterface.py" line="4492"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Designer.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4618"/> + <location filename="../UI/UserInterface.py" line="4559"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Linguist.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4610"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Assistant.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4711"/> + <location filename="../UI/UserInterface.py" line="4652"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el visor personalizado.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4779"/> + <location filename="../UI/UserInterface.py" line="4720"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el Previsualizador de UI.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4834"/> + <location filename="../UI/UserInterface.py" line="4775"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el Previsualizador de Traducciones.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4855"/> + <location filename="../UI/UserInterface.py" line="4796"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido iniciar el navegador SQL.<br>Asegúrese de que está disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4948"/> + <location filename="../UI/UserInterface.py" line="4889"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>No se ha encontrado la entrada para la herramienta externa '{0}' en el grupo de herramientas '{1}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>No toolgroup entry '{0}' found.</source> <translation>No se ha encontrado la entrada para el grupo de herramientas '{0}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4996"/> + <location filename="../UI/UserInterface.py" line="4937"/> <source>Starting process '{0} {1}'. </source> <translation>Comenzando proceso '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>No se ha podido ejecutar la entrada de herramienta <b>{0}</b>.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5088"/> + <location filename="../UI/UserInterface.py" line="5029"/> <source>Process '{0}' has exited. </source> <translation>El proceso '{0}' ha finalizado. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><P>El punto de entrada de documentación "<b>{0}</b>" no ha podido encontrarse.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de tareas <b>{0}</b> no pudo ser guardado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de tareas <b>{0}</b> no puede leerse.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6105"/> + <location filename="../UI/UserInterface.py" line="6046"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de sesión <b>{0}</b> no ha podido guardarse.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de sesión <b></b> no ha podido ser leído.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> no es un archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6613"/> + <location filename="../UI/UserInterface.py" line="6554"/> <source>Trying host {0}</source> <translation>Probando host {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="973"/> + <location filename="../UI/UserInterface.py" line="955"/> <source>Cooperation</source> <translation>Cooperación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1030"/> + <location filename="../UI/UserInterface.py" line="1004"/> <source>Symbols</source> <translation>Símbolos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1038"/> + <location filename="../UI/UserInterface.py" line="1012"/> <source>Numbers</source> <translation>Números</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1728"/> + <location filename="../UI/UserInterface.py" line="1702"/> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Archivo de atajos de teclado (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python 3 Documentation</source> <translation>Documentación de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python &3 Documentation</source> <translation>Documentación de Python &3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2532"/> <source>Open Python 3 Documentation</source> <translation>Abrir Documentación de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python 2 Documentation</source> <translation>Documentación de Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python &2 Documentation</source> <translation>Documentación de Python &2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2576"/> + <location filename="../UI/UserInterface.py" line="2550"/> <source>Open Python 2 Documentation</source> <translation>Abrir Documentación de Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2552"/> <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>Documentación de Python 2</b><p>Mostrar la documentación de Python 2. Si no se ha configurado un directorio con esta documentación, la ubicación de la documentación de Python 2 se asumirá en el directorio de documentación bajo la ubicación del ejecutable configurado de Python 2 en Windows, y en <i>/usr/share/doc/packages/python/html/python-docs-html</i> para Unix. Establezca el valor de la variable de entorno PYTHON2DOCDIR para sobreescribir estas opciones. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>Error getting versions information</source> <translation>Error al obtener información de versiones</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6670"/> + <location filename="../UI/UserInterface.py" line="6611"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>La información de versiones no se ha podido descargar. Póngase online por favor e inténtelo de nuevo.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Could not start a web browser</source> <translation>No se ha podido iniciar el navegador web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>La información de versiones no se ha podido descargar en los últimos 7 días. Póngase por favor online e inténtelo de nuevo.</translation> </message> @@ -75615,568 +75615,568 @@ <translation>Iniciando Depurador...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New Window</source> <translation>Nueva Ventana</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New &Window</source> <translation>Nueva &Ventana</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Unittest Rerun Failed</source> <translation>Re-ejecución de Test Unitatio Fallida</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Rerun Failed Tests...</source> <translation>Re-ejecutar Tests Fallidos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1904"/> + <location filename="../UI/UserInterface.py" line="1878"/> <source>Rerun failed tests of the last run</source> <translation>Re-ejecutar tests fallidos de la última ejecución</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1906"/> + <location filename="../UI/UserInterface.py" line="1880"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation><b>Re-ejecución Tests Fallidos</b><p>Re-ejecutar todos los tests que fallaron durante la última ejecución de test unitario.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare &Files side by side...</source> <translation>Comparar &Archivos uno al lado de otro...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>Snapshot</source> <translation>Captura de Pantalla</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>&Snapshot...</source> <translation>Captura de &Pantalla...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2129"/> + <location filename="../UI/UserInterface.py" line="2103"/> <source>Take snapshots of a screen region</source> <translation>Tomar capturas de una región de la pantalla</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2131"/> + <location filename="../UI/UserInterface.py" line="2105"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation><b>Captura de Pantalla</b><p>Abre un diálogo para tomar capturas de pantalla de una región de la pantalla.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4925"/> + <location filename="../UI/UserInterface.py" line="4866"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar la herramienta de Captura de Pantalla.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6885"/> + <location filename="../UI/UserInterface.py" line="6826"/> <source>Select Workspace Directory</source> <translation>Seleccionar Directorio para el Espacio de Trabajo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1595"/> + <location filename="../UI/UserInterface.py" line="1569"/> <source>Left Toolbox</source> <translation>Caja de herramientas de la Izquierda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1607"/> + <location filename="../UI/UserInterface.py" line="1581"/> <source>Right Toolbox</source> <translation>Caja de herramientas de la Derecha</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1461"/> + <location filename="../UI/UserInterface.py" line="1435"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Proyecto.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1463"/> + <location filename="../UI/UserInterface.py" line="1437"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation><b>Activar Visor de Proyectos</b><p>Cambia el foco de input a la ventana de Visor de Proyecto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1478"/> + <location filename="../UI/UserInterface.py" line="1452"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Multiproyecto.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1454"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation><b>Activar Visor de Multiproyecto</b><p>Cambia el foco de input a la ventana de Visor de Multiproyecto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1470"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Depuración.</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1472"/> + <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> + <translation><b>Activar Visor de Depuración</b><p>Cambia el foco de input a la ventana de Visor de Depuración.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1488"/> + <source>Switch the input focus to the Shell window.</source> + <translation>Cambiar el foco de input a la ventana de Shell.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1490"/> + <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> + <translation><b>Activar Shell</b><p>Cambia el foco de input a la ventana de Shell.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1498"/> - <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> - <translation><b>Activar Visor de Depuración</b><p>Cambia el foco de input a la ventana de Visor de Depuración.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1514"/> - <source>Switch the input focus to the Shell window.</source> - <translation>Cambiar el foco de input a la ventana de Shell.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1516"/> - <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> - <translation><b>Activar Shell</b><p>Cambia el foco de input a la ventana de Shell.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> <source>&File-Browser</source> <translation>Na&vegador de archivos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1530"/> + <location filename="../UI/UserInterface.py" line="1504"/> <source>Switch the input focus to the File-Browser window.</source> <translation>Cambiar el foco de input a la ventana de Navegador de Archivos.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1532"/> + <location filename="../UI/UserInterface.py" line="1506"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation><b>Activar Navegador de Archivos</b><p>Cambia el foco de input a la ventana de Navegador de Archivos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Lo&g-Viewer</source> <translation>Visor de Lo&g</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1547"/> + <location filename="../UI/UserInterface.py" line="1521"/> <source>Switch the input focus to the Log-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Log.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1523"/> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation><b>Activar Visor de Log</b><p>Cambia el foco de input a la ventana de Visor de Log.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>&Task-Viewer</source> + <translation>Visor de &Tareas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1539"/> + <source>Switch the input focus to the Task-Viewer window.</source> + <translation>Cambiar el foco de input a la ventana de Visor de Tareas.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Templ&ate-Viewer</source> + <translation>Visor de Pl&antillas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1557"/> + <source>Switch the input focus to the Template-Viewer window.</source> + <translation>Cambiar el foco de input a la ventana de Visor de Plantillas.</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1559"/> - <source>&Task-Viewer</source> - <translation>Visor de &Tareas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1565"/> - <source>Switch the input focus to the Task-Viewer window.</source> - <translation>Cambiar el foco de input a la ventana de Visor de Tareas.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Templ&ate-Viewer</source> - <translation>Visor de Pl&antillas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1583"/> - <source>Switch the input focus to the Template-Viewer window.</source> - <translation>Cambiar el foco de input a la ventana de Visor de Plantillas.</translation> + <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> + <translation><b>Activar Visor de Plantillas</b><p>Cambiar el foco de input a la ventana de Visor de Plantillas.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1569"/> + <source>&Left Toolbox</source> + <translation>Caja de herramientas de &la Izquierda</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1572"/> + <source>Toggle the Left Toolbox window</source> + <translation>Conmutar la ventana de Caja de Herramientas a la izquierda</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> + <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> + <translation><b>Conmutar la Caja de Herramientas de la izquierda</b><p>Si la ventana Caja de Herramientas de la izquierda está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1581"/> + <source>&Right Toolbox</source> + <translation>Caja de herramientas de la De&recha</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1585"/> - <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> - <translation><b>Activar Visor de Plantillas</b><p>Cambiar el foco de input a la ventana de Visor de Plantillas.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1595"/> - <source>&Left Toolbox</source> - <translation>Caja de herramientas de &la Izquierda</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1598"/> - <source>Toggle the Left Toolbox window</source> - <translation>Conmutar la ventana de Caja de Herramientas a la izquierda</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1599"/> - <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> - <translation><b>Conmutar la Caja de Herramientas de la izquierda</b><p>Si la ventana Caja de Herramientas de la izquierda está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1607"/> - <source>&Right Toolbox</source> - <translation>Caja de herramientas de la De&recha</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1611"/> <source>Toggle the Right Toolbox window</source> <translation>Conmutar la ventana de Caja de Herramientas a la derecha</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1612"/> + <location filename="../UI/UserInterface.py" line="1586"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Conmutar la Caja de Herramientas de la derecha</b><p>Si la ventana Caja de Herramientas de la derecha está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>Right Sidebar</source> <translation>Barra Lateral a la Derecha</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>&Right Sidebar</source> <translation>Ba&rra Lateral a la Derecha</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1651"/> + <location filename="../UI/UserInterface.py" line="1625"/> <source>Toggle the right sidebar window</source> <translation>Conmutar la ventana de barra lateral de la derecha</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1653"/> + <location filename="../UI/UserInterface.py" line="1627"/> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Conmutar la ventana de barra lateral de la derecha</b><p>Si la ventana de barra lateral a la derecha está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Cooperation-Viewer</source> <translation>Visor de Cooperación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Co&operation-Viewer</source> <translation>Visor de Co&operación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1681"/> + <location filename="../UI/UserInterface.py" line="1655"/> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Cooperación.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1683"/> + <location filename="../UI/UserInterface.py" line="1657"/> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation><b>Activar Visor de Cooperación</b><p>Cambia el foco de input a la ventana de Visor de Cooperación.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Symbols-Viewer</source> <translation>Visor de Símbolos</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>S&ymbols-Viewer</source> + <translation>Visor de S&ímbolos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1690"/> + <source>Switch the input focus to the Symbols-Viewer window.</source> + <translation>Cambiar el foco de input a la ventana de Visor de Símbolos.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1692"/> + <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> + <translation><b>Activar Visor de Símbolos</b><p>Cambia el foco de input a la ventana de Visor de Símbolos.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Numbers-Viewer</source> + <translation>Visor de Números</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Num&bers-Viewer</source> + <translation>Visor de Nú&meros</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1708"/> + <source>Switch the input focus to the Numbers-Viewer window.</source> + <translation>Cambiar el foco de input a la ventana de Visor de Números.</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1710"/> - <source>S&ymbols-Viewer</source> - <translation>Visor de S&ímbolos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1716"/> - <source>Switch the input focus to the Symbols-Viewer window.</source> - <translation>Cambiar el foco de input a la ventana de Visor de Símbolos.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1718"/> - <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> - <translation><b>Activar Visor de Símbolos</b><p>Cambia el foco de input a la ventana de Visor de Símbolos.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Numbers-Viewer</source> - <translation>Visor de Números</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Num&bers-Viewer</source> - <translation>Visor de Nú&meros</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1734"/> - <source>Switch the input focus to the Numbers-Viewer window.</source> - <translation>Cambiar el foco de input a la ventana de Visor de Números.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1736"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation><b>Activar Visor de Números</b><p>Cambia el foco de input a la ventana de Visor de Números.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2762"/> + <location filename="../UI/UserInterface.py" line="2736"/> <source>&Windows</source> <translation>&Ventanas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1567"/> + <location filename="../UI/UserInterface.py" line="1541"/> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation><b>Activar Visor de Tareas</b><p>Cambia el foco de input a la ventana de Visor de Tareas.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>IRC</source> <translation>IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>&IRC</source> <translation>&IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>Meta+Shift+I</source> <translation>Meta+Shift+I</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1699"/> + <location filename="../UI/UserInterface.py" line="1673"/> <source>Switch the input focus to the IRC window.</source> <translation>Cambiar el foco de input a la ventana de IRC.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1701"/> + <location filename="../UI/UserInterface.py" line="1675"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation><b>Activar IRC</b><p>Cambia el foco de input a la ventana de IRC.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-Designer</source> + <translation>Qt Designer</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-&Designer...</source> + <translation>Qt-&Designer...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1936"/> + <source>Start Qt-Designer</source> + <translation>Iniciar Qt-Designer</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1937"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation><b>Qt-Designer</b><p>Ejecutar Qt-Designer.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-Designer</source> - <translation>Qt Designer</translation> + <source>Qt-Linguist</source> + <translation>Qt-Linguist</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-&Designer...</source> - <translation>Qt-&Designer...</translation> + <source>Qt-&Linguist...</source> + <translation>Qt-&Linguist...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1962"/> - <source>Start Qt-Designer</source> - <translation>Iniciar Qt-Designer</translation> + <source>Start Qt-Linguist</source> + <translation>Iniciar Qt Linguist</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1963"/> - <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> - <translation><b>Qt-Designer</b><p>Ejecutar Qt-Designer.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-Linguist</source> - <translation>Qt-Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-&Linguist...</source> - <translation>Qt-&Linguist...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1988"/> - <source>Start Qt-Linguist</source> - <translation>Iniciar Qt Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1989"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation><b>Qt-Linguist</b><p>Iniciar Qt-Linguist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt5 Documentation</source> <translation>Documentación de Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt&5 Documentation</source> <translation>Documentación de Qt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2499"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open Qt5 Documentation</source> <translation>Abrir Documentación de Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3097"/> + <location filename="../UI/UserInterface.py" line="3072"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation><p>Esta zona de la barra de estado permite hacer zoom sobre el editor, shell o terminal actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates</source> <translation>Gestionar Certificados SSL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates...</source> <translation>Gestionar Certificados SSL...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293"/> + <location filename="../UI/UserInterface.py" line="2267"/> <source>Manage the saved SSL certificates</source> <translation>Gestionar los certificados SSL guardados</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295"/> + <location filename="../UI/UserInterface.py" line="2269"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation><b>Gestionar Certificados SSL...</b><p>Abre un diálogo para gestionar los certificados SSL guardados.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters</source> <translation>Editar Filtros de Mensajes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters...</source> <translation>Editar Filtros de Mensajes...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2283"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation>Editar los filtros de mensajes utilizados para suprimir mensajes no deseados</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311"/> + <location filename="../UI/UserInterface.py" line="2285"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation><b>Editar Filtros de Mensajes</b><p>Abre un diálogo para editar los filtros de mensajes utilizados para suprimir mensajes no deseados y que no se muestren en la ventana de error.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt&4 Documentation</source> <translation>Documentación de PyQt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt5 Documentation</source> <translation>Documentación de PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt&5 Documentation</source> <translation>Documentación de PyQt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2509"/> <source>Open PyQt5 Documentation</source> <translation>Abrir Documentación de PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5313"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PyQt5 no ha sido configurado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2560"/> + <location filename="../UI/UserInterface.py" line="2534"/> <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>Documentación de Python 3</b><p>Mostrar la documentación de Python 3. Si no se ha configurado un directorio con lesta documentación, la ubicación de la documentación de Python 3 se asumirá en el directorio de documentación bajo la ubicación del ejecutable de Python 3 en Windows, y en <i>/usr/share/doc/packages/python/html</i> para Unix. Establezca el valor de la variable de entorno PYTHON3DOCDIR para sobreescribir estas opciones. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836"/> - <source>Show Error Log</source> - <translation>Mostrar Registro de Errores</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1832"/> - <source>Show Error &Log...</source> - <translation>Mostrar &Registro de Errores...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1837"/> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation><b>Mostrar registro de errores...</b><p>Abre un diálogo mostrando el registro más reciente de errores.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6608"/> - <source>Version Check</source> - <translation>Verificación de Versión</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1408"/> - <source>Open a new eric6 instance</source> - <translation>Abre una nueva instancia de eric6</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1410"/> - <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> - <translation><b>Nueva Ventana</b><p>Abre una nueva instancia del IDE eric6.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1773"/> - <source><b>Helpviewer</b><p>Display the eric6 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>Visor de ayuda</b><p>Mostrar el navegador web de eric6. Esta ventana mostrará archivos de ayuda HTML y ayuda de las colecciones de ayuda de Qt. Tiene la capacidad de navegar a hiperenlaces, establecer marcadores, imprimir la ayuda visualizada y algunas otras características.</p><p>Si se invoca con una palabra seleccionada, esta palabra se busca en la colección de ayuda de Qt.</p></translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="1810"/> + <source>Show Error Log</source> + <translation>Mostrar Registro de Errores</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1806"/> + <source>Show Error &Log...</source> + <translation>Mostrar &Registro de Errores...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1811"/> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation><b>Mostrar registro de errores...</b><p>Abre un diálogo mostrando el registro más reciente de errores.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6549"/> + <source>Version Check</source> + <translation>Verificación de Versión</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1382"/> + <source>Open a new eric6 instance</source> + <translation>Abre una nueva instancia de eric6</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1384"/> + <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> + <translation><b>Nueva Ventana</b><p>Abre una nueva instancia del IDE eric6.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1747"/> + <source><b>Helpviewer</b><p>Display the eric6 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>Visor de ayuda</b><p>Mostrar el navegador web de eric6. Esta ventana mostrará archivos de ayuda HTML y ayuda de las colecciones de ayuda de Qt. Tiene la capacidad de navegar a hiperenlaces, establecer marcadores, imprimir la ayuda visualizada y algunas otras características.</p><p>Si se invoca con una palabra seleccionada, esta palabra se busca en la colección de ayuda de Qt.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1784"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> <translation><b>Buscar actualizaciones...</b><p>Busca actualizaciones de eric6 en internet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823"/> + <location filename="../UI/UserInterface.py" line="1797"/> <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> <translation><b>Mostrar versiones descargables...</b><p>Muestra las versiones de eric6 disponibles para descarga de internet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 Web Browser</source> <translation>Navegador Web de eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 &Web Browser...</source> <translation>Navegador &Web de eric6...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2099"/> + <location filename="../UI/UserInterface.py" line="2073"/> <source>Start the eric6 Web Browser</source> <translation>Iniciar el Navegador Web de eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2075"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation><b>Navegador Web de eric6</b><p>Navegar por Internet con el Navegador Web de eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2115"/> + <location filename="../UI/UserInterface.py" line="2089"/> <source>Start the eric6 Icon Editor</source> <translation>Iniciar el Editor de Iconos de eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2117"/> + <location filename="../UI/UserInterface.py" line="2091"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation><b>Editor de Iconos</b><p>Inicia el Editor de Iconos de eric6 para editar iconos sencillos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2203"/> + <location filename="../UI/UserInterface.py" line="2177"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> <translation><b>Mostrar herramientas externas</b><p>Abre un diálogo para mostrar la ruta y versiones de todas las herramientas externas que utiliza eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2602"/> + <location filename="../UI/UserInterface.py" line="2576"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.</p></source> <translation><b>Documentación de API de Eric</b><p>Muestra la documentación de API de Eric. La ubicación de la documentación es el subdirectorio Documentation/Source del directorio de instalación de eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt v.3 no está soportado por eric6.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>La actualización para <b>{0}</b> de eric6 está disponible en <b>{1}</b>. ¿Le gustaría obtenerla?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>Eric6 is up to date</source> <translation>Eric6 está actualizado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>You are using the latest version of eric6</source> <translation>Está utilizando la última versión de eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>Eric6 todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation> </message> @@ -76186,87 +76186,87 @@ <translation>Generando Barras de Herramientas para Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3651"/> + <location filename="../UI/UserInterface.py" line="3626"/> <source>&User Tools</source> <translation>Herramientas de &Usuario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3723"/> + <location filename="../UI/UserInterface.py" line="3698"/> <source>No User Tools Configured</source> <translation>No se han Configurado Herramientas de Usuario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6624"/> + <location filename="../UI/UserInterface.py" line="6565"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>La información de versiones no se puede descargar porque está <b>sin línea</b>. Por favor, póngase en línea e inténtelo de nuevo.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>Hex Editor</source> <translation>Editor Hexadecimal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>&Hex Editor...</source> <translation>Editor &Hexadecimal...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2083"/> + <location filename="../UI/UserInterface.py" line="2057"/> <source>Start the eric6 Hex Editor</source> <translation>Iniciar el Editor Hexadecimal de eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2085"/> + <location filename="../UI/UserInterface.py" line="2059"/> <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> <translation><b>Editor Hexadecimal</b><p>Inicia el Editor Hexadecimal de eric6 para visionado o edición de archivos binarios.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327"/> + <location filename="../UI/UserInterface.py" line="2301"/> <source>Clear private data</source> <translation>Limpiar Datos Privados</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2303"/> <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> <translation><b>Limpiar datos privados</b><p>Limpia los datos privados como las listas de archivos recientes, proyectos o multiproyectos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1376"/> + <location filename="../UI/UserInterface.py" line="1350"/> <source>Save session...</source> <translation>Guardar sesión...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1381"/> + <location filename="../UI/UserInterface.py" line="1355"/> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation><b>Guardar sesión...</b><p>Guarda la sesión actual a disco. Se muestra un diálogo para seleccionar el nombre de archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>Load session</source> <translation>Cargar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1389"/> + <location filename="../UI/UserInterface.py" line="1363"/> <source>Load session...</source> <translation>Cargar sesión...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1394"/> + <location filename="../UI/UserInterface.py" line="1368"/> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation><b>Cargar sesión...</b><p>Carga una sesión guardada en disco anteriormente. Se muestra un diálogo para seleccionar el nombre de archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>eric6 Session Files (*.e5s)</source> <translation>Archivos de Sesión de eric6 (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>Crash Session found!</source> <translation>¡Se ha hallado una sesión perdida!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Se ha encontrado un archivo de sesió para una sesión perdida. ¿Desea restaurar esta sesión?</translation> </message> @@ -76281,102 +76281,102 @@ <translation>Inicializando Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>Update Check</source> <translation>Comprobación Actualización</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation>Ha instalado eric directamente a partir del código fuente. No es posible comprobar la disponibilidad de una actuación.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6690"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation>Ésta es una snapshot release the eric6. Una release estable más reciente podría estar disponible.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="953"/> + <location filename="../UI/UserInterface.py" line="938"/> <source>Code Documentation Viewer</source> <translation>Visor de Documentación de Código</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2485"/> + <location filename="../UI/UserInterface.py" line="2459"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentación de Qt4</b><p>Muestra la Documentación de Qt4. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2500"/> + <location filename="../UI/UserInterface.py" line="2474"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentación de Qt5</b><p>Muestra la Documentación de Qt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2517"/> + <location filename="../UI/UserInterface.py" line="2491"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentación de PyQt4</b><p>Muestra la Documentación de PyQt4. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentación de PyQt5</b><p>Muestra la Documentación de PyQt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2624"/> + <location filename="../UI/UserInterface.py" line="2598"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentación de PySide</b><p>Muestra la Documentación de PySide. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide2 Documentation</source> <translation>Documentación de PySide2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide&2 Documentation</source> <translation>Documentación de PySide&2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2643"/> + <location filename="../UI/UserInterface.py" line="2617"/> <source>Open PySide2 Documentation</source> <translation>Abrir Documentación de PySide2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2645"/> + <location filename="../UI/UserInterface.py" line="2619"/> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentación de PySide2</b><p>Muestra la Documentación de PySide2. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PySide{0} no ha sido configurado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2409"/> <source>Virtualenv Manager</source> <translation>Gestor de Virtualenv</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2403"/> <source>&Virtualenv Manager...</source> <translation>Gestor de &Virtualenv...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2437"/> + <location filename="../UI/UserInterface.py" line="2411"/> <source><b>Virtualenv Manager</b><p>This opens a dialog to manage the defined Python virtual environments.</p></source> <translation><b>Gestor de Virtualenv</b><p>Abre un diálogo para gestionar los entornos virtuales Python definidos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2426"/> <source>Virtualenv Configurator</source> <translation>Configurador de Virtualenv</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Virtualenv &Configurator...</source> <translation>Configurador de &Virtualenv...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2454"/> + <location filename="../UI/UserInterface.py" line="2428"/> <source><b>Virtualenv Configurator</b><p>This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.</p></source> <translation><b>Configurador de Virtualenv</b><p>Abre un diálogo para introducir todos los parámetros necesarios para crear un entorno virtual de Python utilizando virtualenv o pyvenv.</p></translation> </message>
--- a/i18n/eric6_fr.ts Sun Jul 08 17:33:25 2018 +0200 +++ b/i18n/eric6_fr.ts Sun Jul 08 18:55:21 2018 +0200 @@ -5707,267 +5707,267 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1827"/> + <location filename="../Debugger/DebugUI.py" line="1825"/> <source>Run Script</source> <translation>Lancer le script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="178"/> + <location filename="../Debugger/DebugUI.py" line="176"/> <source>&Run Script...</source> <translation>&Lancer le script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="183"/> + <location filename="../Debugger/DebugUI.py" line="181"/> <source>Run the current Script</source> <translation>Lance le script courant</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="184"/> + <location filename="../Debugger/DebugUI.py" line="182"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Lancer le script</b><p>Entrer les arguments de la ligne de commande et lancer le script sans le débogueur. Si le script a des modifications, elles doivent d'abord être enregistrées.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>Run Project</source> <translation>Lancer le projet</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="193"/> + <location filename="../Debugger/DebugUI.py" line="191"/> <source>Run &Project...</source> <translation>Lancer &projet...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="198"/> + <location filename="../Debugger/DebugUI.py" line="196"/> <source>Run the current Project</source> <translation>Lance le projet courant</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="199"/> + <location filename="../Debugger/DebugUI.py" line="197"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Lancer le projet</b><p>Entrer les arguments de la ligne de commande et lancer le projet sans le débogueur. Si des fichiers du projet on été modifiés ils doivent d'abord être enregistrées.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script</source> <translation>Lancer le script en mode Coverage</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script...</source> <translation>Lancer le script en mode Coverage...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="212"/> + <source>Perform a coverage run of the current Script</source> + <translation>Lance le script courant en mode Coverage</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="214"/> - <source>Perform a coverage run of the current Script</source> - <translation>Lance le script courant en mode Coverage</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="216"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Lancement du script en mode Coverage</b><p>Indiquer les paramètres de la ligne de commande et lancer le script en exploitant les outils d'analyse 'Coverage'. Si le fichier a été modifié, il doit être sauvé avant.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project</source> <translation>Lancer le projet en mode Coverage</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project...</source> <translation>Lancer le projet en mode Coverage...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="228"/> + <source>Perform a coverage run of the current Project</source> + <translation>Lance le projet courant en mode coverage</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="230"/> - <source>Perform a coverage run of the current Project</source> - <translation>Lance le projet courant en mode coverage</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="232"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Lancement du projet en mode Coverage</b><p>Indiquer les paramètres de la ligne de commande et lancer le projet courant en exploitant les outils d'analyse 'Coverage'. Si des fichiers du projet ont été modifiés, ils doivent être sauvés avant.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script</source> <translation>Profiler le script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script...</source> <translation>Profiler le script....</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="246"/> + <location filename="../Debugger/DebugUI.py" line="244"/> <source>Profile the current Script</source> <translation>Profiler le script courant</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="247"/> + <location filename="../Debugger/DebugUI.py" line="245"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Profiler le script</b><p>Entrer les arguments de la ligne de commande et profiler le script. Si le script a subi des modifications, celles-ci doivent d'abord être enregistrées.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project</source> <translation>Profiler le projet</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project...</source> <translation>Profiler le projet...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="258"/> + <source>Profile the current Project</source> + <translation>Profile le projet courant</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="260"/> - <source>Profile the current Project</source> - <translation>Profile le projet courant</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="262"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Profiler le projet</b><p>Entrer les arguments de la ligne de commande et profiler le projet. Si des fichiers du projet ont été modifiés, ils doivent d'abord être enregistrés.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1962"/> + <location filename="../Debugger/DebugUI.py" line="1960"/> <source>Debug Script</source> <translation>Déboguer le script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="271"/> + <location filename="../Debugger/DebugUI.py" line="269"/> <source>&Debug Script...</source> <translation>&Déboguer le script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="276"/> + <location filename="../Debugger/DebugUI.py" line="274"/> <source>Debug the current Script</source> <translation>Débogue le script courant</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="277"/> + <location filename="../Debugger/DebugUI.py" line="275"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Deboguer le script</b><p>Entrer les arguments de la ligne de commande et donner la ligne qui correspond à la première instruction Python. Si le fichier a été modifié, il doit d'abord être sauvé.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>Debug Project</source> <translation>Déboguer le projet</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="287"/> + <location filename="../Debugger/DebugUI.py" line="285"/> <source>Debug &Project...</source> <translation>Déboguer le &Projet...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="290"/> + <source>Debug the current Project</source> + <translation>Déboguer le projet en cours</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="292"/> - <source>Debug the current Project</source> - <translation>Déboguer le projet en cours</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="294"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Deboguer le projet</b><p>Entrer les arguments de la ligne de commande et donner la ligne correspondant à la première instruction Python du script principal du projet en cours.Si des fichiers du projet ont été modifiés, ils doivent d'abord être sauvés.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="306"/> <source>Restart the last debugged script</source> <translation>Relance le dernier script débogué</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>Continue</source> <translation>Continuer</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>&Continue</source> <translation>&Continuer</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="338"/> + <source>Continue running the program from the current line</source> + <translation>Continuer le programme à partir de la ligne courante</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="340"/> - <source>Continue running the program from the current line</source> - <translation>Continuer le programme à partir de la ligne courante</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="342"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Continuer</b><p>Continue le programme à partir de la ligne courante. Le programme s'arrêtera à la fin si aucun point d'arrêt n'est rencontré.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Single Step</source> <translation>Instruction suivante (Single Step)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Sin&gle Step</source> <translation>Instruction &suivante (Single Step)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="392"/> + <location filename="../Debugger/DebugUI.py" line="390"/> <source>Execute a single Python statement</source> <translation>Execute une seule instruction Python</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="393"/> + <location filename="../Debugger/DebugUI.py" line="391"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>Un seul Pas</b><p>Execute une seule instruction Python. Si l'instruction est dans un <tt>import</tt> , un constructeur de classe, ou un appel à une méthode ou à une fonction, alors le contrôle est rendu au débogueur à l'instruction suivante.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step Over</source> <translation>Bloc d'instructions suivant (Step Over)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step &Over</source> <translation>&Bloc d'instructions suivant (Step Over)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="408"/> + <location filename="../Debugger/DebugUI.py" line="406"/> <source>Execute a single Python statement staying in the current frame</source> <translation>Execute une seule instruction Python en restant dans le même niveau d'instructions</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="411"/> + <location filename="../Debugger/DebugUI.py" line="409"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation><b>Bloc suivant</b><p>Execute une seule instruction Python en restant au même niveau (profondeur) d'instructions. Si l'instruction est dans un <tt>import</tt> , un constructeur de classe, ou un appel à une méthode ou à une fonction, alors le contrôle est rendu au débogueur quand l'instruction est terminée.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Out</source> <translation>Sortie du bloc (Step Out)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Ou&t</source> <translation>Sortie du bloc (Step &Out)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="427"/> + <location filename="../Debugger/DebugUI.py" line="425"/> <source>Execute Python statements until leaving the current frame</source> <translation>Débogue les instructions Python à partir de la sortie du bloc courant</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="430"/> + <location filename="../Debugger/DebugUI.py" line="428"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation><b>Sortie du Bloc (Step Out)</b><p>Débogue les instructions Python à partir de la sortie du bloc courant. Si les instructions sont dans un <tt>import</tt> , un constructeur de classe, ou dans une méthode ou une fonction, alors le contrôle est rendu au débogueur au début du bloc suivant.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>Stop</source> <translation>Arrêt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>&Stop</source> <translation>&Arrêt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="446"/> + <location filename="../Debugger/DebugUI.py" line="444"/> <source>Stop debugging</source> <translation>Arrêter le débogage</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="447"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Arrêt</b><p>Arrête le débogage courant.</p></translation> </message> @@ -6007,127 +6007,127 @@ <translation type="obsolete"><b>Execution</b><p>Execution d'une ligne d'instruction dans le contexte courant du programme débogué.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>Exceptions Filter</source> <translation>Filtre d'exceptions</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>&Exceptions Filter...</source> <translation>Filtre d'&exceptions...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="472"/> + <source>Configure exceptions filter</source> + <translation>Configuration du filtre d'exceptions</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="474"/> - <source>Configure exceptions filter</source> - <translation>Configuration du filtre d'exceptions</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="476"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>Filtre d'exceptions</b><p>Configuration du filtre d'exceptions. Seuls les types d'exceptions listés sont signalés pendant le débogage.</p><p>Notez que toutes les exceptions non prises en charge sont signalés, indépendamment de la liste de filtres.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="512"/> + <location filename="../Debugger/DebugUI.py" line="510"/> <source>Toggle Breakpoint</source> <translation>Placer/Supprimer un point d'arrêt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="513"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Placer/supprimer un point d'arrêt</b><p>Place ou enlève un point d'arrêt sur la ligne courante de l'éditeur en cours.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="527"/> + <location filename="../Debugger/DebugUI.py" line="525"/> <source>Edit Breakpoint</source> <translation>Edition Point d'arrêt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Edit Breakpoint...</source> <translation type="unfinished">Éditer le point d'arrêt...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="528"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>Edition Point d'arrêt</b><p>Edite les propriétés des points d'arrêt au travers d'une boite de dialogue. Ceci s'applique à la ligne courante de l'éditeur courant.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="543"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Next Breakpoint</source> <translation>Point d'arrêt suivant</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="542"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>Point d'arrêt suivant</b><p>Avance au point d'arrêt suivant dans l'éditeur courant.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="558"/> + <location filename="../Debugger/DebugUI.py" line="556"/> <source>Previous Breakpoint</source> <translation>Point d'arrêt précédent</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="557"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>Point d'arrêt précédent</b><p>Remonte au point d'arrêt précédent dans l'éditeur courant.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="572"/> + <location filename="../Debugger/DebugUI.py" line="570"/> <source>Clear Breakpoints</source> <translation>Suppression des point d'arrêts</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="573"/> + <location filename="../Debugger/DebugUI.py" line="571"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation><b>Suppression des points d'arrêts</b><p>Supprime les points d'arrêts de tous les éditeurs.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="603"/> + <location filename="../Debugger/DebugUI.py" line="601"/> <source>&Breakpoints</source> <translation>&Point d'arrêts</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1100"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Le programme débogué contient une erreur de syntaxe non identifiée.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1137"/> + <location filename="../Debugger/DebugUI.py" line="1135"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Une erreur imprévue est apparue. Regardez les détails dans la fenêtre shell.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1262"/> + <location filename="../Debugger/DebugUI.py" line="1260"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Le programme débogué s'est terminé de façon prématurée.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1576"/> + <location filename="../Debugger/DebugUI.py" line="1574"/> <source>Coverage of Project</source> <translation>Coverage du projet</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1563"/> + <location filename="../Debugger/DebugUI.py" line="1561"/> <source>Coverage of Script</source> <translation>Coverage du Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <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="../Debugger/DebugUI.py" line="1708"/> + <location filename="../Debugger/DebugUI.py" line="1706"/> <source>Profile of Project</source> <translation>Profil du projet</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1695"/> + <location filename="../Debugger/DebugUI.py" line="1693"/> <source>Profile of Script</source> <translation>Profil du Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>Il n'y a pas de script principal défini dans le projet en cours. Débogage impossible.</translation> </message> @@ -6142,90 +6142,90 @@ <translation type="obsolete">Entrer une instruction à exécuter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue to Cursor</source> <translation>Continuer jusqu'au curseur</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue &To Cursor</source> <translation>Continuer &jusqu'au curseur</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="356"/> + <location filename="../Debugger/DebugUI.py" line="354"/> <source>Continue running the program from the current line to the current cursor position</source> <translation>Continue le programme en cours de la ligne en cours jusqu'à la position du curseur</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="359"/> + <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>Continuer jusqu'au curseur</b><p>Continue le programme depuis la ligne courante jusqu'au curseur.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Variables Type Filter</source> <translation>Filtre sur les types de variables</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Varia&bles Type Filter...</source> <translation>Filtre sur les types de varia&bles...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="456"/> + <source>Configure variables type filter</source> + <translation>Configurer le filtre de variables</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="458"/> - <source>Configure variables type filter</source> - <translation>Configurer le filtre de variables</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="460"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation><b>Filtre de Variables</b><p>Configure le filtre de variables. Seuls les types de variables non sélectionnés sont affichés dans la fenêtre des variables globales (resp. locales) pendant la session de débogage.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source>Breakpoint Condition Error</source> <translation>Erreur de condition pour le point d'arrêt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation>Ctrl+Shift+PgDown</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="549"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation>Ctrl+Shift+PgUp</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="564"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation>Ctrl+Shift+C</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="597"/> + <source>&Debug</source> + <translation>&Débogage</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="599"/> - <source>&Debug</source> - <translation>&Débogage</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="601"/> <source>&Start</source> <translation>&Lancer</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="646"/> + <location filename="../Debugger/DebugUI.py" line="644"/> <source>Start</source> <translation>Lancer</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="660"/> + <location filename="../Debugger/DebugUI.py" line="658"/> <source>Debug</source> <translation>Débogage</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="325"/> + <location filename="../Debugger/DebugUI.py" line="323"/> <source>Stop the running script.</source> <translation>Arrête le run en cours.</translation> </message> @@ -6235,170 +6235,170 @@ <translation type="obsolete"><b>Evaluer</b><p>Evalue une expression dans le contexte courant du programme débogué. Le résultat est affiché dans la fenêtre Shell</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source>Watch Expression Error</source> <translation>Erreur dans l'expression</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1409"/> + <location filename="../Debugger/DebugUI.py" line="1407"/> <source>Watch expression already exists</source> <translation>L'expression existe déjà</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>Ignored Exceptions</source> <translation>Exceptions ignorées</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>&Ignored Exceptions...</source> <translation>Exceptions &ignorées...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="489"/> + <source>Configure ignored exceptions</source> + <translation>Configuration des exceptions ignorées</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="491"/> - <source>Configure ignored exceptions</source> - <translation>Configuration des exceptions ignorées</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="493"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>Exceptions ignorées</b><p>Configuration des exceptions ignorées. Seuls les types d'exception non listés seront indiqués pendant le débogage.</p><p>Les exceptions non gérées ne pourront pas être ignorées.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="506"/> + <location filename="../Debugger/DebugUI.py" line="504"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation type="unfinished">Shift+F11</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation type="unfinished">Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1119"/> + <location filename="../Debugger/DebugUI.py" line="1117"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1184"/> + <location filename="../Debugger/DebugUI.py" line="1182"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1199"/> + <location filename="../Debugger/DebugUI.py" line="1197"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1399"/> + <location filename="../Debugger/DebugUI.py" line="1397"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"><p>L'expression de contrôle '<b>{0}</b>' existe déjà.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1403"/> + <location filename="../Debugger/DebugUI.py" line="1401"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation type="unfinished"><p>L'expression de contrôle '<b>{0}</b>' pour la variable <b>{1}</b> existe déjà.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1069"/> + <location filename="../Debugger/DebugUI.py" line="1067"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="304"/> + <location filename="../Debugger/DebugUI.py" line="302"/> <source>Restart</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="310"/> + <location filename="../Debugger/DebugUI.py" line="308"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="326"/> + <location filename="../Debugger/DebugUI.py" line="324"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1248"/> + <location filename="../Debugger/DebugUI.py" line="1246"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> + <location filename="../Debugger/DebugUI.py" line="1034"/> <source><p>Message: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1040"/> <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1045"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1055"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>Message: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1060"/> <source>The program has terminated with an exit status of {0}. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1065"/> + <location filename="../Debugger/DebugUI.py" line="1063"/> <source>"{0}" has terminated with an exit status of {1}. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1074"/> + <location filename="../Debugger/DebugUI.py" line="1072"/> <source>The program has terminated with an exit status of {0}. {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1078"/> + <location filename="../Debugger/DebugUI.py" line="1076"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>Move Instruction Pointer to Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>&Jump To Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="372"/> + <location filename="../Debugger/DebugUI.py" line="370"/> <source>Skip the code from the current line to the current cursor position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="375"/> + <location filename="../Debugger/DebugUI.py" line="373"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation type="unfinished"></translation> </message> @@ -6406,52 +6406,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="../Debugger/DebugViewer.py" line="174"/> + <location filename="../Debugger/DebugViewer.py" line="145"/> <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="178"/> + <location filename="../Debugger/DebugViewer.py" line="149"/> <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="184"/> + <location filename="../Debugger/DebugViewer.py" line="155"/> <source>Set</source> <translation>Liste</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="159"/> + <location filename="../Debugger/DebugViewer.py" line="130"/> <source>Source</source> <translation>Source</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="261"/> + <location filename="../Debugger/DebugViewer.py" line="226"/> <source>Threads:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation type="unfinished">Nom</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="520"/> + <location filename="../Debugger/DebugViewer.py" line="457"/> <source>waiting at breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="522"/> + <location filename="../Debugger/DebugViewer.py" line="459"/> <source>running</source> <translation type="unfinished"></translation> </message> @@ -40774,7 +40774,7 @@ <context> <name>InterfacePage</name> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="226"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="205"/> <source>English</source> <comment>Translate this with your language</comment> <translation>Français</translation> @@ -40975,35 +40975,35 @@ <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="463"/> <source>Shell</source> - <translation>Shell</translation> + <translation type="obsolete">Shell</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="469"/> <source>Select to get a separate shell window</source> - <translation>Sélectionner pour avoir le shell dans une fenêtre séparée</translation> + <translation type="obsolete">Sélectionner pour avoir le shell dans une fenêtre séparée</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="501"/> <source>separate window</source> - <translation>fenêtre séparée</translation> + <translation type="obsolete">fenêtre séparée</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="492"/> <source>File-Browser</source> - <translation>Navigateur de fichiers</translation> + <translation type="obsolete">Navigateur de fichiers</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="498"/> <source>Select to get a separate file browser window</source> - <translation>Sélectionner pour avoir le navigateur de fichiers dans une fenêtre séparée</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="562"/> + <translation type="obsolete">Sélectionner pour avoir le navigateur de fichiers dans une fenêtre séparée</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="490"/> <source>Reset layout to factory defaults</source> <translation>Réinitialise avec les paramètres d'usine</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="244"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="223"/> <source>System</source> <translation>Système</translation> </message> @@ -41048,31 +41048,6 @@ <translation>Barres latérales</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="479"/> - <source>Select to embed the shell in the Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="511"/> - <source>embed in Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="508"/> - <source>Select to embed the file browser in the Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="518"/> - <source>Select to embed the file browser in the Project-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="521"/> - <source>embed in Project-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="63"/> <source>Select to sort file contents by occurrence</source> <translation type="unfinished"></translation> @@ -41083,12 +41058,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="533"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="461"/> <source>Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="539"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="467"/> <source>Show only one close button instead of one for each tab</source> <translation type="unfinished"></translation> </message> @@ -52681,42 +52656,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="../Project/ProjectBrowser.py" line="72"/> + <location filename="../Project/ProjectBrowser.py" line="66"/> <source>files added</source> <translation>fichiers ajoutés</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="73"/> + <location filename="../Project/ProjectBrowser.py" line="67"/> <source>local modifications</source> <translation>modifications locales</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="76"/> + <location filename="../Project/ProjectBrowser.py" line="70"/> <source>update required</source> <translation>mise à jour nécessaire</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="77"/> - <source>conflict</source> - <translation>conflit</translation> - </message> - <message> <location filename="../Project/ProjectBrowser.py" line="71"/> + <source>conflict</source> + <translation>conflit</translation> + </message> + <message> + <location filename="../Project/ProjectBrowser.py" line="65"/> <source>up to date</source> <translation>à jour</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="75"/> + <location filename="../Project/ProjectBrowser.py" line="69"/> <source>files replaced</source> <translation>fichiers remplacés</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="74"/> + <location filename="../Project/ProjectBrowser.py" line="68"/> <source>files removed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="434"/> + <location filename="../Project/ProjectBrowser.py" line="398"/> <source>unknown status</source> <translation type="unfinished"></translation> </message> @@ -75385,7 +75360,7 @@ <translation>Création de l'interface utilisateur...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Log-Viewer</source> <translation>Fenêtre de log</translation> </message> @@ -75420,197 +75395,197 @@ <translation>Initialisation des outils...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Quit</source> <translation>Quitter</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>&Quit</source> <translation>&Quitter</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1365"/> + <location filename="../UI/UserInterface.py" line="1339"/> <source>Quit the IDE</source> <translation>Quitter l'IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1366"/> + <location filename="../UI/UserInterface.py" line="1340"/> <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> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>What's This?</source> <translation>Qu'est-ce que c'est ?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>&What's This?</source> <translation>&Qu'est-ce que c'est?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752"/> + <location filename="../UI/UserInterface.py" line="1726"/> <source>Context sensitive help</source> <translation>Aide contextuelle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1753"/> + <location filename="../UI/UserInterface.py" line="1727"/> <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="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>Helpviewer</source> <translation>Visionneur d'aide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>&Helpviewer...</source> <translation>Visionneur d'&aide...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1745"/> + <source>Open the helpviewer window</source> + <translation>Ouvre le visualiseur d'aide</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show Versions</source> + <translation>Afficher les versions</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show &Versions</source> + <translation>Afficher les &versions</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1771"/> - <source>Open the helpviewer window</source> - <translation>Ouvre le visualiseur d'aide</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show Versions</source> - <translation>Afficher les versions</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show &Versions</source> - <translation>Afficher les &versions</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1797"/> <source>Display version information</source> <translation>Affiche les informations sur les versions</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1799"/> + <location filename="../UI/UserInterface.py" line="1773"/> <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="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Report Bug</source> <translation>Rapport de bogue</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1844"/> + <location filename="../UI/UserInterface.py" line="1818"/> <source>Report &Bug...</source> <translation>Rapport de &bogue...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848"/> + <location filename="../UI/UserInterface.py" line="1822"/> <source>Report a bug</source> <translation>Envoyer un rapport de bogue</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1849"/> + <location filename="../UI/UserInterface.py" line="1823"/> <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="2883"/> + <location filename="../UI/UserInterface.py" line="2858"/> <source>Unittest</source> <translation>Tests unitaires</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1845"/> <source>&Unittest...</source> <translation>&Tests unitaires...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1850"/> <source>Start unittest dialog</source> <translation>Ouvre la fenêtre Unitest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>Preferences</source> <translation>Préférences</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>&Preferences...</source> <translation>&Préférences...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144"/> + <location filename="../UI/UserInterface.py" line="2118"/> <source>Set the prefered configuration</source> <translation>Édition des préférences</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146"/> + <location filename="../UI/UserInterface.py" line="2120"/> <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="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard Shortcuts</source> <translation>Raccourcis clavier</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard &Shortcuts...</source> <translation>&Raccourcis claviers...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2249"/> + <location filename="../UI/UserInterface.py" line="2223"/> <source>Set the keyboard shortcuts</source> <translation>Définition des raccourcis clavier</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2225"/> <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="5849"/> + <location filename="../UI/UserInterface.py" line="5790"/> <source>Export Keyboard Shortcuts</source> <translation>Exporter les raccourcis clavier</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2233"/> <source>&Export Keyboard Shortcuts...</source> <translation>&Exporter les raccourcis claviers...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2238"/> <source>Export the keyboard shortcuts</source> <translation>Exporte les raccourcis claviers</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2240"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Import Keyboard Shortcuts</source> <translation>Importer des raccourcis clavier</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2273"/> + <location filename="../UI/UserInterface.py" line="2247"/> <source>&Import Keyboard Shortcuts...</source> <translation>&Importer des raccourcis clavier...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2278"/> + <location filename="../UI/UserInterface.py" line="2252"/> <source>Import the keyboard shortcuts</source> <translation>Importe des raccourcis clavier</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2280"/> + <location filename="../UI/UserInterface.py" line="2254"/> <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> <message> - <location filename="../UI/UserInterface.py" line="2708"/> + <location filename="../UI/UserInterface.py" line="2682"/> <source>E&xtras</source> <translation>E&xtras</translation> </message> @@ -75620,42 +75595,42 @@ <translation type="obsolete">&Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2757"/> + <location filename="../UI/UserInterface.py" line="2731"/> <source>&Window</source> <translation>&Fenêtre</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2807"/> - <source>&Help</source> - <translation>A&ide</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2882"/> - <source>Tools</source> - <translation>Outils</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4697"/> - <source>Help</source> - <translation>Aide</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2884"/> - <source>Settings</source> - <translation>Configuration</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2782"/> + <source>&Help</source> + <translation>A&ide</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857"/> + <source>Tools</source> + <translation>Outils</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4638"/> + <source>Help</source> + <translation>Aide</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2859"/> + <source>Settings</source> + <translation>Configuration</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2757"/> <source>&Toolbars</source> <translation>&Barres d'Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <source>Problem</source> <translation>Problème</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> @@ -75665,363 +75640,363 @@ <translation>Initialisation du serveur d'application...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1877"/> + <location filename="../UI/UserInterface.py" line="1851"/> <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="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>Unittest Restart</source> <translation>Relancer les tests unitaires</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>&Restart Unittest...</source> <translation>&Relancer les tests unitaires...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1890"/> + <location filename="../UI/UserInterface.py" line="1864"/> <source>Restart last unittest</source> <translation>Relancer le dernier test unitaire</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1891"/> + <location filename="../UI/UserInterface.py" line="1865"/> <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="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest Script</source> <translation>Script de tests unitaires</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest &Script...</source> <translation>&Script de tests unitaires...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920"/> + <location filename="../UI/UserInterface.py" line="1894"/> <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="1922"/> + <location filename="../UI/UserInterface.py" line="1896"/> <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="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>Unittest Project</source> <translation>Projet de tests unitaires</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1930"/> + <location filename="../UI/UserInterface.py" line="1904"/> <source>Unittest &Project...</source> <translation>&Projet de tests unitaires...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1909"/> <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="1937"/> + <location filename="../UI/UserInterface.py" line="1911"/> <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="2025"/> + <location filename="../UI/UserInterface.py" line="1999"/> <source>Compare Files</source> <translation>Comparaison de fichiers</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2025"/> + <location filename="../UI/UserInterface.py" line="1999"/> <source>&Compare Files...</source> <translation>&Comparaison de fichiers...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2043"/> + <location filename="../UI/UserInterface.py" line="2017"/> <source>Compare two files</source> <translation>Compare deux fichiers</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2031"/> + <location filename="../UI/UserInterface.py" line="2005"/> <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="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare Files side by side</source> <translation>Comparaison de fichiers côte à côte</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2044"/> + <location filename="../UI/UserInterface.py" line="2018"/> <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="2691"/> + <location filename="../UI/UserInterface.py" line="2665"/> <source>&Unittest</source> <translation>Tests &unitaires</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <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="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>File-Browser</source> <translation>Navigateur de fichiers</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1421"/> + <location filename="../UI/UserInterface.py" line="1395"/> <source>Edit Profile</source> <translation>Profil d'Edition</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1401"/> <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="1403"/> + <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="1412"/> + <source>Debug Profile</source> + <translation>Profil Débogage</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1418"/> + <source>Activate the debug view profile</source> + <translation>Active le profil Débogage</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1420"/> + <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="2186"/> + <source>View Profiles</source> + <translation>Profils de visualisation</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2186"/> + <source>&View Profiles...</source> + <translation>Profils de &Visualisation...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <source>Configure view profiles</source> + <translation>Configuration des profils de visualisation</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2193"/> + <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> + <message> + <location filename="../UI/UserInterface.py" line="1972"/> + <source>UI Previewer</source> + <translation>Visionneur d'UI</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1972"/> + <source>&UI Previewer...</source> + <translation>Visionneur d'&UI...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1977"/> + <source>Start the UI Previewer</source> + <translation>Démarre le Visionneur d'UI</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1978"/> + <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="1985"/> + <source>Translations Previewer</source> + <translation>Visionneur de traductions</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1985"/> + <source>&Translations Previewer...</source> + <translation>Visionneur de &Traductions...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1990"/> + <source>Start the Translations Previewer</source> + <translation>Démarre le visionneur de traductions</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1992"/> + <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> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>Shell</source> + <translation>Shell</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>&Shell</source> + <translation>&Shell</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2157"/> + <source>Reload APIs</source> + <translation>Recharger les APIs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2157"/> + <source>Reload &APIs</source> + <translation>Recharger les &APIs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2161"/> + <source>Reload the API information</source> + <translation>Recharger les informations des API</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2163"/> + <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="1533"/> + <source>Task-Viewer</source> + <translation>Visualisueur de tâches</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5983"/> + <source>Save tasks</source> + <translation>Enregistrement des tâches</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6012"/> + <source>Read tasks</source> + <translation>Lecture des tâches</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4638"/> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation>Aucun visualiseur personalisé n'est sélectionné. Prière d'en spécifier un dans les préférences.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5450"/> + <source>Documentation Missing</source> + <translation>Documentation Manquante</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3292"/> + <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="1551"/> + <source>Template-Viewer</source> + <translation>Gestionnaire de gabarits</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1429"/> - <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="1438"/> - <source>Debug Profile</source> - <translation>Profil Débogage</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1444"/> - <source>Activate the debug view profile</source> - <translation>Active le profil Débogage</translation> + <source>Alt+Shift+P</source> + <translation>Alt+Shift+P</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1464"/> + <source>Alt+Shift+D</source> + <translation>Alt+Shift+D</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>Alt+Shift+S</source> + <translation>Alt+Shift+S</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1498"/> + <source>Alt+Shift+F</source> + <translation>Alt+Shift+F</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>Alt+Shift+T</source> + <translation>Alt+Shift+T</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1446"/> - <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="2212"/> - <source>View Profiles</source> - <translation>Profils de visualisation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2212"/> - <source>&View Profiles...</source> - <translation>Profils de &Visualisation...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2217"/> - <source>Configure view profiles</source> - <translation>Configuration des profils de visualisation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2219"/> - <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> - <message> - <location filename="../UI/UserInterface.py" line="1998"/> - <source>UI Previewer</source> - <translation>Visionneur d'UI</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1998"/> - <source>&UI Previewer...</source> - <translation>Visionneur d'&UI...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2003"/> - <source>Start the UI Previewer</source> - <translation>Démarre le Visionneur d'UI</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2004"/> - <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="2011"/> - <source>Translations Previewer</source> - <translation>Visionneur de traductions</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2011"/> - <source>&Translations Previewer...</source> - <translation>Visionneur de &Traductions...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2016"/> - <source>Start the Translations Previewer</source> - <translation>Démarre le visionneur de traductions</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2018"/> - <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> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>Shell</source> - <translation>Shell</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>&Shell</source> - <translation>&Shell</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2183"/> - <source>Reload APIs</source> - <translation>Recharger les APIs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2183"/> - <source>Reload &APIs</source> - <translation>Recharger les &APIs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2187"/> - <source>Reload the API information</source> - <translation>Recharger les informations des API</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2189"/> - <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="1559"/> - <source>Task-Viewer</source> - <translation>Visualisueur de tâches</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6042"/> - <source>Save tasks</source> - <translation>Enregistrement des tâches</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6071"/> - <source>Read tasks</source> - <translation>Lecture des tâches</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4697"/> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation>Aucun visualiseur personalisé n'est sélectionné. Prière d'en spécifier un dans les préférences.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="5509"/> - <source>Documentation Missing</source> - <translation>Documentation Manquante</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3317"/> - <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="1577"/> - <source>Template-Viewer</source> - <translation>Gestionnaire de gabarits</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>Alt+Shift+P</source> - <translation>Alt+Shift+P</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1490"/> - <source>Alt+Shift+D</source> - <translation>Alt+Shift+D</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>Alt+Shift+S</source> - <translation>Alt+Shift+S</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> - <source>Alt+Shift+F</source> - <translation>Alt+Shift+F</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1559"/> - <source>Alt+Shift+T</source> - <translation>Alt+Shift+T</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Activate current editor</source> <translation>Activer l'éditeur courant</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt4 Documentation</source> <translation>Documentation Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt&4 Documentation</source> <translation>Documentation Qt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2484"/> + <location filename="../UI/UserInterface.py" line="2458"/> <source>Open Qt4 Documentation</source> <translation>Lance la Documentation Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596"/> + <location filename="../UI/UserInterface.py" line="2570"/> <source>Eric API Documentation</source> <translation>Documentation pour les API Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596"/> + <location filename="../UI/UserInterface.py" line="2570"/> <source>&Eric API Documentation</source> <translation>Documentation pour les API &Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600"/> + <location filename="../UI/UserInterface.py" line="2574"/> <source>Open Eric API Documentation</source> <translation>Ouvre la documentation sur les APIs Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4731"/> + <location filename="../UI/UserInterface.py" line="4672"/> <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> @@ -76031,148 +76006,148 @@ <translation>Enregistrement des objets...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>Project-Viewer</source> <translation>Gestionnaire de projet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Debug-Viewer</source> <translation>Gestionnaire de débogage</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>&Project-Viewer</source> <translation>Gestionnaire de &projet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1809"/> + <location filename="../UI/UserInterface.py" line="1783"/> <source>Check for Updates</source> <translation>Rechercher des mises à jour</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806"/> + <location filename="../UI/UserInterface.py" line="1780"/> <source>Check for &Updates...</source> <translation>Rechercher des &mises à jour...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt4 Documentation</source> <translation> Documentation PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2516"/> + <location filename="../UI/UserInterface.py" line="2490"/> <source>Open PyQt4 Documentation</source> <translation>Lance la documentation PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2724"/> + <location filename="../UI/UserInterface.py" line="2698"/> <source>Select Tool Group</source> <translation>Sélection d'un groupe d'outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2732"/> + <location filename="../UI/UserInterface.py" line="2706"/> <source>Se&ttings</source> <translation>&Configuration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2886"/> + <location filename="../UI/UserInterface.py" line="2861"/> <source>Profiles</source> <translation>Profils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3631"/> + <location filename="../UI/UserInterface.py" line="3606"/> <source>&Builtin Tools</source> <translation>Outils &internes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source>Documentation</source> <translation>Documentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5306"/> + <location filename="../UI/UserInterface.py" line="5247"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>L'emplacement de la documentation PyQt4 n'a pas été configuré.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Error during updates check</source> <translation>Erreur durant la recherche de mises à jour</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>Update available</source> <translation>Mise à jour disponible</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3262"/> + <location filename="../UI/UserInterface.py" line="3237"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Numéros de version</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6829"/> + <location filename="../UI/UserInterface.py" line="6770"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Open Browser</source> <translation type="unfinished">Ouverture du navigateur</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Could not start a web browser</source> <translation type="unfinished">Impossible de lancer le navigateur web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3676"/> + <location filename="../UI/UserInterface.py" line="3651"/> <source>Configure Tool Groups ...</source> <translation>Configuration des groupes d'outils...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3680"/> + <location filename="../UI/UserInterface.py" line="3655"/> <source>Configure current Tool Group ...</source> <translation>Configuration du groupe d'outils courant...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2201"/> + <location filename="../UI/UserInterface.py" line="2175"/> <source>Show external tools</source> <translation>Afficher les outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196"/> + <location filename="../UI/UserInterface.py" line="2170"/> <source>Show external &tools</source> <translation>Afficher les &outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>&Cancel</source> <translation>&Annuler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Could not perform updates check.</source> <translation>Impossible de vérifier les mises à jour.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>First time usage</source> <translation>Première utilisation</translation> </message> @@ -76182,52 +76157,52 @@ <translation>Initialisation du gestionnaire de plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2793"/> + <location filename="../UI/UserInterface.py" line="2768"/> <source>P&lugins</source> <translation>P&lugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2887"/> + <location filename="../UI/UserInterface.py" line="2862"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2375"/> + <location filename="../UI/UserInterface.py" line="2349"/> <source>Plugin Infos</source> <translation>Infos Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2379"/> + <location filename="../UI/UserInterface.py" line="2353"/> <source>Show Plugin Infos</source> <translation>Affiche les infos sur les plugins</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2354"/> + <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="2349"/> + <source>&Plugin Infos...</source> + <translation>Infos &Plugins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3623"/> + <source>&Plugin Tools</source> + <translation>Outils &plugins</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2380"/> - <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> + <source>Uninstall Plugin</source> + <translation>Désinstaller un plugin</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2375"/> - <source>&Plugin Infos...</source> - <translation>Infos &Plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3648"/> - <source>&Plugin Tools</source> - <translation>Outils &plugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2406"/> - <source>Uninstall Plugin</source> - <translation>Désinstaller un plugin</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2401"/> <source>&Uninstall Plugin...</source> <translation>&Désinstaller un plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2407"/> + <location filename="../UI/UserInterface.py" line="2381"/> <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> @@ -76237,107 +76212,107 @@ <translation>Activation des plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2713"/> + <location filename="../UI/UserInterface.py" line="2687"/> <source>Wi&zards</source> <translation>As&sistants</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3796"/> + <location filename="../UI/UserInterface.py" line="3771"/> <source>&Show all</source> <translation>Tout &afficher</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3798"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>&Hide all</source> <translation>Tout &masquer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show downloadable versions</source> <translation>Afficher les versions téléchargeables</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show &downloadable versions...</source> <translation>Afficher les versions &téléchargeables...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1821"/> + <location filename="../UI/UserInterface.py" line="1795"/> <source>Show the versions available for download</source> <translation>Affiche les versions disponibles pour le téléchargement</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6815"/> + <location filename="../UI/UserInterface.py" line="6756"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versions disponibles</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2414"/> + <location filename="../UI/UserInterface.py" line="2388"/> <source>Plugin Repository</source> <translation>Référentiel de plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2414"/> + <location filename="../UI/UserInterface.py" line="2388"/> <source>Plugin &Repository...</source> <translation>&Référentiel de plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419"/> - <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="2421"/> - <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="2393"/> + <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="2395"/> + <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="2367"/> <source>Install Plugins</source> <translation>Installation de plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2388"/> + <location filename="../UI/UserInterface.py" line="2362"/> <source>&Install Plugins...</source> <translation>&Installation de plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2394"/> + <location filename="../UI/UserInterface.py" line="2368"/> <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="2070"/> + <location filename="../UI/UserInterface.py" line="2044"/> <source>Mini Editor</source> <translation>Mini-éditeur</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2065"/> + <location filename="../UI/UserInterface.py" line="2039"/> <source>Mini &Editor...</source> <translation>Mini édit&eur...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2071"/> + <location filename="../UI/UserInterface.py" line="2045"/> <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> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Toolbars</source> <translation>Barres d'outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Tool&bars...</source> <translation>&Barres d'outils...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2234"/> + <location filename="../UI/UserInterface.py" line="2208"/> <source>Configure toolbars</source> <translation>Configuration des barres d'outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235"/> + <location filename="../UI/UserInterface.py" line="2209"/> <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> @@ -76347,479 +76322,479 @@ <translation>Restauration des barres d'outils...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>Multiproject-Viewer</source> <translation>Gestionnaire de multi-projets</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>&Multiproject-Viewer</source> <translation>Gestionnaire de &multi-projet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>External Tools</source> <translation>Outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6168"/> + <location filename="../UI/UserInterface.py" line="6109"/> <source>Save session</source> <translation>Enregistrer la session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source>Read session</source> <translation>Chargement de session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3058"/> + <location filename="../UI/UserInterface.py" line="3033"/> <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="3072"/> + <location filename="../UI/UserInterface.py" line="3047"/> <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> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request Feature</source> <translation>Suggestion d'amélioration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request &Feature...</source> <translation>Suggestion d'&amélioration...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1860"/> + <location filename="../UI/UserInterface.py" line="1834"/> <source>Send a feature request</source> <translation>Envoyer une suggestion d'amélioration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1862"/> + <location filename="../UI/UserInterface.py" line="1836"/> <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="3051"/> + <location filename="../UI/UserInterface.py" line="3026"/> <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="3079"/> + <location filename="../UI/UserInterface.py" line="3054"/> <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="3086"/> + <location filename="../UI/UserInterface.py" line="3061"/> <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="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>Horizontal Toolbox</source> <translation>Barre horizontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>&Horizontal Toolbox</source> <translation>Barre &horizontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1624"/> + <location filename="../UI/UserInterface.py" line="1598"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Afficher/Masquer la barre d'outils horizontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1626"/> + <location filename="../UI/UserInterface.py" line="1600"/> <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="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>Restart application</source> <translation>Redémarrage de l'application</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <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="2802"/> + <location filename="../UI/UserInterface.py" line="2777"/> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3065"/> + <location filename="../UI/UserInterface.py" line="3040"/> <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="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Switch between tabs</source> <translation>Intervertir les onglets</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>Export Preferences</source> <translation>Exporte les préférences</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>E&xport Preferences...</source> <translation>E&xporter les préférences...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160"/> + <location filename="../UI/UserInterface.py" line="2134"/> <source>Export the current configuration</source> <translation>Exporte la configuration courante</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2162"/> + <location filename="../UI/UserInterface.py" line="2136"/> <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="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>Import Preferences</source> <translation>Importe les préférences</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>I&mport Preferences...</source> <translation>I&mporter les préférences...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2174"/> + <location filename="../UI/UserInterface.py" line="2148"/> <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="2176"/> + <location filename="../UI/UserInterface.py" line="2150"/> <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="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Show next</source> <translation>Afficher le suivant</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Show previous</source> <translation>Afficher le précédent</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>Left Sidebar</source> <translation>Barre latérale de gauche</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>&Left Sidebar</source> <translation>Barre latérale de &gauche</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1638"/> + <location filename="../UI/UserInterface.py" line="1612"/> <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="1613"/> + <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="1635"/> + <source>Bottom Sidebar</source> + <translation>Barre du bas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>&Bottom Sidebar</source> + <translation>&Barre du bas</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1639"/> - <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="1661"/> - <source>Bottom Sidebar</source> - <translation>Barre du bas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>&Bottom Sidebar</source> - <translation>&Barre du bas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1665"/> <source>Toggle the bottom sidebar window</source> <translation>Affiche/Masque la barre du bas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1667"/> + <location filename="../UI/UserInterface.py" line="1641"/> <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="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>&Debug-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL &Browser...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2057"/> + <location filename="../UI/UserInterface.py" line="2031"/> <source>Browse a SQL database</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2058"/> + <location filename="../UI/UserInterface.py" line="2032"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>&Icon Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>PySide Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>Py&Side Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2622"/> + <location filename="../UI/UserInterface.py" line="2596"/> <source>Open PySide Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1325"/> + <location filename="../UI/UserInterface.py" line="1299"/> <source>{0} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332"/> + <location filename="../UI/UserInterface.py" line="1306"/> <source>{0} - {1} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1336"/> + <location filename="../UI/UserInterface.py" line="1310"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3161"/> + <location filename="../UI/UserInterface.py" line="3136"/> <source>External Tools/{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <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="4551"/> + <location filename="../UI/UserInterface.py" line="4492"/> <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="4618"/> + <location filename="../UI/UserInterface.py" line="4559"/> <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="4669"/> + <location filename="../UI/UserInterface.py" line="4610"/> <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="4711"/> + <location filename="../UI/UserInterface.py" line="4652"/> <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="4779"/> + <location filename="../UI/UserInterface.py" line="4720"/> <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="4834"/> + <location filename="../UI/UserInterface.py" line="4775"/> <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="4855"/> + <location filename="../UI/UserInterface.py" line="4796"/> <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="4948"/> + <location filename="../UI/UserInterface.py" line="4889"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4996"/> + <location filename="../UI/UserInterface.py" line="4937"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5088"/> + <location filename="../UI/UserInterface.py" line="5029"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <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="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <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="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <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="6105"/> + <location filename="../UI/UserInterface.py" line="6046"/> <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="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <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="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6613"/> + <location filename="../UI/UserInterface.py" line="6554"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="973"/> + <location filename="../UI/UserInterface.py" line="955"/> <source>Cooperation</source> <translation type="unfinished">Coopération</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Alt+Shift+O</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1030"/> + <location filename="../UI/UserInterface.py" line="1004"/> <source>Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Alt+Shift+Y</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1038"/> + <location filename="../UI/UserInterface.py" line="1012"/> <source>Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1728"/> + <location filename="../UI/UserInterface.py" line="1702"/> <source>Alt+Shift+B</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2532"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2576"/> + <location filename="../UI/UserInterface.py" line="2550"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2552"/> <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="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6670"/> + <location filename="../UI/UserInterface.py" line="6611"/> <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="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <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> @@ -76844,568 +76819,568 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New Window</source> <translation type="unfinished">Nouvelle fenêtre</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New &Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1904"/> + <location filename="../UI/UserInterface.py" line="1878"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1906"/> + <location filename="../UI/UserInterface.py" line="1880"/> <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="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>&Snapshot...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2129"/> + <location filename="../UI/UserInterface.py" line="2103"/> <source>Take snapshots of a screen region</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2131"/> + <location filename="../UI/UserInterface.py" line="2105"/> <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="4925"/> + <location filename="../UI/UserInterface.py" line="4866"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6885"/> + <location filename="../UI/UserInterface.py" line="6826"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1595"/> + <location filename="../UI/UserInterface.py" line="1569"/> <source>Left Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1607"/> + <location filename="../UI/UserInterface.py" line="1581"/> <source>Right Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>IRC</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1461"/> + <location filename="../UI/UserInterface.py" line="1435"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1463"/> + <location filename="../UI/UserInterface.py" line="1437"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1478"/> + <location filename="../UI/UserInterface.py" line="1452"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1454"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1470"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1472"/> + <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1488"/> + <source>Switch the input focus to the Shell window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1490"/> + <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1498"/> - <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1514"/> - <source>Switch the input focus to the Shell window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1516"/> - <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> <source>&File-Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1530"/> + <location filename="../UI/UserInterface.py" line="1504"/> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1532"/> + <location filename="../UI/UserInterface.py" line="1506"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1515"/> + <source>Lo&g-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1521"/> + <source>Switch the input focus to the Log-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1523"/> + <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>&Task-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1539"/> + <source>Switch the input focus to the Task-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1541"/> - <source>Lo&g-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1547"/> - <source>Switch the input focus to the Log-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1549"/> - <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> + <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Templ&ate-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1557"/> + <source>Switch the input focus to the Template-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1559"/> - <source>&Task-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1565"/> - <source>Switch the input focus to the Task-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1567"/> - <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Templ&ate-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1583"/> - <source>Switch the input focus to the Template-Viewer window.</source> + <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1569"/> + <source>&Left Toolbox</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1572"/> + <source>Toggle the Left Toolbox window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> + <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1581"/> + <source>&Right Toolbox</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1585"/> - <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1595"/> - <source>&Left Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1598"/> - <source>Toggle the Left Toolbox window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1599"/> - <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1607"/> - <source>&Right Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1611"/> <source>Toggle the Right Toolbox window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1612"/> + <location filename="../UI/UserInterface.py" line="1586"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right 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="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>Right Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>&Right Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1651"/> + <location filename="../UI/UserInterface.py" line="1625"/> <source>Toggle the right sidebar window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1653"/> + <location filename="../UI/UserInterface.py" line="1627"/> <source><b>Toggle the right sidebar window</b><p>If the right 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="1649"/> + <source>Cooperation-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1649"/> + <source>Co&operation-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1655"/> + <source>Switch the input focus to the Cooperation-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1657"/> + <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1667"/> + <source>&IRC</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1667"/> + <source>Meta+Shift+I</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1673"/> + <source>Switch the input focus to the IRC window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1675"/> - <source>Cooperation-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1675"/> - <source>Co&operation-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1681"/> - <source>Switch the input focus to the Cooperation-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1683"/> - <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1693"/> - <source>&IRC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1693"/> - <source>Meta+Shift+I</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1699"/> - <source>Switch the input focus to the IRC window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1701"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>Symbols-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>S&ymbols-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1690"/> + <source>Switch the input focus to the Symbols-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1692"/> + <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Numbers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Num&bers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1708"/> + <source>Switch the input focus to the Numbers-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1710"/> - <source>Symbols-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1710"/> - <source>S&ymbols-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1716"/> - <source>Switch the input focus to the Symbols-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1718"/> - <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Numbers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Num&bers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1734"/> - <source>Switch the input focus to the Numbers-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1736"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1936"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1937"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-Designer</source> + <source>Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-&Designer...</source> + <source>Qt-&Linguist...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1962"/> - <source>Start Qt-Designer</source> + <source>Start Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1963"/> - <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-&Linguist...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1988"/> - <source>Start Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1989"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt5 Documentation</source> <translation type="unfinished">Documentation Qt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt&5 Documentation</source> <translation type="unfinished">Documentation Qt&4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2499"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open Qt5 Documentation</source> <translation type="unfinished">Lance la Documentation Qt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2762"/> + <location filename="../UI/UserInterface.py" line="2736"/> <source>&Windows</source> <translation type="unfinished">&Fenêtres</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3097"/> + <location filename="../UI/UserInterface.py" line="3072"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293"/> + <location filename="../UI/UserInterface.py" line="2267"/> <source>Manage the saved SSL certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295"/> + <location filename="../UI/UserInterface.py" line="2269"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2283"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311"/> + <location filename="../UI/UserInterface.py" line="2285"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt5 Documentation</source> <translation type="unfinished"> Documentation PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2509"/> <source>Open PyQt5 Documentation</source> <translation type="unfinished">Lance la documentation PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5313"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>L'emplacement de la documentation PyQt4 n'a pas été configuré.</p> {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2560"/> + <location filename="../UI/UserInterface.py" line="2534"/> <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="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836"/> - <source>Show Error Log</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1832"/> - <source>Show Error &Log...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1837"/> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6608"/> - <source>Version Check</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1408"/> - <source>Open a new eric6 instance</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1410"/> - <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1773"/> - <source><b>Helpviewer</b><p>Display the eric6 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="1810"/> + <source>Show Error Log</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1806"/> + <source>Show Error &Log...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1811"/> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6549"/> + <source>Version Check</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1382"/> + <source>Open a new eric6 instance</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1384"/> + <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1747"/> + <source><b>Helpviewer</b><p>Display the eric6 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="1784"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> <translation type="unfinished"><b>Rechercher des mises à jour...</b><p>Recherche des mises à jour pour eric4 sur internet.</p> {5.?} {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823"/> + <location filename="../UI/UserInterface.py" line="1797"/> <source><b>Show downloadable versions...</b><p>Shows the eric6 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 ?} {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 &Web Browser...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2099"/> + <location filename="../UI/UserInterface.py" line="2073"/> <source>Start the eric6 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2075"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2115"/> + <location filename="../UI/UserInterface.py" line="2089"/> <source>Start the eric6 Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2117"/> + <location filename="../UI/UserInterface.py" line="2091"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2203"/> + <location filename="../UI/UserInterface.py" line="2177"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</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.?} {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2602"/> + <location filename="../UI/UserInterface.py" line="2576"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 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 ?} {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric4 est à jour {5 ?} {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">eric4 n'a pas encore été configuré. La fenêtre de configuration va être ouverte. {5 ?} {6 ?}</translation> </message> @@ -77415,87 +77390,87 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3651"/> + <location filename="../UI/UserInterface.py" line="3626"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3723"/> + <location filename="../UI/UserInterface.py" line="3698"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6624"/> + <location filename="../UI/UserInterface.py" line="6565"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>&Hex Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2083"/> + <location filename="../UI/UserInterface.py" line="2057"/> <source>Start the eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2085"/> + <location filename="../UI/UserInterface.py" line="2059"/> <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327"/> + <location filename="../UI/UserInterface.py" line="2301"/> <source>Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2303"/> <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1376"/> + <location filename="../UI/UserInterface.py" line="1350"/> <source>Save session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1381"/> + <location filename="../UI/UserInterface.py" line="1355"/> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>Load session</source> <translation type="unfinished">Charger la session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1389"/> + <location filename="../UI/UserInterface.py" line="1363"/> <source>Load session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1394"/> + <location filename="../UI/UserInterface.py" line="1368"/> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -77510,102 +77485,102 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6690"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="953"/> + <location filename="../UI/UserInterface.py" line="938"/> <source>Code Documentation Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2485"/> + <location filename="../UI/UserInterface.py" line="2459"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2500"/> + <location filename="../UI/UserInterface.py" line="2474"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2517"/> + <location filename="../UI/UserInterface.py" line="2491"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2624"/> + <location filename="../UI/UserInterface.py" line="2598"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide&2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2643"/> + <location filename="../UI/UserInterface.py" line="2617"/> <source>Open PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2645"/> + <location filename="../UI/UserInterface.py" line="2619"/> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2409"/> <source>Virtualenv Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2403"/> <source>&Virtualenv Manager...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2437"/> + <location filename="../UI/UserInterface.py" line="2411"/> <source><b>Virtualenv Manager</b><p>This opens a dialog to manage the defined Python virtual environments.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2426"/> <source>Virtualenv Configurator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Virtualenv &Configurator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2454"/> + <location filename="../UI/UserInterface.py" line="2428"/> <source><b>Virtualenv Configurator</b><p>This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_it.ts Sun Jul 08 17:33:25 2018 +0200 +++ b/i18n/eric6_it.ts Sun Jul 08 18:55:21 2018 +0200 @@ -5610,648 +5610,648 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1827"/> + <location filename="../Debugger/DebugUI.py" line="1825"/> <source>Run Script</source> <translation>Esegui Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="178"/> + <location filename="../Debugger/DebugUI.py" line="176"/> <source>&Run Script...</source> <translation>Esegui Sc&ript...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="183"/> + <location filename="../Debugger/DebugUI.py" line="181"/> <source>Run the current Script</source> <translation>Esegui lo script corrente</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="184"/> + <location filename="../Debugger/DebugUI.py" line="182"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Esegui Script</b><p>Imposta gli argomenti della linea di comando ed esegue lo script al di fuori del debugger. Se il file non è stato salvato può essere salvato prima.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>Run Project</source> <translation>Esegui Progetto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="193"/> + <location filename="../Debugger/DebugUI.py" line="191"/> <source>Run &Project...</source> <translation>Esegui &Progetto...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="198"/> + <location filename="../Debugger/DebugUI.py" line="196"/> <source>Run the current Project</source> <translation>Esegui il progetto corrente</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="199"/> + <location filename="../Debugger/DebugUI.py" line="197"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Esegui Progetto</b><p>Imposta gli argomenti della linea di comando ed esegue il progetto corrente fuori dal debugger. Se file del progetto corrente non sono stati salvati, è possibile salvarli prima.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script</source> <translation>Esecuzione sotto analisi dello Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script...</source> <translation>Esecuzione sotto analisi del progetto...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="212"/> + <source>Perform a coverage run of the current Script</source> + <translation>Esegui un'esecuzione coperta dello script corrente</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="214"/> - <source>Perform a coverage run of the current Script</source> - <translation>Esegui un'esecuzione coperta dello script corrente</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="216"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Copertura eseguzione dello scitp</b><p>Imposta gli argomenti alla linea di comando ed esegui lo script sotto il controllo di uno strumento di analisi. Se il file ha delle modifiche non salvate è possibile salvarlo prima.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project</source> <translation>Esecuzione sotto analisi del progetto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project...</source> <translation>Esecuzione sotto analisi del progetto...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="228"/> + <source>Perform a coverage run of the current Project</source> + <translation>Esegui un'esecuzione coperta del progetto corrente</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="230"/> - <source>Perform a coverage run of the current Project</source> - <translation>Esegui un'esecuzione coperta del progetto corrente</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="232"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Esecuzione sotto analisi del progetto</b><p>Imposta gli argomenti alla linea di comando ed esegui il progetto sotto il controllo di uno strumento di analisi. Se ci sono file del progetto con modifiche non salvate è possibile salvarli prima.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script</source> <translation>Profila Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script...</source> <translation>Profila Script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="246"/> + <location filename="../Debugger/DebugUI.py" line="244"/> <source>Profile the current Script</source> <translation>Profile lo script corrente</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="247"/> + <location filename="../Debugger/DebugUI.py" line="245"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Profila Script</b><p>Imposta gli argomenti della linea di comando profila lo script. Se il file non è stato salvato può essere salvato prima.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project</source> <translation>Profila Progetto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project...</source> <translation>Profila Progetto...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="258"/> + <source>Profile the current Project</source> + <translation>Profila il progetto corrente</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="260"/> - <source>Profile the current Project</source> - <translation>Profila il progetto corrente</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="262"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Profila Progetto</b><p>Imposta gli argomenti della linea di comando e profila il progetto. Se file del progetto corrente non sono stati salvati, è possibile salvarli prima.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1962"/> + <location filename="../Debugger/DebugUI.py" line="1960"/> <source>Debug Script</source> <translation>Debug dello script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="271"/> + <location filename="../Debugger/DebugUI.py" line="269"/> <source>&Debug Script...</source> <translation>&Debug dello script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="276"/> + <location filename="../Debugger/DebugUI.py" line="274"/> <source>Debug the current Script</source> <translation>Debug dello script corrente</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="277"/> + <location filename="../Debugger/DebugUI.py" line="275"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Debug dello Script</b><p>Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python della finestra dell'editor. Se il file ha modifiche non salvate è possibile salvarle prima.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>Debug Project</source> <translation>Debug del Progetto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="287"/> + <location filename="../Debugger/DebugUI.py" line="285"/> <source>Debug &Project...</source> <translation>Debug del &Progetto...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="290"/> + <source>Debug the current Project</source> + <translation>Debug del progetto corrente</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="292"/> - <source>Debug the current Project</source> - <translation>Debug del progetto corrente</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="294"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Debug del Progetto</b><p>Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python della finestra dell'editor. Se il progetto ha modifiche non salvate è possibile salvarle prima.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="306"/> <source>Restart the last debugged script</source> <translation>Riavvia l'ultimo script debuggato</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>Continue</source> <translation>Continua</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>&Continue</source> <translation>&Continua</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="338"/> + <source>Continue running the program from the current line</source> + <translation>Continua l'esecuzione del programma dalla linea corrente</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="340"/> - <source>Continue running the program from the current line</source> - <translation>Continua l'esecuzione del programma dalla linea corrente</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="342"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Continua</b><p>Continua l'esecuzione del programma dalla linea corrente. Il programma si fermerà quando finirà o quando incontrerà un breakpoint.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Single Step</source> <translation>Step Singolo</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Sin&gle Step</source> <translation>Step Sin&golo</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="392"/> + <location filename="../Debugger/DebugUI.py" line="390"/> <source>Execute a single Python statement</source> <translation>Esegui una singola istruzione Python</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="393"/> + <location filename="../Debugger/DebugUI.py" line="391"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>Passo singolo</b><p>Esegue una singola istruzione Python. Se l'istruzione è una <tt>import</tt>, un costruttore di una classe, o un metodo o una chiamata di funzione allora il controllo verrà tornato al debugger alla prossima istruzione.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step Over</source> <translation>Step Over</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step &Over</source> <translation>Step &Over</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="408"/> + <location filename="../Debugger/DebugUI.py" line="406"/> <source>Execute a single Python statement staying in the current frame</source> <translation>Esegui una singola istruzione Python restando nella stessa struttura</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="411"/> + <location filename="../Debugger/DebugUI.py" line="409"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation><b>Singolo passor</b><p>Esegui una singola istruzione Python restando nella stessa struttura. Se l'istruzione e' un <tt>import</tt>, un costruttore di classe, o un metodo o una chiamata di funzione allora il controllo tornerà al debugger dopo che l'istruzione è completata.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Out</source> <translation>Step Out</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Ou&t</source> <translation>Step Ou&t</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="427"/> + <location filename="../Debugger/DebugUI.py" line="425"/> <source>Execute Python statements until leaving the current frame</source> <translation>Esegue istruzioni Python fino a quando esce dal blocco corrente</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="430"/> + <location filename="../Debugger/DebugUI.py" line="428"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation><b>Step Out</b><p>Esegue istruzioni Python fino a quando esce dal blocco corrente. Se l'istruzione e' un <tt>import</tt>, un costruttore di classe, o un metodo o una chiamata di funzione allora il controllo tornerà al debugger dopo l'uscita dal blocco corrente.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>Stop</source> <translation>Stop</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>&Stop</source> <translation>&Stop</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="446"/> + <location filename="../Debugger/DebugUI.py" line="444"/> <source>Stop debugging</source> <translation>Ferma il debug</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="447"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Stop</b><p>Ferma la sessione di debug.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>Exceptions Filter</source> <translation>Filtro per le eccezioni</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>&Exceptions Filter...</source> <translation>Filtro per le &Eccezioni...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="472"/> + <source>Configure exceptions filter</source> + <translation>Configura il filtro per le eccezioni</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="474"/> - <source>Configure exceptions filter</source> - <translation>Configura il filtro per le eccezioni</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="476"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>Filtro per le Eccezioni</b><p>Configura il filtro per le eccezioni. Solo i tipi di eccezione che sono elencati sono evidenziati durante una sessione di debug.</p><p>Notare che, tutte le eccezioni non gestite sono evidenziate indipendentemente dalla lista del filtro.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="512"/> + <location filename="../Debugger/DebugUI.py" line="510"/> <source>Toggle Breakpoint</source> <translation>Toggle Breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="513"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Toggle Breakpoint</b><p>Attiva un breakpoint sulla linea corrente dell'editor.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="527"/> + <location filename="../Debugger/DebugUI.py" line="525"/> <source>Edit Breakpoint</source> <translation>Modifica Breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Edit Breakpoint...</source> <translation>Modifica Breakpoint...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="528"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>Modifica Breakpoint</b><p>Apre un dialogo per modificare le proprietà del breakpoint. Lavora sulla linea corrente dell'editor.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="543"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Next Breakpoint</source> <translation>Prossimo Breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="542"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>Prossimo Breakpoint</b><p>Va al prossimo breakpoint dell'editor corrente.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="558"/> + <location filename="../Debugger/DebugUI.py" line="556"/> <source>Previous Breakpoint</source> <translation>Breakpoint Precedente</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="557"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>Breakpoint Precedente</b><p>Va al breakpoint precedente dell'editor corrente.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="572"/> + <location filename="../Debugger/DebugUI.py" line="570"/> <source>Clear Breakpoints</source> <translation>Pulisci i Breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="573"/> + <location filename="../Debugger/DebugUI.py" line="571"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation><b>Pulisci i Breakpoints</b><p>Elimina i breakpoint di tutti gli editor.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="603"/> - <source>&Breakpoints</source> - <translation>&Breakpoints</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1100"/> - <source>The program being debugged contains an unspecified syntax error.</source> - <translation>Il programma che viene debuggato contiene un errore di sintassi non specificato.</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1137"/> - <source>An unhandled exception occured. See the shell window for details.</source> - <translation>Un'eccezione non gestita è occorso. Guarda la finestra di shell per dettagli.</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1262"/> - <source>The program being debugged has terminated unexpectedly.</source> - <translation>Il programma debuggato è terminato in maniera inaspettata.</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1576"/> - <source>Coverage of Project</source> - <translation>Analisi del Progetto</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1563"/> - <source>Coverage of Script</source> - <translation>Analisi delle Script</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> - <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="../Debugger/DebugUI.py" line="1708"/> - <source>Profile of Project</source> - <translation>Profilazione del progetto</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1695"/> - <source>Profile of Script</source> - <translation>Profilazione dello script</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> - <source>There is no main script defined for the current project. No debugging possible.</source> - <translation>Non c'è uno script principale per il progetto. Non è possibile il debug.</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="351"/> - <source>Continue to Cursor</source> - <translation>Continua fino al cursore</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="351"/> - <source>Continue &To Cursor</source> - <translation>Con&tinua fino al Cursore</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="356"/> - <source>Continue running the program from the current line to the current cursor position</source> - <translation>Continua l'esecuzione del programma dalla linea attuale fino alla posizione del cursore</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="359"/> - <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> - <translation><b>Continua fino al cursore</b><p>Continua l'esecuzione del programma dalla linea attuale fino alla posizione del cursore.</p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="454"/> - <source>Variables Type Filter</source> - <translation>Filtro per i tipi di variabili</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="454"/> - <source>Varia&bles Type Filter...</source> - <translation>Filtro per i tipi di varia&bili...</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="458"/> - <source>Configure variables type filter</source> - <translation>Configura il filtro per i tipi di variabile</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="460"/> - <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> - <translation><b>Filtro tipo variabili</b><p>Configura il filtro per i tipi variabile. Solo i tipi di variabile che non sono selezionati sono mostrati nella finestra delle variabili globali o locali durante una sessione di debug. </p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> - <source>Breakpoint Condition Error</source> - <translation>Errore condizione di interruzione</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="536"/> - <source>Ctrl+Shift+PgDown</source> - <comment>Debug|Next Breakpoint</comment> - <translation>Ctrl+Shift+PgDown</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="551"/> - <source>Ctrl+Shift+PgUp</source> - <comment>Debug|Previous Breakpoint</comment> - <translation>Ctrl+Shift+PgUp</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="566"/> - <source>Ctrl+Shift+C</source> - <comment>Debug|Clear Breakpoints</comment> - <translation>Ctrl+Shift+C</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="599"/> - <source>&Debug</source> - <translation>&Debug</translation> - </message> - <message> <location filename="../Debugger/DebugUI.py" line="601"/> + <source>&Breakpoints</source> + <translation>&Breakpoints</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1098"/> + <source>The program being debugged contains an unspecified syntax error.</source> + <translation>Il programma che viene debuggato contiene un errore di sintassi non specificato.</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1135"/> + <source>An unhandled exception occured. See the shell window for details.</source> + <translation>Un'eccezione non gestita è occorso. Guarda la finestra di shell per dettagli.</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1260"/> + <source>The program being debugged has terminated unexpectedly.</source> + <translation>Il programma debuggato è terminato in maniera inaspettata.</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1574"/> + <source>Coverage of Project</source> + <translation>Analisi del Progetto</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1561"/> + <source>Coverage of Script</source> + <translation>Analisi delle Script</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1840"/> + <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="../Debugger/DebugUI.py" line="1706"/> + <source>Profile of Project</source> + <translation>Profilazione del progetto</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1693"/> + <source>Profile of Script</source> + <translation>Profilazione dello script</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1976"/> + <source>There is no main script defined for the current project. No debugging possible.</source> + <translation>Non c'è uno script principale per il progetto. Non è possibile il debug.</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="349"/> + <source>Continue to Cursor</source> + <translation>Continua fino al cursore</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="349"/> + <source>Continue &To Cursor</source> + <translation>Con&tinua fino al Cursore</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="354"/> + <source>Continue running the program from the current line to the current cursor position</source> + <translation>Continua l'esecuzione del programma dalla linea attuale fino alla posizione del cursore</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="357"/> + <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> + <translation><b>Continua fino al cursore</b><p>Continua l'esecuzione del programma dalla linea attuale fino alla posizione del cursore.</p></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="452"/> + <source>Variables Type Filter</source> + <translation>Filtro per i tipi di variabili</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="452"/> + <source>Varia&bles Type Filter...</source> + <translation>Filtro per i tipi di varia&bili...</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="456"/> + <source>Configure variables type filter</source> + <translation>Configura il filtro per i tipi di variabile</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="458"/> + <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> + <translation><b>Filtro tipo variabili</b><p>Configura il filtro per i tipi variabile. Solo i tipi di variabile che non sono selezionati sono mostrati nella finestra delle variabili globali o locali durante una sessione di debug. </p></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1331"/> + <source>Breakpoint Condition Error</source> + <translation>Errore condizione di interruzione</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="534"/> + <source>Ctrl+Shift+PgDown</source> + <comment>Debug|Next Breakpoint</comment> + <translation>Ctrl+Shift+PgDown</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="549"/> + <source>Ctrl+Shift+PgUp</source> + <comment>Debug|Previous Breakpoint</comment> + <translation>Ctrl+Shift+PgUp</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="564"/> + <source>Ctrl+Shift+C</source> + <comment>Debug|Clear Breakpoints</comment> + <translation>Ctrl+Shift+C</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="597"/> + <source>&Debug</source> + <translation>&Debug</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="599"/> <source>&Start</source> <translation>&Avvia</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="646"/> + <location filename="../Debugger/DebugUI.py" line="644"/> <source>Start</source> <translation>Inizia</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="660"/> + <location filename="../Debugger/DebugUI.py" line="658"/> <source>Debug</source> <translation>Debug</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="325"/> + <location filename="../Debugger/DebugUI.py" line="323"/> <source>Stop the running script.</source> <translation>Ferma lo script in esecuzione.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source>Watch Expression Error</source> <translation>Errore espressione di watch</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1409"/> + <location filename="../Debugger/DebugUI.py" line="1407"/> <source>Watch expression already exists</source> <translation>L'espressione di controllo esiste già</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>Ignored Exceptions</source> <translation>Eccezione ignorata</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>&Ignored Exceptions...</source> <translation>Eccezione &ignorata...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="489"/> + <source>Configure ignored exceptions</source> + <translation>Configura eccezioni ignorate</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="491"/> - <source>Configure ignored exceptions</source> - <translation>Configura eccezioni ignorate</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="493"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>Eccezioni ignorate</b><p>Configura le eccezioni da ignorare. Solo i tipi di eccezione che non sono elencati sono evidenziati durante una sessione di debug.</p><p>Per favore nota che le eccezioni non gestite non possono essere ignorate.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="506"/> + <location filename="../Debugger/DebugUI.py" line="504"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation>Shift+F11</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation>Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1119"/> + <location filename="../Debugger/DebugUI.py" line="1117"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation><p>Il file <b>{0}</b> contiene l'errore di sintassi <b>{1}</b> alla linea <b>{2}</b>, carattere <b>{3}</b>.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1184"/> + <location filename="../Debugger/DebugUI.py" line="1182"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation><p>Il programma in debug ha sollevato un'eccezione <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Linea: <b>{3}</b></p><p>Interrompere qui ?</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1199"/> + <location filename="../Debugger/DebugUI.py" line="1197"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>Il programma debuggato ha sollevato un'eccezione <b>{0}</b><br>"<b>{1}</b>"</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>La condizione del breakpoint <b>{0}, {1}</b> contiene un errore di sintassi.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>L'espressione <b>{0}</b> contiene un errore di sintassi.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1399"/> + <location filename="../Debugger/DebugUI.py" line="1397"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>L'espressione '<b>{0}</b>' esiste già.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1403"/> + <location filename="../Debugger/DebugUI.py" line="1401"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>L'espressione '<b>{0}</b>' per la variabile <b>{1}</b> esiste già.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1040"/> <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1069"/> + <location filename="../Debugger/DebugUI.py" line="1067"/> <source>Program terminated</source> <translation>Programma terminato</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="304"/> + <location filename="../Debugger/DebugUI.py" line="302"/> <source>Restart</source> <translation>Riavvio</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="310"/> + <location filename="../Debugger/DebugUI.py" line="308"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation><b>Riavvia</b><p>Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python dell'ultimo script in debug. Se il file ha modifiche non salvate è possibile salvarle prima.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="326"/> + <location filename="../Debugger/DebugUI.py" line="324"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation><b>Ferma</b><p>Questo ferma lo script in esecuzione nel backend del debugger.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1248"/> + <location filename="../Debugger/DebugUI.py" line="1246"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> + <location filename="../Debugger/DebugUI.py" line="1034"/> <source><p>Message: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1045"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1055"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>Message: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1060"/> <source>The program has terminated with an exit status of {0}. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1065"/> + <location filename="../Debugger/DebugUI.py" line="1063"/> <source>"{0}" has terminated with an exit status of {1}. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1074"/> + <location filename="../Debugger/DebugUI.py" line="1072"/> <source>The program has terminated with an exit status of {0}. {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1078"/> + <location filename="../Debugger/DebugUI.py" line="1076"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>Move Instruction Pointer to Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>&Jump To Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="372"/> + <location filename="../Debugger/DebugUI.py" line="370"/> <source>Skip the code from the current line to the current cursor position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="375"/> + <location filename="../Debugger/DebugUI.py" line="373"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation type="unfinished"></translation> </message> @@ -6259,52 +6259,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="../Debugger/DebugViewer.py" line="174"/> + <location filename="../Debugger/DebugViewer.py" line="145"/> <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="178"/> + <location filename="../Debugger/DebugViewer.py" line="149"/> <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="184"/> + <location filename="../Debugger/DebugViewer.py" line="155"/> <source>Set</source> <translation>Imposta</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="159"/> + <location filename="../Debugger/DebugViewer.py" line="130"/> <source>Source</source> <translation>Sorgente</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="261"/> + <location filename="../Debugger/DebugViewer.py" line="226"/> <source>Threads:</source> <translation>Threads:</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation>ID</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation>Nome</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation>Stato</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="520"/> + <location filename="../Debugger/DebugViewer.py" line="457"/> <source>waiting at breakpoint</source> <translation>in attesa ad un breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="522"/> + <location filename="../Debugger/DebugViewer.py" line="459"/> <source>running</source> <translation>in esecuzione</translation> </message> @@ -40118,7 +40118,7 @@ <context> <name>InterfacePage</name> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="226"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="205"/> <source>English</source> <comment>Translate this with your language</comment> <translation>Italiano</translation> @@ -40301,35 +40301,35 @@ <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="463"/> <source>Shell</source> - <translation>Shell</translation> + <translation type="obsolete">Shell</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="469"/> <source>Select to get a separate shell window</source> - <translation>Seleziona per avere una finestra di shell separata</translation> + <translation type="obsolete">Seleziona per avere una finestra di shell separata</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="501"/> <source>separate window</source> - <translation>separa finestra</translation> + <translation type="obsolete">separa finestra</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="492"/> <source>File-Browser</source> - <translation>File-Browser</translation> + <translation type="obsolete">File-Browser</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="498"/> <source>Select to get a separate file browser window</source> - <translation>Seleziona per avere una finestra di file browser separata</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="562"/> + <translation type="obsolete">Seleziona per avere una finestra di file browser separata</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="490"/> <source>Reset layout to factory defaults</source> <translation>Reimposta il layout al default di fabbrica</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="244"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="223"/> <source>System</source> <translation>Sistema</translation> </message> @@ -40356,27 +40356,27 @@ <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="479"/> <source>Select to embed the shell in the Debug-Viewer</source> - <translation>Selezione per rendere embedded la shell nel Debug-Viewer</translation> + <translation type="obsolete">Selezione per rendere embedded la shell nel Debug-Viewer</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="511"/> <source>embed in Debug-Viewer</source> - <translation>inserisci in Debug-Viewer</translation> + <translation type="obsolete">inserisci in Debug-Viewer</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="508"/> <source>Select to embed the file browser in the Debug-Viewer</source> - <translation>Seleziona per inserire il file browser nel Debug-Browser</translation> + <translation type="obsolete">Seleziona per inserire il file browser nel Debug-Browser</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="518"/> <source>Select to embed the file browser in the Project-Viewer</source> - <translation>Seleziona per inserire il file browser nel Project-Browser</translation> + <translation type="obsolete">Seleziona per inserire il file browser nel Project-Browser</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="521"/> <source>embed in Project-Viewer</source> - <translation>insetisci nel Project Viewer</translation> + <translation type="obsolete">insetisci nel Project Viewer</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="63"/> @@ -40389,12 +40389,12 @@ <translation>Ordina contenuto per occorrenza</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="533"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="461"/> <source>Tabs</source> <translation>Schede</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="539"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="467"/> <source>Show only one close button instead of one for each tab</source> <translation>Mostra solo un pulsante di chiusura invece di uno per ogni linguetta</translation> </message> @@ -51973,42 +51973,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="../Project/ProjectBrowser.py" line="72"/> + <location filename="../Project/ProjectBrowser.py" line="66"/> <source>files added</source> <translation>file aggiunti</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="73"/> + <location filename="../Project/ProjectBrowser.py" line="67"/> <source>local modifications</source> <translation>modifiche locali</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="76"/> + <location filename="../Project/ProjectBrowser.py" line="70"/> <source>update required</source> <translation>aggiornamento richiesto</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="77"/> - <source>conflict</source> - <translation>conflitto</translation> - </message> - <message> <location filename="../Project/ProjectBrowser.py" line="71"/> + <source>conflict</source> + <translation>conflitto</translation> + </message> + <message> + <location filename="../Project/ProjectBrowser.py" line="65"/> <source>up to date</source> <translation>aggiornato</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="75"/> + <location filename="../Project/ProjectBrowser.py" line="69"/> <source>files replaced</source> <translation>file sostituiti</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="74"/> + <location filename="../Project/ProjectBrowser.py" line="68"/> <source>files removed</source> <translation>file rimossi</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="434"/> + <location filename="../Project/ProjectBrowser.py" line="398"/> <source>unknown status</source> <translation type="unfinished"></translation> </message> @@ -74260,7 +74260,7 @@ <translation>Generazione interfaccia utente principale...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Log-Viewer</source> <translation>Log-Viewer</translation> </message> @@ -74295,237 +74295,237 @@ <translation>Inizializzazione strumenti...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Quit</source> <translation>Esci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>&Quit</source> <translation>&Esci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1365"/> + <location filename="../UI/UserInterface.py" line="1339"/> <source>Quit the IDE</source> <translation>Esci dall'IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1366"/> + <location filename="../UI/UserInterface.py" line="1340"/> <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="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>What's This?</source> <translation>Cos'è questo ?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>&What's This?</source> <translation>C&os'è Questo ?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752"/> + <location filename="../UI/UserInterface.py" line="1726"/> <source>Context sensitive help</source> <translation>Help sensibile al contesto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1753"/> + <location filename="../UI/UserInterface.py" line="1727"/> <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="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>Helpviewer</source> <translation>Visualizzatore Help</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>&Helpviewer...</source> <translation>Visualizzatore &Help...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1745"/> + <source>Open the helpviewer window</source> + <translation>Apri il visualizzatore di help</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show Versions</source> + <translation>Mostra versione</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show &Versions</source> + <translation>Mostra &Versione</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1771"/> - <source>Open the helpviewer window</source> - <translation>Apri il visualizzatore di help</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show Versions</source> - <translation>Mostra versione</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show &Versions</source> - <translation>Mostra &Versione</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1797"/> <source>Display version information</source> <translation>Mostra informazioni sulla versione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1799"/> + <location filename="../UI/UserInterface.py" line="1773"/> <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="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Report Bug</source> <translation>Segnala Bug</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1844"/> + <location filename="../UI/UserInterface.py" line="1818"/> <source>Report &Bug...</source> <translation>Segnala &Bug...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848"/> + <location filename="../UI/UserInterface.py" line="1822"/> <source>Report a bug</source> <translation>Segnala un bug</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1849"/> + <location filename="../UI/UserInterface.py" line="1823"/> <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="2883"/> + <location filename="../UI/UserInterface.py" line="2858"/> <source>Unittest</source> <translation>Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1845"/> <source>&Unittest...</source> <translation>&Unittest...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1850"/> <source>Start unittest dialog</source> <translation>Avvia dialogo unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>Preferences</source> <translation>Preferenze</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>&Preferences...</source> <translation>&Preferenze...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144"/> + <location filename="../UI/UserInterface.py" line="2118"/> <source>Set the prefered configuration</source> <translation>Imposta la configurazione preferita</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146"/> + <location filename="../UI/UserInterface.py" line="2120"/> <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="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard Shortcuts</source> <translation>Scorciatoie da tastiera</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard &Shortcuts...</source> <translation>&Scorciatoie da tastiera...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2249"/> + <location filename="../UI/UserInterface.py" line="2223"/> <source>Set the keyboard shortcuts</source> <translation>Imposta le scorciatoie da tastiera</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2225"/> <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="5849"/> + <location filename="../UI/UserInterface.py" line="5790"/> <source>Export Keyboard Shortcuts</source> <translation>Esporta scorciatoie da tastiera</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2233"/> <source>&Export Keyboard Shortcuts...</source> <translation>&Esporta scorciatoie da tastiera...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2238"/> <source>Export the keyboard shortcuts</source> <translation>Esporta le scorciatoie da tastiera</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2240"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Import Keyboard Shortcuts</source> <translation>Importa scorciatoie da tastiera</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2273"/> + <location filename="../UI/UserInterface.py" line="2247"/> <source>&Import Keyboard Shortcuts...</source> <translation>&Importa scorciatoie da tastiera...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2278"/> + <location filename="../UI/UserInterface.py" line="2252"/> <source>Import the keyboard shortcuts</source> <translation>Importa le scorciatoie da tastiera</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2280"/> + <location filename="../UI/UserInterface.py" line="2254"/> <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="2708"/> + <location filename="../UI/UserInterface.py" line="2682"/> <source>E&xtras</source> <translation>E&xtra</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2731"/> + <source>&Window</source> + <translation>&Finestre</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782"/> + <source>&Help</source> + <translation>&Help</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857"/> + <source>Tools</source> + <translation>Strumenti</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4638"/> + <source>Help</source> + <translation>Aiuto</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2859"/> + <source>Settings</source> + <translation>Impostazioni</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757"/> - <source>&Window</source> - <translation>&Finestre</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2807"/> - <source>&Help</source> - <translation>&Help</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2882"/> - <source>Tools</source> - <translation>Strumenti</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4697"/> - <source>Help</source> - <translation>Aiuto</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2884"/> - <source>Settings</source> - <translation>Impostazioni</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2782"/> <source>&Toolbars</source> <translation>&Toolbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <source>Process Generation Error</source> <translation>Errore Generazione Processo</translation> </message> @@ -74535,362 +74535,362 @@ <translation>Inizializzazione Single Application Server...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1877"/> + <location filename="../UI/UserInterface.py" line="1851"/> <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="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>Unittest Restart</source> <translation>Riavvia Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>&Restart Unittest...</source> <translation>&Riavvia Unittest...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1890"/> + <location filename="../UI/UserInterface.py" line="1864"/> <source>Restart last unittest</source> <translation>Riavvia l'ultima unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1891"/> + <location filename="../UI/UserInterface.py" line="1865"/> <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="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest Script</source> <translation>Script unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest &Script...</source> <translation>&Script Unittest...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920"/> + <location filename="../UI/UserInterface.py" line="1894"/> <source>Run unittest with current script</source> <translation>Esegui unittest con lo script corrente</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922"/> + <location filename="../UI/UserInterface.py" line="1896"/> <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="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>Unittest Project</source> <translation>Progetto Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1930"/> + <location filename="../UI/UserInterface.py" line="1904"/> <source>Unittest &Project...</source> <translation>&Progetto Unittest...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1909"/> <source>Run unittest with current project</source> <translation>Esegui unittest con il progetto corrente</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1937"/> + <location filename="../UI/UserInterface.py" line="1911"/> <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="2025"/> + <location filename="../UI/UserInterface.py" line="1999"/> <source>Compare Files</source> <translation>Confronta file</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2025"/> + <location filename="../UI/UserInterface.py" line="1999"/> <source>&Compare Files...</source> <translation>&Confronta file...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2043"/> + <location filename="../UI/UserInterface.py" line="2017"/> <source>Compare two files</source> <translation>Confronta due file</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2031"/> + <location filename="../UI/UserInterface.py" line="2005"/> <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="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare Files side by side</source> <translation>Confronta file affiancati</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2044"/> + <location filename="../UI/UserInterface.py" line="2018"/> <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="2691"/> + <location filename="../UI/UserInterface.py" line="2665"/> <source>&Unittest</source> <translation>&Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <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="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source>Drop Error</source> <translation>Errore Drop</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>File-Browser</source> <translation>File Browser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1421"/> + <location filename="../UI/UserInterface.py" line="1395"/> <source>Edit Profile</source> <translation>Modifica profilo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1401"/> <source>Activate the edit view profile</source> <translation>Attiva il profilo della vista di editing</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1403"/> + <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="1412"/> + <source>Debug Profile</source> + <translation>Profilo Debug</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1418"/> + <source>Activate the debug view profile</source> + <translation>Attiva profilo Debug</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1420"/> + <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="2186"/> + <source>View Profiles</source> + <translation>Vista Profili</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2186"/> + <source>&View Profiles...</source> + <translation>&Vista profili...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <source>Configure view profiles</source> + <translation>Configura i profili</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2193"/> + <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="1972"/> + <source>UI Previewer</source> + <translation>Anteprima UI</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1972"/> + <source>&UI Previewer...</source> + <translation>Antreprima &UI...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1977"/> + <source>Start the UI Previewer</source> + <translation>Avvia UI Previewer</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1978"/> + <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="1985"/> + <source>Translations Previewer</source> + <translation>Anteprima traduzioni</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1985"/> + <source>&Translations Previewer...</source> + <translation>Anteprima &Traduzioni...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1990"/> + <source>Start the Translations Previewer</source> + <translation>Avvia l'anteprima delle traduzioni</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1992"/> + <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="1482"/> + <source>Shell</source> + <translation>Shell</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>&Shell</source> + <translation>&Shell</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2157"/> + <source>Reload APIs</source> + <translation>Ricarica APIs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2157"/> + <source>Reload &APIs</source> + <translation>Ricarica &APIs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2161"/> + <source>Reload the API information</source> + <translation>Ricarica le informazioni delle API</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2163"/> + <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="1533"/> + <source>Task-Viewer</source> + <translation>Task-Viewer</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="5983"/> + <source>Save tasks</source> + <translation>Salva task</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6012"/> + <source>Read tasks</source> + <translation>Leggi task</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4638"/> + <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="5450"/> + <source>Documentation Missing</source> + <translation>Documentazione mancante</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3292"/> + <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="1551"/> + <source>Template-Viewer</source> + <translation>Templates-Viewer</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1429"/> - <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="1438"/> - <source>Debug Profile</source> - <translation>Profilo Debug</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1444"/> - <source>Activate the debug view profile</source> - <translation>Attiva profilo Debug</translation> + <source>Alt+Shift+P</source> + <translation>Alt+Shift+P</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1464"/> + <source>Alt+Shift+D</source> + <translation>Alt+Shift+D</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1482"/> + <source>Alt+Shift+S</source> + <translation>Alt+Shift+S</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1498"/> + <source>Alt+Shift+F</source> + <translation>Alt+Shift+M</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>Alt+Shift+T</source> + <translation>Alt+Shift+T</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1446"/> - <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="2212"/> - <source>View Profiles</source> - <translation>Vista Profili</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2212"/> - <source>&View Profiles...</source> - <translation>&Vista profili...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2217"/> - <source>Configure view profiles</source> - <translation>Configura i profili</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2219"/> - <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="1998"/> - <source>UI Previewer</source> - <translation>Anteprima UI</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1998"/> - <source>&UI Previewer...</source> - <translation>Antreprima &UI...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2003"/> - <source>Start the UI Previewer</source> - <translation>Avvia UI Previewer</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2004"/> - <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="2011"/> - <source>Translations Previewer</source> - <translation>Anteprima traduzioni</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2011"/> - <source>&Translations Previewer...</source> - <translation>Anteprima &Traduzioni...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2016"/> - <source>Start the Translations Previewer</source> - <translation>Avvia l'anteprima delle traduzioni</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2018"/> - <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="1508"/> - <source>Shell</source> - <translation>Shell</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>&Shell</source> - <translation>&Shell</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2183"/> - <source>Reload APIs</source> - <translation>Ricarica APIs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2183"/> - <source>Reload &APIs</source> - <translation>Ricarica &APIs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2187"/> - <source>Reload the API information</source> - <translation>Ricarica le informazioni delle API</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2189"/> - <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="1559"/> - <source>Task-Viewer</source> - <translation>Task-Viewer</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6042"/> - <source>Save tasks</source> - <translation>Salva task</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6071"/> - <source>Read tasks</source> - <translation>Leggi task</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4697"/> - <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="5509"/> - <source>Documentation Missing</source> - <translation>Documentazione mancante</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3317"/> - <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="1577"/> - <source>Template-Viewer</source> - <translation>Templates-Viewer</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>Alt+Shift+P</source> - <translation>Alt+Shift+P</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1490"/> - <source>Alt+Shift+D</source> - <translation>Alt+Shift+D</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1508"/> - <source>Alt+Shift+S</source> - <translation>Alt+Shift+S</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> - <source>Alt+Shift+F</source> - <translation>Alt+Shift+M</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1559"/> - <source>Alt+Shift+T</source> - <translation>Alt+Shift+T</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Activate current editor</source> <translation>Attiva editor corrente</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt4 Documentation</source> <translation>Documentazione Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt&4 Documentation</source> <translation>Documentazione Qt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2484"/> + <location filename="../UI/UserInterface.py" line="2458"/> <source>Open Qt4 Documentation</source> <translation>Apri documentazione su Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596"/> + <location filename="../UI/UserInterface.py" line="2570"/> <source>Eric API Documentation</source> <translation>Documentazione API di Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596"/> + <location filename="../UI/UserInterface.py" line="2570"/> <source>&Eric API Documentation</source> <translation>Documentazione API di &Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600"/> + <location filename="../UI/UserInterface.py" line="2574"/> <source>Open Eric API Documentation</source> <translation>Apri documentazione API di Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4731"/> + <location filename="../UI/UserInterface.py" line="4672"/> <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> @@ -74900,138 +74900,138 @@ <translation>Registrazione Oggetti...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>Project-Viewer</source> <translation>Project-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Debug-Viewer</source> <translation>Debug-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>&Project-Viewer</source> <translation>&Project-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1809"/> + <location filename="../UI/UserInterface.py" line="1783"/> <source>Check for Updates</source> <translation>Controlla per aggiornamenti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806"/> + <location filename="../UI/UserInterface.py" line="1780"/> <source>Check for &Updates...</source> <translation>Controlla per &Aggiornamenti...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt4 Documentation</source> <translation>Documentazione PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2516"/> + <location filename="../UI/UserInterface.py" line="2490"/> <source>Open PyQt4 Documentation</source> <translation>Apri documentazione su PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2724"/> + <location filename="../UI/UserInterface.py" line="2698"/> <source>Select Tool Group</source> <translation>Seleziona Tool Group</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2732"/> + <location filename="../UI/UserInterface.py" line="2706"/> <source>Se&ttings</source> <translation>Impos&tazioni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2886"/> + <location filename="../UI/UserInterface.py" line="2861"/> <source>Profiles</source> <translation>Profili</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3631"/> + <location filename="../UI/UserInterface.py" line="3606"/> <source>&Builtin Tools</source> <translation>Tool &Builtin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source>Documentation</source> <translation>Documentazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5306"/> + <location filename="../UI/UserInterface.py" line="5247"/> <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="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Error during updates check</source> <translation>Errore nel controllo per gli update</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>Update available</source> <translation>Aggiornamento disponibile</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3262"/> + <location filename="../UI/UserInterface.py" line="3237"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Numeri di versione</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6829"/> + <location filename="../UI/UserInterface.py" line="6770"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3676"/> + <location filename="../UI/UserInterface.py" line="3651"/> <source>Configure Tool Groups ...</source> <translation>Configura Tools Groups...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3680"/> + <location filename="../UI/UserInterface.py" line="3655"/> <source>Configure current Tool Group ...</source> <translation>Configura Tools Groups correnti...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2201"/> + <location filename="../UI/UserInterface.py" line="2175"/> <source>Show external tools</source> <translation>Mostra tool esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196"/> + <location filename="../UI/UserInterface.py" line="2170"/> <source>Show external &tools</source> <translation>Mostra toll &esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>&Cancel</source> <translation>&Cancella</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Could not perform updates check.</source> <translation>Non posso controllare per gli update.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>First time usage</source> <translation>Primo avvio</translation> </message> @@ -75041,52 +75041,52 @@ <translation>Inizializzazione Gestore Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2793"/> + <location filename="../UI/UserInterface.py" line="2768"/> <source>P&lugins</source> <translation>P&lugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2887"/> + <location filename="../UI/UserInterface.py" line="2862"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2375"/> + <location filename="../UI/UserInterface.py" line="2349"/> <source>Plugin Infos</source> <translation>Informazioni su Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2379"/> + <location filename="../UI/UserInterface.py" line="2353"/> <source>Show Plugin Infos</source> <translation>Mostra informazioni sui Plugin</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2354"/> + <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="2349"/> + <source>&Plugin Infos...</source> + <translation>Informazioni su &Plugin...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3623"/> + <source>&Plugin Tools</source> + <translation>Informazioni sui &Plugin Tools</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2380"/> - <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> + <source>Uninstall Plugin</source> + <translation>Disinstalla Plugin</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2375"/> - <source>&Plugin Infos...</source> - <translation>Informazioni su &Plugin...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3648"/> - <source>&Plugin Tools</source> - <translation>Informazioni sui &Plugin Tools</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2406"/> - <source>Uninstall Plugin</source> - <translation>Disinstalla Plugin</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2401"/> <source>&Uninstall Plugin...</source> <translation>Disinstalla Pl&ugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2407"/> + <location filename="../UI/UserInterface.py" line="2381"/> <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> @@ -75096,107 +75096,107 @@ <translation>Attivazione Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2713"/> + <location filename="../UI/UserInterface.py" line="2687"/> <source>Wi&zards</source> <translation>Wi&zards</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3796"/> + <location filename="../UI/UserInterface.py" line="3771"/> <source>&Show all</source> <translation>Mo&stra tutti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3798"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>&Hide all</source> <translation>Nascondi &tutti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show downloadable versions</source> <translation>Mostra versioni scaricabili</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show &downloadable versions...</source> <translation>Mostra &versioni scaricabili...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1821"/> + <location filename="../UI/UserInterface.py" line="1795"/> <source>Show the versions available for download</source> <translation>Mostra le versioni disponibili per il download</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6815"/> + <location filename="../UI/UserInterface.py" line="6756"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versioni disponibili</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2414"/> + <location filename="../UI/UserInterface.py" line="2388"/> <source>Plugin Repository</source> <translation>Repository Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2414"/> + <location filename="../UI/UserInterface.py" line="2388"/> <source>Plugin &Repository...</source> <translation>&Repository Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419"/> - <source>Show Plugins available for download</source> - <translation>Mostra Plugin disponibili per il download</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2421"/> - <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="2393"/> + <source>Show Plugins available for download</source> + <translation>Mostra Plugin disponibili per il download</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2395"/> + <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="2367"/> <source>Install Plugins</source> <translation>Installa Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2388"/> + <location filename="../UI/UserInterface.py" line="2362"/> <source>&Install Plugins...</source> <translation>&Installa Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2394"/> + <location filename="../UI/UserInterface.py" line="2368"/> <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="2070"/> + <location filename="../UI/UserInterface.py" line="2044"/> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2065"/> + <location filename="../UI/UserInterface.py" line="2039"/> <source>Mini &Editor...</source> <translation>Mini &Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2071"/> + <location filename="../UI/UserInterface.py" line="2045"/> <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="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Toolbars</source> <translation>Toolbars</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Tool&bars...</source> <translation>Tool&bars...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2234"/> + <location filename="../UI/UserInterface.py" line="2208"/> <source>Configure toolbars</source> <translation>Configura toolbars</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235"/> + <location filename="../UI/UserInterface.py" line="2209"/> <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> @@ -75206,272 +75206,272 @@ <translation>Ripristino toolbarmanager...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>Multiproject-Viewer</source> <translation>Multiproject-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>&Multiproject-Viewer</source> <translation>&Multiproject-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>External Tools</source> <translation>Tool esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6168"/> + <location filename="../UI/UserInterface.py" line="6109"/> <source>Save session</source> <translation>Salva sessione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source>Read session</source> <translation>Leggi sessione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3058"/> + <location filename="../UI/UserInterface.py" line="3033"/> <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="3072"/> + <location filename="../UI/UserInterface.py" line="3047"/> <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="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request Feature</source> <translation>Richiedi funzionalità</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request &Feature...</source> <translation>Richiedi &funzionalità...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1860"/> + <location filename="../UI/UserInterface.py" line="1834"/> <source>Send a feature request</source> <translation>Invia una richiesta di funzionalità</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1862"/> + <location filename="../UI/UserInterface.py" line="1836"/> <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="3051"/> + <location filename="../UI/UserInterface.py" line="3026"/> <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="3079"/> + <location filename="../UI/UserInterface.py" line="3054"/> <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="3086"/> + <location filename="../UI/UserInterface.py" line="3061"/> <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="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>Horizontal Toolbox</source> <translation>Barra dei comandi orizzontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>&Horizontal Toolbox</source> <translation>Toolbox &Orizzontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1624"/> + <location filename="../UI/UserInterface.py" line="1598"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Abilita/Disabilita una finestra la toolbox orizzontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1626"/> + <location filename="../UI/UserInterface.py" line="1600"/> <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="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>Restart application</source> <translation>Riavvia applicazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <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="2802"/> + <location filename="../UI/UserInterface.py" line="2777"/> <source>Configure...</source> <translation>Configura...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3065"/> + <location filename="../UI/UserInterface.py" line="3040"/> <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="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Switch between tabs</source> <translation>Cicla tra le linguette</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>Export Preferences</source> <translation>Esporta preferenze</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>E&xport Preferences...</source> <translation>E&sporta preferenze...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160"/> + <location filename="../UI/UserInterface.py" line="2134"/> <source>Export the current configuration</source> <translation>Esporta la configurazione attuale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2162"/> + <location filename="../UI/UserInterface.py" line="2136"/> <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="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>Import Preferences</source> <translation>Importa preferenze</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>I&mport Preferences...</source> <translation>I&mporta preferenze...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2174"/> + <location filename="../UI/UserInterface.py" line="2148"/> <source>Import a previously exported configuration</source> <translation>Importa una configurazione precedentemente esportata</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176"/> + <location filename="../UI/UserInterface.py" line="2150"/> <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="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Show next</source> <translation>Mostra successivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Show previous</source> <translation>Mostra precedente</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>Left Sidebar</source> <translation>Barra laterale sinistra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>&Left Sidebar</source> <translation>Barra &laterale sinistra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1638"/> + <location filename="../UI/UserInterface.py" line="1612"/> <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="1613"/> + <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="1635"/> + <source>Bottom Sidebar</source> + <translation>Barra in basso</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>&Bottom Sidebar</source> + <translation>Barra in &basso</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1639"/> - <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="1661"/> - <source>Bottom Sidebar</source> - <translation>Barra in basso</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>&Bottom Sidebar</source> - <translation>Barra in &basso</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1665"/> <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="1667"/> + <location filename="../UI/UserInterface.py" line="1641"/> <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="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>&Debug-Viewer</source> <translation>&Debug-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL Browser</source> <translation>SQL Browser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL &Browser...</source> <translation>SQL &Browser...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2057"/> + <location filename="../UI/UserInterface.py" line="2031"/> <source>Browse a SQL database</source> <translation>Naviga un database SQL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2058"/> + <location filename="../UI/UserInterface.py" line="2032"/> <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> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>Icon Editor</source> <translation>Editor di icone</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>&Icon Editor...</source> <translation>Editor di &icone...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt 3 support</source> <translation>Supporto Qt3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>PySide Documentation</source> <translation>Documentazione PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>Py&Side Documentation</source> <translation>Documentazione Py&Side</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2622"/> + <location filename="../UI/UserInterface.py" line="2596"/> <source>Open PySide Documentation</source> <translation>Apri documentazione PySide</translation> </message> @@ -75481,220 +75481,220 @@ <translation type="obsolete"><p>L'inizio della documentazione di PySide non è stato configurato.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1325"/> + <location filename="../UI/UserInterface.py" line="1299"/> <source>{0} - Passive Mode</source> <translation>{0} - Passive Debug Mode</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332"/> + <location filename="../UI/UserInterface.py" line="1306"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} -{1} Passive Debug Mode</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1336"/> + <location filename="../UI/UserInterface.py" line="1310"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} -{1} - {2} - Passive Debug Mode</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3161"/> + <location filename="../UI/UserInterface.py" line="3136"/> <source>External Tools/{0}</source> <translation>Tool Esterni/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <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="4551"/> + <location filename="../UI/UserInterface.py" line="4492"/> <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="4618"/> + <location filename="../UI/UserInterface.py" line="4559"/> <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="4669"/> + <location filename="../UI/UserInterface.py" line="4610"/> <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="4711"/> + <location filename="../UI/UserInterface.py" line="4652"/> <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="4779"/> + <location filename="../UI/UserInterface.py" line="4720"/> <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="4834"/> + <location filename="../UI/UserInterface.py" line="4775"/> <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="4855"/> + <location filename="../UI/UserInterface.py" line="4796"/> <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="4948"/> + <location filename="../UI/UserInterface.py" line="4889"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>No toolgroup entry '{0}' found.</source> <translation>Nessun gruppo '{0}' trovato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4996"/> + <location filename="../UI/UserInterface.py" line="4937"/> <source>Starting process '{0} {1}'. </source> <translation>Avvio processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5088"/> + <location filename="../UI/UserInterface.py" line="5029"/> <source>Process '{0}' has exited. </source> <translation>Il processo '{0}' è terminato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <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="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <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="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <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="6105"/> + <location filename="../UI/UserInterface.py" line="6046"/> <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="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <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="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <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="6613"/> + <location filename="../UI/UserInterface.py" line="6554"/> <source>Trying host {0}</source> <translation>Tento su host {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="973"/> + <location filename="../UI/UserInterface.py" line="955"/> <source>Cooperation</source> <translation>Cooperazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1030"/> + <location filename="../UI/UserInterface.py" line="1004"/> <source>Symbols</source> <translation>Simboli</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1038"/> + <location filename="../UI/UserInterface.py" line="1012"/> <source>Numbers</source> <translation>Numeri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1728"/> + <location filename="../UI/UserInterface.py" line="1702"/> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>File scorciatoi tastiera (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python 3 Documentation</source> <translation>Documentazione Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python &3 Documentation</source> <translation>Documentazione Python &3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2532"/> <source>Open Python 3 Documentation</source> <translation>Apri documentazione Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python 2 Documentation</source> <translation>Documentazione Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python &2 Documentation</source> <translation>Documentazione Python &2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2576"/> + <location filename="../UI/UserInterface.py" line="2550"/> <source>Open Python 2 Documentation</source> <translation>Apri documentazione Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2552"/> <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="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6670"/> + <location filename="../UI/UserInterface.py" line="6611"/> <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="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <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> @@ -75719,568 +75719,568 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New Window</source> <translation type="unfinished">Nuova finestra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New &Window</source> <translation type="unfinished">Nuova &Finestra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1904"/> + <location filename="../UI/UserInterface.py" line="1878"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1906"/> + <location filename="../UI/UserInterface.py" line="1880"/> <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="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>&Snapshot...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2129"/> + <location filename="../UI/UserInterface.py" line="2103"/> <source>Take snapshots of a screen region</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2131"/> + <location filename="../UI/UserInterface.py" line="2105"/> <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="4925"/> + <location filename="../UI/UserInterface.py" line="4866"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6885"/> + <location filename="../UI/UserInterface.py" line="6826"/> <source>Select Workspace Directory</source> <translation type="unfinished">Seleziona cartella di lavoro</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1595"/> + <location filename="../UI/UserInterface.py" line="1569"/> <source>Left Toolbox</source> <translation type="unfinished">Barra degli strumenti sinistra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1607"/> + <location filename="../UI/UserInterface.py" line="1581"/> <source>Right Toolbox</source> <translation type="unfinished">Barra degli strumenti destra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1461"/> + <location filename="../UI/UserInterface.py" line="1435"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1463"/> + <location filename="../UI/UserInterface.py" line="1437"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1478"/> + <location filename="../UI/UserInterface.py" line="1452"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1454"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1470"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1472"/> + <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1488"/> + <source>Switch the input focus to the Shell window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1490"/> + <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1498"/> - <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1514"/> - <source>Switch the input focus to the Shell window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1516"/> - <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> <source>&File-Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1530"/> + <location filename="../UI/UserInterface.py" line="1504"/> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1532"/> + <location filename="../UI/UserInterface.py" line="1506"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Lo&g-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1547"/> + <location filename="../UI/UserInterface.py" line="1521"/> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1523"/> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>&Task-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1539"/> + <source>Switch the input focus to the Task-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Templ&ate-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1557"/> + <source>Switch the input focus to the Template-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1559"/> - <source>&Task-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1565"/> - <source>Switch the input focus to the Task-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Templ&ate-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1583"/> - <source>Switch the input focus to the Template-Viewer window.</source> + <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1569"/> + <source>&Left Toolbox</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1572"/> + <source>Toggle the Left Toolbox window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> + <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1581"/> + <source>&Right Toolbox</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1585"/> - <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1595"/> - <source>&Left Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1598"/> - <source>Toggle the Left Toolbox window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1599"/> - <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1607"/> - <source>&Right Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1611"/> <source>Toggle the Right Toolbox window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1612"/> + <location filename="../UI/UserInterface.py" line="1586"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right 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="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>Right Sidebar</source> <translation type="unfinished">Barra laterale destra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>&Right Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1651"/> + <location filename="../UI/UserInterface.py" line="1625"/> <source>Toggle the right sidebar window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1653"/> + <location filename="../UI/UserInterface.py" line="1627"/> <source><b>Toggle the right sidebar window</b><p>If the right 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="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Cooperation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Co&operation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1681"/> + <location filename="../UI/UserInterface.py" line="1655"/> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1683"/> + <location filename="../UI/UserInterface.py" line="1657"/> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Symbols-Viewer</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>S&ymbols-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1690"/> + <source>Switch the input focus to the Symbols-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1692"/> + <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Numbers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Num&bers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1708"/> + <source>Switch the input focus to the Numbers-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1710"/> - <source>S&ymbols-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1716"/> - <source>Switch the input focus to the Symbols-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1718"/> - <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Numbers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Num&bers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1734"/> - <source>Switch the input focus to the Numbers-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1736"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2762"/> + <location filename="../UI/UserInterface.py" line="2736"/> <source>&Windows</source> <translation type="unfinished">&Finestre</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1567"/> + <location filename="../UI/UserInterface.py" line="1541"/> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>IRC</source> <translation type="unfinished">IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>&IRC</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>Meta+Shift+I</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1699"/> + <location filename="../UI/UserInterface.py" line="1673"/> <source>Switch the input focus to the IRC window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1701"/> + <location filename="../UI/UserInterface.py" line="1675"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1936"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1937"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-Designer</source> + <source>Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-&Designer...</source> + <source>Qt-&Linguist...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1962"/> - <source>Start Qt-Designer</source> + <source>Start Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1963"/> - <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-&Linguist...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1988"/> - <source>Start Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1989"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt5 Documentation</source> <translation type="unfinished">Documentazione Qt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt&5 Documentation</source> <translation type="unfinished">Documentazione Qt&4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2499"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open Qt5 Documentation</source> <translation type="unfinished">Apri documentazione su Qt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3097"/> + <location filename="../UI/UserInterface.py" line="3072"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293"/> + <location filename="../UI/UserInterface.py" line="2267"/> <source>Manage the saved SSL certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295"/> + <location filename="../UI/UserInterface.py" line="2269"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2283"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311"/> + <location filename="../UI/UserInterface.py" line="2285"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt5 Documentation</source> <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2509"/> <source>Open PyQt5 Documentation</source> <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5313"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>L'inizio della documentazione di PyQt4 non è stato configurato.</p> {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2560"/> + <location filename="../UI/UserInterface.py" line="2534"/> <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="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836"/> - <source>Show Error Log</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1832"/> - <source>Show Error &Log...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1837"/> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6608"/> - <source>Version Check</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1408"/> - <source>Open a new eric6 instance</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1410"/> - <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1773"/> - <source><b>Helpviewer</b><p>Display the eric6 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"><b>Helpviewer</b><p>Visualizza il browser web di eric6. 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="1810"/> + <source>Show Error Log</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1806"/> + <source>Show Error &Log...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1811"/> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6549"/> + <source>Version Check</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1382"/> + <source>Open a new eric6 instance</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1384"/> + <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1747"/> + <source><b>Helpviewer</b><p>Display the eric6 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"><b>Helpviewer</b><p>Visualizza il browser web di eric6. 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="1784"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> <translation type="unfinished"><b>Controlla per Update...</b><p>Controlla su internet per aggiornamenti di eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823"/> + <location filename="../UI/UserInterface.py" line="1797"/> <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> <translation type="unfinished"><b>Mostra versioni scaricabili...</b><p>Mostra le versioni di eric6 disponibili per il download.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 Web Browser</source> <translation type="unfinished">Web Browser di eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 &Web Browser...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2099"/> + <location filename="../UI/UserInterface.py" line="2073"/> <source>Start the eric6 Web Browser</source> <translation type="unfinished">Avvia il Browser Web di eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2075"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2115"/> + <location filename="../UI/UserInterface.py" line="2089"/> <source>Start the eric6 Icon Editor</source> <translation type="unfinished">Avvia l'editor di icone di eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2117"/> + <location filename="../UI/UserInterface.py" line="2091"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation type="unfinished"><b>Editor di icone</b><p>Avvia l'editor di icone di eric6 per modificare delle icone semplici.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2203"/> + <location filename="../UI/UserInterface.py" line="2177"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> <translation type="unfinished"><b>Mostra tool esterni</b><p>Mostra un dialogo con percorso e versione di tutti i tool esterni usati da eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2602"/> + <location filename="../UI/UserInterface.py" line="2576"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.</p></source> <translation type="unfinished"><b>Documentazione API Eric</b><p>Mostra la documentazione delle API di Eric. La posizione della documentazione è la subdirectory Documentation/Source della directory in cui è installato eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished">Le Qt v.3 non sono supportate da eric6.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished">L'update alla versione <b>{0}</b> di eric6 è disponibile presso <b>{1}</b>. Vuoi prenderlo?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric6 è aggiornato</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>You are using the latest version of eric6</source> <translation type="unfinished">Stai usando l'ultima versione di eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">eric6 non è ancora stato configurato. Il dialogo di configurazione verrà avviato.</translation> </message> @@ -76290,87 +76290,87 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3651"/> + <location filename="../UI/UserInterface.py" line="3626"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3723"/> + <location filename="../UI/UserInterface.py" line="3698"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6624"/> + <location filename="../UI/UserInterface.py" line="6565"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>&Hex Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2083"/> + <location filename="../UI/UserInterface.py" line="2057"/> <source>Start the eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2085"/> + <location filename="../UI/UserInterface.py" line="2059"/> <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327"/> + <location filename="../UI/UserInterface.py" line="2301"/> <source>Clear private data</source> <translation type="unfinished">Pulisci dati privati</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2303"/> <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1376"/> + <location filename="../UI/UserInterface.py" line="1350"/> <source>Save session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1381"/> + <location filename="../UI/UserInterface.py" line="1355"/> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>Load session</source> <translation type="unfinished">Carica sessione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1389"/> + <location filename="../UI/UserInterface.py" line="1363"/> <source>Load session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1394"/> + <location filename="../UI/UserInterface.py" line="1368"/> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -76385,102 +76385,102 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6690"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="953"/> + <location filename="../UI/UserInterface.py" line="938"/> <source>Code Documentation Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2485"/> + <location filename="../UI/UserInterface.py" line="2459"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2500"/> + <location filename="../UI/UserInterface.py" line="2474"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2517"/> + <location filename="../UI/UserInterface.py" line="2491"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2624"/> + <location filename="../UI/UserInterface.py" line="2598"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide&2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2643"/> + <location filename="../UI/UserInterface.py" line="2617"/> <source>Open PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2645"/> + <location filename="../UI/UserInterface.py" line="2619"/> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2409"/> <source>Virtualenv Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2403"/> <source>&Virtualenv Manager...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2437"/> + <location filename="../UI/UserInterface.py" line="2411"/> <source><b>Virtualenv Manager</b><p>This opens a dialog to manage the defined Python virtual environments.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2426"/> <source>Virtualenv Configurator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Virtualenv &Configurator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2454"/> + <location filename="../UI/UserInterface.py" line="2428"/> <source><b>Virtualenv Configurator</b><p>This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_pt.ts Sun Jul 08 17:33:25 2018 +0200 +++ b/i18n/eric6_pt.ts Sun Jul 08 18:55:21 2018 +0200 @@ -5766,292 +5766,292 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1827"/> + <location filename="../Debugger/DebugUI.py" line="1825"/> <source>Run Script</source> <translation>Executar Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="178"/> + <location filename="../Debugger/DebugUI.py" line="176"/> <source>&Run Script...</source> <translation>&Executar Script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="183"/> + <location filename="../Debugger/DebugUI.py" line="181"/> <source>Run the current Script</source> <translation>Executar o Script atual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="184"/> + <location filename="../Debugger/DebugUI.py" line="182"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Executar Script</b><p>Definir os argumentos da linha de comandos e executar o script fora do depurador. Poderão gravar-se primeiro as alterações que estejam por gravar.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>Run Project</source> <translation>Executar Projeto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="193"/> + <location filename="../Debugger/DebugUI.py" line="191"/> <source>Run &Project...</source> <translation>Executar &Projeto...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="198"/> + <location filename="../Debugger/DebugUI.py" line="196"/> <source>Run the current Project</source> <translation>Executar Projeto actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="199"/> + <location filename="../Debugger/DebugUI.py" line="197"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Executar Projeto</b><p>Definir os argumentos da linha de comandos e executar o projeto atual fora do depurador. Poderão gravar-se primeiro as alterações dos ficheiros do projeto que estejam por gravar.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script</source> <translation>Execução Cobertura de Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script...</source> <translation>Execução Cobertura de Script...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="212"/> + <source>Perform a coverage run of the current Script</source> + <translation>Realizar execução de cobertura do Script actual</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="214"/> - <source>Perform a coverage run of the current Script</source> - <translation>Realizar execução de cobertura do Script actual</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="216"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project...</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="228"/> + <source>Perform a coverage run of the current Project</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="230"/> - <source>Perform a coverage run of the current Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="232"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script</source> <translation>Perfilar Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script...</source> <translation>Perfilar Script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="246"/> + <location filename="../Debugger/DebugUI.py" line="244"/> <source>Profile the current Script</source> <translation>Perfilar o Script atual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="247"/> + <location filename="../Debugger/DebugUI.py" line="245"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Perfilar Script</b><p>Define os argumentos da linha de comandos e perfila o script. Antes, poderá gravar as alterações.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project</source> <translation>Perfilar Projeto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project...</source> <translation>Perfilar Projeto...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="258"/> + <source>Profile the current Project</source> + <translation>Perfilar o Projeto atual</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="260"/> - <source>Profile the current Project</source> - <translation>Perfilar o Projeto atual</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="262"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Perfilar Projeto</b><p>Define os argumentos da linha de comandos e perfila o projeto atual. Poderá gravar antes os ficheiros alterados por gravar.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1962"/> + <location filename="../Debugger/DebugUI.py" line="1960"/> <source>Debug Script</source> <translation>Depurar Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="271"/> + <location filename="../Debugger/DebugUI.py" line="269"/> <source>&Debug Script...</source> <translation>&Depurar Script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="276"/> + <location filename="../Debugger/DebugUI.py" line="274"/> <source>Debug the current Script</source> <translation>Depurar o Script atual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="277"/> + <location filename="../Debugger/DebugUI.py" line="275"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Depurar Script</b><p>Definir os argumentos da linha de comandos e definir a linha atual para que seja a primeira instrução Python executável da janela do editor atual. Poderão gravar-se primeiro as alterações que estejam por gravar.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>Debug Project</source> <translation>Depurar projeto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="287"/> + <location filename="../Debugger/DebugUI.py" line="285"/> <source>Debug &Project...</source> <translation>Depurar &Projeto...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="290"/> + <source>Debug the current Project</source> + <translation>Depurar o Projeto atual</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="292"/> - <source>Debug the current Project</source> - <translation>Depurar o Projeto atual</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="294"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Depurar Projeto</b><p>Definir os argumentos da linha de comandos e definir a linha atual para que seja a primeira instrução Python executável do script principal do projeto atual. Poderão gravar-se primeiro as alterações dos ficheiros do projeto que estejam por gravar.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="306"/> <source>Restart the last debugged script</source> <translation>Reiniciar o último script depurado</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="325"/> + <location filename="../Debugger/DebugUI.py" line="323"/> <source>Stop the running script.</source> <translation>Parar o script em execução.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>Continue</source> <translation>Continuar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>&Continue</source> <translation>&Continuar</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="338"/> + <source>Continue running the program from the current line</source> + <translation>Continuar a execução do programa a partir da linha atual</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="340"/> - <source>Continue running the program from the current line</source> - <translation>Continuar a execução do programa a partir da linha atual</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="342"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Continue</b><p>Continuar a execução do programa a partir da linha atual. O programa parará quando terine ou alcance outro ponto de interrupção.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue to Cursor</source> <translation>Continuar até ao cursor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue &To Cursor</source> <translation>Continuar a&té ao cursor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="356"/> + <location filename="../Debugger/DebugUI.py" line="354"/> <source>Continue running the program from the current line to the current cursor position</source> <translation>Continuar a execução do programa a partir da linha atual até à posição atual do cursor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="359"/> + <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>Continuar até Cursor</b><p>Continuar a execução do programa desde a linha atual até à posição atual do cursor.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Single Step</source> <translation>Passo Único</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Sin&gle Step</source> <translation>Passo &Único</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="392"/> + <location filename="../Debugger/DebugUI.py" line="390"/> <source>Execute a single Python statement</source> <translation>Executar uma única instrução Python</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="393"/> + <location filename="../Debugger/DebugUI.py" line="391"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>Passo Único</b><p>Executa uma.única instrução Python. Se a instrução é um <tt>import<tt>, um construtor de classe, uma chamada de função ou método, então o controlo é devolvido ao depurador na instrução seguinte.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step Over</source> <translation>Saltar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step &Over</source> <translation>&Saltar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="408"/> + <location filename="../Debugger/DebugUI.py" line="406"/> <source>Execute a single Python statement staying in the current frame</source> <translation>Executar uma única instrução Python e ficar no marco atual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="411"/> + <location filename="../Debugger/DebugUI.py" line="409"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Out</source> <translation>Sair</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Ou&t</source> <translation>Sai&r</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="427"/> + <location filename="../Debugger/DebugUI.py" line="425"/> <source>Execute Python statements until leaving the current frame</source> <translation>Executar instruções Python até sair do marco atual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="430"/> + <location filename="../Debugger/DebugUI.py" line="428"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>Stop</source> <translation>Parar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>&Stop</source> <translation>&Parar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="446"/> + <location filename="../Debugger/DebugUI.py" line="444"/> <source>Stop debugging</source> <translation>Parar de depurar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="447"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Parar</b><p>Parar a sessão de depuração.</p></translation> </message> @@ -6096,172 +6096,172 @@ <translation type="obsolete"><b>Executar</b><p>Executa instrução de uma linha no contexto atual do programa depurado.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Variables Type Filter</source> <translation>Filtro do Tipo de Varáveis</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Varia&bles Type Filter...</source> <translation>Filtro do Tipo de &Variáveis...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="456"/> + <source>Configure variables type filter</source> + <translation>Configurar o filtro de tipo de variáveis</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="458"/> - <source>Configure variables type filter</source> - <translation>Configurar o filtro de tipo de variáveis</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="460"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation><b>Filtro de Tipo de Variáveis</b><p>Configurar o filtro do tipo de variáveis. Apenas se mostrarão as variáveis que não estejam selecionadas, na janela global ou local, durante a sessão de depuração.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>Exceptions Filter</source> <translation>Filtro de Exceções</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>&Exceptions Filter...</source> <translation>Filtro de &Exceções...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="472"/> + <source>Configure exceptions filter</source> + <translation>Configurar filtro de exceções</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="474"/> - <source>Configure exceptions filter</source> - <translation>Configurar filtro de exceções</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="476"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>Filtro de Exceções</b><p>Configurar o filtro de exceções. Apenas os tipos de exceções que estão listadas serão ressaltadas durante a sessão de depuração.</p><p>Por favor tenha em conta que todas as exceções sem tratamento serão ressaltadas independentemente da lista do filtro.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>Ignored Exceptions</source> <translation>Exceções Ignoradas</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>&Ignored Exceptions...</source> <translation>Exceções &Ignoradas...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="489"/> + <source>Configure ignored exceptions</source> + <translation>Configurar exceções ignoradas</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="491"/> - <source>Configure ignored exceptions</source> - <translation>Configurar exceções ignoradas</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="493"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>Exceções Ignoradas</b><p>Configura as exceções ignoradas. Apenas os tipos de exceções que não estão listadas são realçadas durante uma sessão de depuração.</p><p>Note-se que não se podem ignorar as exceções sem tratamento.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="512"/> + <location filename="../Debugger/DebugUI.py" line="510"/> <source>Toggle Breakpoint</source> <translation>Alternar Pontos de Interrupção</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="506"/> + <location filename="../Debugger/DebugUI.py" line="504"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="513"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Alternar Ponto de Interrupção</b><p>Alterna um ponto de instrução na linha atual do editor atual.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="527"/> + <location filename="../Debugger/DebugUI.py" line="525"/> <source>Edit Breakpoint</source> <translation>Editar o Ponto de Interrupção</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Edit Breakpoint...</source> <translation>Editar o Ponto de Interrupção...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="528"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>Editar Ponto de Interrupção</b><p>Abre uma caixa de diálogo para editar as propriedades dos pontos de interrupção. Funciona na linha atual do editor atual.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="543"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Next Breakpoint</source> <translation>Ponto de Interrupção Seguinte</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="542"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>Ponto de Interrupção Seguinte</b><p>Vai ao próximo ponto de interrupção do editor atual.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="558"/> + <location filename="../Debugger/DebugUI.py" line="556"/> <source>Previous Breakpoint</source> <translation>Ponto de Interrupção Anterior</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="549"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="557"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>Ponto de Interrupção Anterior</b><p>Vai ao ponto de interrupção anterior do editor atual.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="572"/> + <location filename="../Debugger/DebugUI.py" line="570"/> <source>Clear Breakpoints</source> <translation>Limpar Pontos de Interrupção</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="564"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="573"/> + <location filename="../Debugger/DebugUI.py" line="571"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation><b>Limpar Pontos de Interrupção</b><p>Limpar pontos de interrupção dos editores todos.</p></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="597"/> + <source>&Debug</source> + <translation>&Depurar</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="599"/> - <source>&Debug</source> - <translation>&Depurar</translation> + <source>&Start</source> + <translation>&Iniciar</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="601"/> - <source>&Start</source> - <translation>&Iniciar</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="603"/> <source>&Breakpoints</source> <translation>Pontos de &Interrupção</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="646"/> + <location filename="../Debugger/DebugUI.py" line="644"/> <source>Start</source> <translation>Iniciar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="660"/> + <location filename="../Debugger/DebugUI.py" line="658"/> <source>Debug</source> <translation>Depurar</translation> </message> @@ -6276,97 +6276,97 @@ <translation type="obsolete"><p><b>{0}</b> terminou com estado de saída de {1}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1100"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>O programa a depurar tem um erro de sintaxe não especificado.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1119"/> + <location filename="../Debugger/DebugUI.py" line="1117"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation><p>O ficheiro <b>{0}</b> tem um erro de sintaxe <b>{1}</b> na linha <b>{2}</b>, caráter <b>{3}</b>.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1137"/> + <location filename="../Debugger/DebugUI.py" line="1135"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Ocurreu uma exceção sem tratamento. Ver a janela da shell para mais detalhes.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1184"/> + <location filename="../Debugger/DebugUI.py" line="1182"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation><p>O programa depurado provocou a exceção <b>{0}</b><br>"<b>{1}</b>"<br>Ficheiro: <b>{2}</b>, Linha :<b>{3}</b></p><p>Interromper aqui?</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1199"/> + <location filename="../Debugger/DebugUI.py" line="1197"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>O programa depurado provocou a exceção <b>{0}</b><br>"<b>{1}</b>"</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1262"/> + <location filename="../Debugger/DebugUI.py" line="1260"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>O programa a depurar acabou inesperadamente.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source>Breakpoint Condition Error</source> <translation>Erro de Condição de Ponto de Interrupção</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>A condição do ponto de interrupção <b>{0}, {1}</b>tem um erro de sintaxe.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source>Watch Expression Error</source> <translation>Observar Erro de Expressão</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1399"/> + <location filename="../Debugger/DebugUI.py" line="1397"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1403"/> + <location filename="../Debugger/DebugUI.py" line="1401"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1409"/> + <location filename="../Debugger/DebugUI.py" line="1407"/> <source>Watch expression already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1576"/> + <location filename="../Debugger/DebugUI.py" line="1574"/> <source>Coverage of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1563"/> + <location filename="../Debugger/DebugUI.py" line="1561"/> <source>Coverage of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>There is no main script defined for the current project. Aborting</source> <translation>O projeto atual não tem um script principal definido. A cancelar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1708"/> + <location filename="../Debugger/DebugUI.py" line="1706"/> <source>Profile of Project</source> <translation>Perfil de Projeto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1695"/> + <location filename="../Debugger/DebugUI.py" line="1693"/> <source>Profile of Script</source> <translation>Perfil do Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>O projeto atual não tem um script principal definido. Impossível depurar.</translation> </message> @@ -6381,7 +6381,7 @@ <translation type="obsolete">Introduzir a instrução a executar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1040"/> <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> <translation type="unfinished"></translation> </message> @@ -6392,7 +6392,7 @@ <translation type="obsolete">"{0}" terminou com o estado de saída {1}.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1069"/> + <location filename="../Debugger/DebugUI.py" line="1067"/> <source>Program terminated</source> <translation>Programa Terminado</translation> </message> @@ -6407,83 +6407,83 @@ <translation type="obsolete">"{0}" terminou com o estado de saída {1}.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="304"/> + <location filename="../Debugger/DebugUI.py" line="302"/> <source>Restart</source> <translation>Reiniciar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="310"/> + <location filename="../Debugger/DebugUI.py" line="308"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation><b>Reiniciar</b><p>Define os argumentos da linha de comandos e define a linha atual como a primeira instrução Python executável do último script depurado. Poderão gravar-se primeiro as alterações não gravadas.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="326"/> + <location filename="../Debugger/DebugUI.py" line="324"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation><b>Parar</b><p>Parar o script em execução na instalação de retaguarda do depurador.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1248"/> + <location filename="../Debugger/DebugUI.py" line="1246"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> + <location filename="../Debugger/DebugUI.py" line="1034"/> <source><p>Message: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1045"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1055"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>Message: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1060"/> <source>The program has terminated with an exit status of {0}. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1065"/> + <location filename="../Debugger/DebugUI.py" line="1063"/> <source>"{0}" has terminated with an exit status of {1}. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1074"/> + <location filename="../Debugger/DebugUI.py" line="1072"/> <source>The program has terminated with an exit status of {0}. {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1078"/> + <location filename="../Debugger/DebugUI.py" line="1076"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>Move Instruction Pointer to Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>&Jump To Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="372"/> + <location filename="../Debugger/DebugUI.py" line="370"/> <source>Skip the code from the current line to the current cursor position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="375"/> + <location filename="../Debugger/DebugUI.py" line="373"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation type="unfinished"></translation> </message> @@ -6491,52 +6491,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="../Debugger/DebugViewer.py" line="174"/> + <location filename="../Debugger/DebugViewer.py" line="145"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>Introduzir padrões de expressões regulares separados por ';' para definir os filtros de variáveis. </translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="178"/> + <location filename="../Debugger/DebugViewer.py" line="149"/> <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>Introduza padrões de expressões regulares separados por ';' para definir os filtros de variáveis. Todos os atributos de classes e variáveis que coincidam com uma das expressões não se mostrarão na lista de cima.</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="184"/> + <location filename="../Debugger/DebugViewer.py" line="155"/> <source>Set</source> <translation>Definir</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="159"/> + <location filename="../Debugger/DebugViewer.py" line="130"/> <source>Source</source> <translation>Fonte</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="261"/> + <location filename="../Debugger/DebugViewer.py" line="226"/> <source>Threads:</source> <translation>Segmentos:</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation>Nome</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation>Estado</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="520"/> + <location filename="../Debugger/DebugViewer.py" line="457"/> <source>waiting at breakpoint</source> <translation>à espera no ponto de interrupção</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="522"/> + <location filename="../Debugger/DebugViewer.py" line="459"/> <source>running</source> <translation>a executar</translation> </message> @@ -41743,75 +41743,35 @@ <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="463"/> <source>Shell</source> - <translation>Shell</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="469"/> - <source>Select to get a separate shell window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="501"/> - <source>separate window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="479"/> - <source>Select to embed the shell in the Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="511"/> - <source>embed in Debug-Viewer</source> - <translation type="unfinished"></translation> + <translation type="obsolete">Shell</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="492"/> <source>File-Browser</source> - <translation>Navegador de Ficheiros</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="498"/> - <source>Select to get a separate file browser window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="508"/> - <source>Select to embed the file browser in the Debug-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="518"/> - <source>Select to embed the file browser in the Project-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="521"/> - <source>embed in Project-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="533"/> + <translation type="obsolete">Navegador de Ficheiros</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="461"/> <source>Tabs</source> <translation>Separadores</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="539"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="467"/> <source>Show only one close button instead of one for each tab</source> <translation>Apenas mostrar um botão de fechar em vez de um por separador</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="562"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="490"/> <source>Reset layout to factory defaults</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="244"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="223"/> <source>System</source> <translation>Sistema</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="226"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="205"/> <source>English</source> <comment>Translate this with your language</comment> <translation>Português</translation> @@ -53412,42 +53372,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="../Project/ProjectBrowser.py" line="71"/> + <location filename="../Project/ProjectBrowser.py" line="65"/> <source>up to date</source> <translation>atualizado</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="72"/> + <location filename="../Project/ProjectBrowser.py" line="66"/> <source>files added</source> <translation>ficheiros adicionados</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="73"/> + <location filename="../Project/ProjectBrowser.py" line="67"/> <source>local modifications</source> <translation>alterações locais</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="74"/> + <location filename="../Project/ProjectBrowser.py" line="68"/> <source>files removed</source> <translation>ficheiros apagados</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="75"/> + <location filename="../Project/ProjectBrowser.py" line="69"/> <source>files replaced</source> <translation>ficheiros substituidos</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="76"/> + <location filename="../Project/ProjectBrowser.py" line="70"/> <source>update required</source> <translation>atualização necessária</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="77"/> + <location filename="../Project/ProjectBrowser.py" line="71"/> <source>conflict</source> <translation>conflito</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="434"/> + <location filename="../Project/ProjectBrowser.py" line="398"/> <source>unknown status</source> <translation>estado desconhecido</translation> </message> @@ -75957,958 +75917,958 @@ <translation>A restaurar Gestor da Barra de Ferramentas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>Project-Viewer</source> <translation>Visor de Projeto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>Multiproject-Viewer</source> <translation>Visor de Multiprojeto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Debug-Viewer</source> <translation>Visor de Depuração</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="973"/> + <location filename="../UI/UserInterface.py" line="955"/> <source>Cooperation</source> <translation>Colaboração</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1030"/> + <location filename="../UI/UserInterface.py" line="1004"/> <source>Symbols</source> <translation>Símbolos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Log-Viewer</source> <translation>Visor de Registos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Task-Viewer</source> <translation>Visor de Tarefas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Template-Viewer</source> <translation>Visor de Modelos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1038"/> + <location filename="../UI/UserInterface.py" line="1012"/> <source>Numbers</source> <translation>Números</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>File-Browser</source> <translation>Navegador de Ficheiros</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Shell</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>Horizontal Toolbox</source> <translation>Caixa de Ferramentas Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1325"/> + <location filename="../UI/UserInterface.py" line="1299"/> <source>{0} - Passive Mode</source> <translation>{0} - Modo Passivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332"/> + <location filename="../UI/UserInterface.py" line="1306"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - Modo Passivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1336"/> + <location filename="../UI/UserInterface.py" line="1310"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - Modo Passivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Quit</source> <translation>Sair</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>&Quit</source> <translation>Sai&r</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1365"/> + <location filename="../UI/UserInterface.py" line="1339"/> <source>Quit the IDE</source> <translation>Sair do IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1366"/> + <location filename="../UI/UserInterface.py" line="1340"/> <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>Sair do IDE</b><p>Isto sai do IDE. Pode gravar antes as alterações. Qualquer programa Python que esteja a ser depurado será parado e as preferências serão escritas no disco.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1421"/> + <location filename="../UI/UserInterface.py" line="1395"/> <source>Edit Profile</source> <translation>Perfil de Edição</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1401"/> <source>Activate the edit view profile</source> <translation>Ativar o perfil de vista de edição</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1403"/> + <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>Perfil de Edição</b><p>Activa o "Perfil da Vista de Edição". As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo "Configuração de Vista do Perfil"</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1412"/> + <source>Debug Profile</source> + <translation>Perfil de Depuração</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1418"/> + <source>Activate the debug view profile</source> + <translation>Ativar o perfile de vista de depuração</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1420"/> + <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>Perfil de Depuração</b><p>Activa o "Perfile da Vista de Depuração". As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo "Configuração de Vista do Perfil"</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1429"/> - <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>Perfil de Edição</b><p>Activa o "Perfil da Vista de Edição". As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo "Configuração de Vista do Perfil"</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1438"/> - <source>Debug Profile</source> - <translation>Perfil de Depuração</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1444"/> - <source>Activate the debug view profile</source> - <translation>Ativar o perfile de vista de depuração</translation> + <source>&Project-Viewer</source> + <translation>Visor de &Projeto</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1429"/> + <source>Alt+Shift+P</source> + <translation></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1446"/> + <source>&Multiproject-Viewer</source> + <translation>Visor de &Multiprojeto</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1446"/> - <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>Perfil de Depuração</b><p>Activa o "Perfile da Vista de Depuração". As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo "Configuração de Vista do Perfil"</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>&Project-Viewer</source> - <translation>Visor de &Projeto</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>Alt+Shift+P</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> - <source>&Multiproject-Viewer</source> - <translation>Visor de &Multiprojeto</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> <source>Alt+Shift+M</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>&Debug-Viewer</source> <translation>Visor de &Depuração</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Alt+Shift+D</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>&Shell</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Alt+Shift+S</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>Alt+Shift+F</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Alt+Shift+G</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Alt+Shift+T</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Alt+Shift+A</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>&Horizontal Toolbox</source> <translation>Caixa de Ferramentas &Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1624"/> + <location filename="../UI/UserInterface.py" line="1598"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Alternar a janela de Caixa de Ferramentas Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1626"/> + <location filename="../UI/UserInterface.py" line="1600"/> <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="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>Left Sidebar</source> <translation>Barra Esquerda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>&Left Sidebar</source> <translation>Barra Lateral &Esquerda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1638"/> + <location filename="../UI/UserInterface.py" line="1612"/> <source>Toggle the left sidebar window</source> <translation>Alternar a janela da barra lateral esquerda</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1613"/> + <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="1635"/> + <source>Bottom Sidebar</source> + <translation>Barra Inferior</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>&Bottom Sidebar</source> + <translation>Barra Lateral &Inferior</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1639"/> - <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="1661"/> - <source>Bottom Sidebar</source> - <translation>Barra Inferior</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>&Bottom Sidebar</source> - <translation>Barra Lateral &Inferior</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1665"/> <source>Toggle the bottom sidebar window</source> <translation>Alternar janela da barra lateral inferior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1667"/> + <location filename="../UI/UserInterface.py" line="1641"/> <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>Alternar janela da barra lateral inferior</b><p>Mostra a janela da barra lateral inferior se está escondida. Esconde-a se está visível.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Alt+Shift+O</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Alt+Shift+Y</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1728"/> + <location filename="../UI/UserInterface.py" line="1702"/> <source>Alt+Shift+B</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>What's This?</source> <translation>O que é Isto?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>&What's This?</source> <translation>O &que é Isto?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>Shift+F1</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752"/> + <location filename="../UI/UserInterface.py" line="1726"/> <source>Context sensitive help</source> <translation type="unfinished">Ajuda sensível ao contexto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1753"/> + <location filename="../UI/UserInterface.py" line="1727"/> <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"><b>Mostrar ajuda sensível a contexto</b><p>No modo 'Que é Isto?' o cursor do rato mostra uma flecha com um ponto de interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>Helpviewer</source> <translation>Visor de Ajuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>&Helpviewer...</source> <translation>Visor de &Ajuda...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>F1</source> <translation></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1745"/> + <source>Open the helpviewer window</source> + <translation>Abrir a janela do visor de ajuda</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show Versions</source> + <translation>Mostrar Versões</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show &Versions</source> + <translation>Mostrar &Versões</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1771"/> - <source>Open the helpviewer window</source> - <translation>Abrir a janela do visor de ajuda</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show Versions</source> - <translation>Mostrar Versões</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show &Versions</source> - <translation>Mostrar &Versões</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1797"/> <source>Display version information</source> <translation>Mostrar a informação da versão</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1799"/> + <location filename="../UI/UserInterface.py" line="1773"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1809"/> + <location filename="../UI/UserInterface.py" line="1783"/> <source>Check for Updates</source> <translation>Procurar Atualizações</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806"/> + <location filename="../UI/UserInterface.py" line="1780"/> <source>Check for &Updates...</source> <translation>Procurar &Atualizações...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show downloadable versions</source> <translation>Mostrar versões descarregáveis</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show &downloadable versions...</source> <translation>Mostrar versões &descarregáveis...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1821"/> + <location filename="../UI/UserInterface.py" line="1795"/> <source>Show the versions available for download</source> <translation>Mostrar as versões disponíveis para descarregar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Report Bug</source> <translation>Reportar Falho</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1844"/> + <location filename="../UI/UserInterface.py" line="1818"/> <source>Report &Bug...</source> <translation>Reportar &Falho...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848"/> + <location filename="../UI/UserInterface.py" line="1822"/> <source>Report a bug</source> <translation>Reportar um falho</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1849"/> + <location filename="../UI/UserInterface.py" line="1823"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation><b>Reportar Falho...</b><p>Abre uma caixa de diálogo para reportar um falho.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request Feature</source> <translation>Solicitar Característica</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request &Feature...</source> <translation>Solicitar Ca&racterística...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1860"/> + <location filename="../UI/UserInterface.py" line="1834"/> <source>Send a feature request</source> <translation>Enviar uma solicitude de característica</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1862"/> + <location filename="../UI/UserInterface.py" line="1836"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation><b>Solicitar Característica...</b><p>Abre uma caixa de diálogo para enviar uma solicitude de característica.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2883"/> + <location filename="../UI/UserInterface.py" line="2858"/> <source>Unittest</source> <translation>Teste Unitário</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1845"/> <source>&Unittest...</source> <translation>Teste &Unitário...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1850"/> <source>Start unittest dialog</source> <translation>Iniciar a caixa de diálogo de teste unitário</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1877"/> + <location filename="../UI/UserInterface.py" line="1851"/> <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="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>Unittest Restart</source> <translation>Reiniciar Teste Unitário</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>&Restart Unittest...</source> <translation>&Reiniciar Teste Unitário...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1890"/> + <location filename="../UI/UserInterface.py" line="1864"/> <source>Restart last unittest</source> <translation>Reiniciar o último teste unitário</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1891"/> + <location filename="../UI/UserInterface.py" line="1865"/> <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="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest Script</source> <translation>Teste Unitário ao Script</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest &Script...</source> <translation>Teste Unitário ao &Script...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920"/> + <location filename="../UI/UserInterface.py" line="1894"/> <source>Run unittest with current script</source> <translation>Executar teste unitário com o script atual</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922"/> + <location filename="../UI/UserInterface.py" line="1896"/> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Teste Unitário ao Script</b><p>Executar teste unitário com o script atual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>Unittest Project</source> <translation>Teste Unitário ao Projeto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1930"/> + <location filename="../UI/UserInterface.py" line="1904"/> <source>Unittest &Project...</source> <translation>Teste Unitário ao &Projeto...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1909"/> <source>Run unittest with current project</source> <translation>Executar teste unitário com o projeto atual</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1937"/> + <location filename="../UI/UserInterface.py" line="1911"/> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Teste Unitário ao Projeto</b><p>Executar teste unitário com o projeto atual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>UI Previewer</source> <translation>Antevisor de UI</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>&UI Previewer...</source> <translation>Antevisor &UI...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003"/> + <location filename="../UI/UserInterface.py" line="1977"/> <source>Start the UI Previewer</source> <translation>Iniciar Antevisor de UI</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004"/> + <location filename="../UI/UserInterface.py" line="1978"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation><b>Antevisor de UI</b><p>Inicia o Antevisor de UI.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>Translations Previewer</source> <translation>Antevisor de Traduções</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>&Translations Previewer...</source> <translation>Antevisor de &Traduções...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2016"/> + <location filename="../UI/UserInterface.py" line="1990"/> <source>Start the Translations Previewer</source> <translation>Iniciar Antevisor de Traduções</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1992"/> + <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>Compare Files</source> + <translation>Comparar Ficheiros</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>&Compare Files...</source> + <translation>&Comparar Ficheiros...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2017"/> + <source>Compare two files</source> + <translation>Comparar dois ficheiros</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2005"/> + <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="2012"/> + <source>Compare Files side by side</source> + <translation>Comparar Ficheiros lado-a-lado</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2018"/> - <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>Compare Files</source> - <translation>Comparar Ficheiros</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>&Compare Files...</source> - <translation>&Comparar Ficheiros...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2043"/> - <source>Compare two files</source> - <translation>Comparar dois ficheiros</translation> + <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="2026"/> + <source>SQL Browser</source> + <translation>Navegador SQL</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2026"/> + <source>SQL &Browser...</source> + <translation>Navegador S&QL...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2031"/> - <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="2038"/> - <source>Compare Files side by side</source> - <translation>Comparar Ficheiros lado-a-lado</translation> + <source>Browse a SQL database</source> + <translation>Navegar numa base de dados SQL</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2032"/> + <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> + <translation><b>Navegador SQL</b><p>Navegar numa base de dados SQL.</p></translation> </message> <message> <location filename="../UI/UserInterface.py" line="2044"/> - <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="2052"/> - <source>SQL Browser</source> - <translation>Navegador SQL</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2052"/> - <source>SQL &Browser...</source> - <translation>Navegador S&QL...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2057"/> - <source>Browse a SQL database</source> - <translation>Navegar numa base de dados SQL</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2058"/> - <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> - <translation><b>Navegador SQL</b><p>Navegar numa base de dados SQL.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2070"/> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2065"/> + <location filename="../UI/UserInterface.py" line="2039"/> <source>Mini &Editor...</source> <translation>Mini &Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2071"/> + <location filename="../UI/UserInterface.py" line="2045"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Editor</b><p>Abre uma caixa de diálogo com um editor simplificado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>Icon Editor</source> <translation>Editor de Ícones</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>&Icon Editor...</source> <translation>Editor de &Ícones...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>Preferences</source> <translation>Preferências</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>&Preferences...</source> <translation>&Preferências...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144"/> + <location filename="../UI/UserInterface.py" line="2118"/> <source>Set the prefered configuration</source> <translation>Definir a configuração desejada</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146"/> + <location filename="../UI/UserInterface.py" line="2120"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Preferências</b><p>Define os elementos de configuração da aplicação com os valores desejados.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>Export Preferences</source> <translation>Exportar Preferências</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>E&xport Preferences...</source> <translation>E&xportar Preferências...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160"/> + <location filename="../UI/UserInterface.py" line="2134"/> <source>Export the current configuration</source> <translation>Exportar a configuração atual</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2162"/> + <location filename="../UI/UserInterface.py" line="2136"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation><b>Exportar Preferências</b><p>Exporta a configuração atual a um ficheiro.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>Import Preferences</source> <translation>Importar Preferências</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>I&mport Preferences...</source> <translation>&Importar Preferências...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2174"/> + <location filename="../UI/UserInterface.py" line="2148"/> <source>Import a previously exported configuration</source> <translation>Importar uma configuração exportada antes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176"/> + <location filename="../UI/UserInterface.py" line="2150"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation><b>Importar Preferências</b><p>Importa uma configuração anteriormente exportada.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload APIs</source> <translation>Recarregar APIs</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload &APIs</source> <translation>Recarregar &APIs</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2187"/> + <location filename="../UI/UserInterface.py" line="2161"/> <source>Reload the API information</source> <translation>Recarregar a informação de API</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2189"/> + <location filename="../UI/UserInterface.py" line="2163"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2201"/> + <location filename="../UI/UserInterface.py" line="2175"/> <source>Show external tools</source> <translation>Mostrar ferramentas externas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196"/> + <location filename="../UI/UserInterface.py" line="2170"/> <source>Show external &tools</source> <translation>Mostrar &ferramentas externas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>View Profiles</source> <translation>Perfiles de Vista</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>&View Profiles...</source> <translation>Perfiles de &Vista...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2217"/> + <location filename="../UI/UserInterface.py" line="2191"/> <source>Configure view profiles</source> <translation>Configurar perfiles de vista</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2219"/> + <location filename="../UI/UserInterface.py" line="2193"/> <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>Perfiles de Vista</b><p>Configurar os perfiles de vista. Com esta caixa de diálogo pode definir a visibilidade de várias janelas para os perfiles de vista predefinidos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Toolbars</source> <translation>Barras de Ferramentas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Tool&bars...</source> <translation>&Barras de Ferramentas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2234"/> + <location filename="../UI/UserInterface.py" line="2208"/> <source>Configure toolbars</source> <translation>Configurar as barras de ferramentas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235"/> + <location filename="../UI/UserInterface.py" line="2209"/> <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="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard Shortcuts</source> <translation>Atalhos de Teclado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard &Shortcuts...</source> <translation>Atalho&s de Teclado...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2249"/> + <location filename="../UI/UserInterface.py" line="2223"/> <source>Set the keyboard shortcuts</source> <translation>Definir os atalhos de teclado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2225"/> <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="5849"/> + <location filename="../UI/UserInterface.py" line="5790"/> <source>Export Keyboard Shortcuts</source> <translation>Exportar Atalhos de Teclado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2233"/> <source>&Export Keyboard Shortcuts...</source> <translation>&Exportar Atalhos de Teclado...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2238"/> <source>Export the keyboard shortcuts</source> <translation>Exportar os Atalhos de Teclado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2240"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Import Keyboard Shortcuts</source> <translation>Importar Atalhos de Teclado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2273"/> + <location filename="../UI/UserInterface.py" line="2247"/> <source>&Import Keyboard Shortcuts...</source> <translation>&Importar Atalhos de Teclado...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2278"/> + <location filename="../UI/UserInterface.py" line="2252"/> <source>Import the keyboard shortcuts</source> <translation>Importar os atalhos de teclado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2280"/> + <location filename="../UI/UserInterface.py" line="2254"/> <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="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Activate current editor</source> <translation>Ativar o editor atual</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Alt+Shift+E</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Show next</source> <translation>Mostrar próximo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Show previous</source> <translation>Mostrar anterior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Shift+Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Switch between tabs</source> <translation>Mudar entre separadores</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Ctrl+1</source> <translation></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>Plugin Infos</source> + <translation>Informação dos Complementos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>&Plugin Infos...</source> + <translation>Informação dos &Complementos...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2353"/> + <source>Show Plugin Infos</source> + <translation>Mostrar Informação dos Complementos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2354"/> + <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> + <translation><b>Informação dos Complementos...</b><p>Abre uma caixa de diálogo que mostra alguma informação sobre os complementos carregados.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2367"/> + <source>Install Plugins</source> + <translation>Instalar Complementos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2362"/> + <source>&Install Plugins...</source> + <translation>&Instalar Complementos...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2368"/> + <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> + <translation><b>Instalar Complementos...</b><p>Abre uma caixa de diálogo para instalar ou atualizar complementos.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2380"/> + <source>Uninstall Plugin</source> + <translation>Desinstalar Complemento</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2375"/> - <source>Plugin Infos</source> - <translation>Informação dos Complementos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2375"/> - <source>&Plugin Infos...</source> - <translation>Informação dos &Complementos...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2379"/> - <source>Show Plugin Infos</source> - <translation>Mostrar Informação dos Complementos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2380"/> - <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> - <translation><b>Informação dos Complementos...</b><p>Abre uma caixa de diálogo que mostra alguma informação sobre os complementos carregados.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2393"/> - <source>Install Plugins</source> - <translation>Instalar Complementos</translation> + <source>&Uninstall Plugin...</source> + <translation>&Desinstalar Complemento...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2381"/> + <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> + <translation><b>Desinstalar Complemento...</b><p>Abre uma caixa de diálogo para desinstalar um complemento.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2388"/> + <source>Plugin Repository</source> + <translation>Repositório de Complementos</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2388"/> - <source>&Install Plugins...</source> - <translation>&Instalar Complementos...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2394"/> - <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> - <translation><b>Instalar Complementos...</b><p>Abre uma caixa de diálogo para instalar ou atualizar complementos.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2406"/> - <source>Uninstall Plugin</source> - <translation>Desinstalar Complemento</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2401"/> - <source>&Uninstall Plugin...</source> - <translation>&Desinstalar Complemento...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2407"/> - <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> - <translation><b>Desinstalar Complemento...</b><p>Abre uma caixa de diálogo para desinstalar um complemento.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2414"/> - <source>Plugin Repository</source> - <translation>Repositório de Complementos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2414"/> <source>Plugin &Repository...</source> <translation>&Repositório de Complementos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419"/> + <location filename="../UI/UserInterface.py" line="2393"/> <source>Show Plugins available for download</source> <translation>Mostrar Complementos disponíveis para descarregar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2421"/> + <location filename="../UI/UserInterface.py" line="2395"/> <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> <translation><b>Repositório de Complementos...</b><p>Abre uma caixa de diálogo que mostra a lista de complementos disponíveis em Internet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt4 Documentation</source> <translation>Documentação de Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt&4 Documentation</source> <translation>Documentação de Qt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2484"/> + <location filename="../UI/UserInterface.py" line="2458"/> <source>Open Qt4 Documentation</source> <translation>Abrir a Documentação de Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt4 Documentation</source> <translation>Documentação do PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2516"/> + <location filename="../UI/UserInterface.py" line="2490"/> <source>Open PyQt4 Documentation</source> <translation>Abrir a Documentação de PyQt4</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2570"/> + <source>Eric API Documentation</source> + <translation>Documentação de API do Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2570"/> + <source>&Eric API Documentation</source> + <translation>Documentação de API do &Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2574"/> + <source>Open Eric API Documentation</source> + <translation>Abrir a Documentação de API do Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2592"/> + <source>PySide Documentation</source> + <translation>Documentação de PySide</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2592"/> + <source>Py&Side Documentation</source> + <translation>Documentação de Py&Side</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2596"/> - <source>Eric API Documentation</source> - <translation>Documentação de API do Eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2596"/> - <source>&Eric API Documentation</source> - <translation>Documentação de API do &Eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2600"/> - <source>Open Eric API Documentation</source> - <translation>Abrir a Documentação de API do Eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2618"/> - <source>PySide Documentation</source> - <translation>Documentação de PySide</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2618"/> - <source>Py&Side Documentation</source> - <translation>Documentação de Py&Side</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2622"/> <source>Open PySide Documentation</source> <translation>Abrir Documentação de PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691"/> + <location filename="../UI/UserInterface.py" line="2665"/> <source>&Unittest</source> <translation>Teste &Unitário</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2708"/> + <location filename="../UI/UserInterface.py" line="2682"/> <source>E&xtras</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2713"/> + <location filename="../UI/UserInterface.py" line="2687"/> <source>Wi&zards</source> <translation>A&ssistentes</translation> </message> @@ -76918,425 +76878,425 @@ <translation type="obsolete">&Ferramentas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2724"/> + <location filename="../UI/UserInterface.py" line="2698"/> <source>Select Tool Group</source> <translation>Selecionar Grupo de Ferramentas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2732"/> + <location filename="../UI/UserInterface.py" line="2706"/> <source>Se&ttings</source> <translation>Definiçõe&s</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2731"/> + <source>&Window</source> + <translation>&Janela</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757"/> - <source>&Window</source> - <translation>&Janela</translation> + <source>&Toolbars</source> + <translation>Barras de Ferramen&tas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768"/> + <source>P&lugins</source> + <translation>Comp&lementos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2777"/> + <source>Configure...</source> + <translation>Configurar...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2782"/> - <source>&Toolbars</source> - <translation>Barras de Ferramen&tas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2793"/> - <source>P&lugins</source> - <translation>Comp&lementos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2802"/> - <source>Configure...</source> - <translation>Configurar...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2807"/> <source>&Help</source> <translation>&Ajuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2882"/> + <location filename="../UI/UserInterface.py" line="2857"/> <source>Tools</source> <translation>Ferramentas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2884"/> + <location filename="../UI/UserInterface.py" line="2859"/> <source>Settings</source> <translation>Definições</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <source>Help</source> <translation>Ajuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2886"/> + <location filename="../UI/UserInterface.py" line="2861"/> <source>Profiles</source> <translation>Perfiles</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2887"/> + <location filename="../UI/UserInterface.py" line="2862"/> <source>Plugins</source> <translation>Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3051"/> + <location filename="../UI/UserInterface.py" line="3026"/> <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="3058"/> + <location filename="../UI/UserInterface.py" line="3033"/> <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="3065"/> + <location filename="../UI/UserInterface.py" line="3040"/> <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="3072"/> + <location filename="../UI/UserInterface.py" line="3047"/> <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="3079"/> + <location filename="../UI/UserInterface.py" line="3054"/> <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="3086"/> + <location filename="../UI/UserInterface.py" line="3061"/> <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="3161"/> + <location filename="../UI/UserInterface.py" line="3136"/> <source>External Tools/{0}</source> <translation>Ferramentas Externas/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3262"/> + <location filename="../UI/UserInterface.py" line="3237"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Números de Versão</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6829"/> + <location filename="../UI/UserInterface.py" line="6770"/> <source></table></source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>A direção do correio eletrónico ou a direção do servidor de correio está vazia. Por favor configure as Definiçães de Correio Eletrónico na Caixa de Diálogo de Preferências.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>Restart application</source> <translation>Reiniciar a aplicação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>The application needs to be restarted. Do it now?</source> <translation>A aplicação necessita ser reiniciada. Reiniciar agora?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3676"/> + <location filename="../UI/UserInterface.py" line="3651"/> <source>Configure Tool Groups ...</source> <translation>Configurar Grupos de Ferramentas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3680"/> + <location filename="../UI/UserInterface.py" line="3655"/> <source>Configure current Tool Group ...</source> <translation>Configurar o atual Grupo de Ferramentas ...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3631"/> + <location filename="../UI/UserInterface.py" line="3606"/> <source>&Builtin Tools</source> <translation>Ferramentas &Internas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3648"/> + <location filename="../UI/UserInterface.py" line="3623"/> <source>&Plugin Tools</source> <translation>Ferramentas dos &Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3796"/> + <location filename="../UI/UserInterface.py" line="3771"/> <source>&Show all</source> <translation>&Mostrar tudo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3798"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>&Hide all</source> <translation>&Esconder tudo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>There is no main script defined for the current project. Aborting</source> <translation>O projeto atual não tem um script principal definido. A cancelar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt 3 support</source> <translation>Suporte Qt3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <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="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <source>Process Generation Error</source> <translation>Erro na Criação de Processo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4551"/> + <location filename="../UI/UserInterface.py" line="4492"/> <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="4618"/> + <location filename="../UI/UserInterface.py" line="4559"/> <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="4669"/> + <location filename="../UI/UserInterface.py" line="4610"/> <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="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Não há nenhum visor personalizado selecionado. Por favor use a caixa de diálogo das preferências para escolher um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4711"/> + <location filename="../UI/UserInterface.py" line="4652"/> <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="4731"/> + <location filename="../UI/UserInterface.py" line="4672"/> <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="4779"/> + <location filename="../UI/UserInterface.py" line="4720"/> <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="4834"/> + <location filename="../UI/UserInterface.py" line="4775"/> <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="4855"/> + <location filename="../UI/UserInterface.py" line="4796"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>External Tools</source> <translation>Ferramentas Externas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4948"/> + <location filename="../UI/UserInterface.py" line="4889"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4996"/> + <location filename="../UI/UserInterface.py" line="4937"/> <source>Starting process '{0} {1}'. </source> <translation>A iniciar processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5088"/> + <location filename="../UI/UserInterface.py" line="5029"/> <source>Process '{0}' has exited. </source> <translation>Processo '{0}' saiu.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <source>Documentation Missing</source> <translation>Falta a Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <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="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source>Documentation</source> <translation>Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5306"/> + <location filename="../UI/UserInterface.py" line="5247"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Ficheiro de atalhos de teclado (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <source>Save tasks</source> <translation>Gravar tarefas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <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="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <source>Read tasks</source> <translation>Ler tarefas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <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="6168"/> + <location filename="../UI/UserInterface.py" line="6109"/> <source>Save session</source> <translation>Guargar sessão</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6105"/> + <location filename="../UI/UserInterface.py" line="6046"/> <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="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source>Read session</source> <translation>Sessão de leitura</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <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="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> não é um ficheiro.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>&Cancel</source> <translation>&Cancelar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6613"/> + <location filename="../UI/UserInterface.py" line="6554"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>Update available</source> <translation>Atualização disponível</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Error during updates check</source> <translation>Erro na verificação de atualizações</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Could not perform updates check.</source> <translation>Não procurar atualizações.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6815"/> + <location filename="../UI/UserInterface.py" line="6756"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versões Disponíveis</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>First time usage</source> <translation>Usado a primeira vez</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python 3 Documentation</source> <translation>Documentação de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python &3 Documentation</source> <translation>Documentação de Python &3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2532"/> <source>Open Python 3 Documentation</source> <translation>Abrir a Documentação de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python 2 Documentation</source> <translation>Documentação de Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python &2 Documentation</source> <translation>Documentação de Python &2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2576"/> + <location filename="../UI/UserInterface.py" line="2550"/> <source>Open Python 2 Documentation</source> <translation>Abrir a Documentação de Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2552"/> <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="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>Error getting versions information</source> <translation>Erro na obtenção da informação de versões</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6670"/> + <location filename="../UI/UserInterface.py" line="6611"/> <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="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Could not start a web browser</source> <translation>Não se pôde iniciar um navegador web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <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> @@ -77361,568 +77321,568 @@ <translation>A iniciar Depurador...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New Window</source> <translation>Nova Janela</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New &Window</source> <translation>Nova &Janela</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1904"/> + <location filename="../UI/UserInterface.py" line="1878"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1906"/> + <location filename="../UI/UserInterface.py" line="1880"/> <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="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare &Files side by side...</source> <translation>Comparar &Ficheiros lado-a-lado...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>&Snapshot...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2129"/> + <location filename="../UI/UserInterface.py" line="2103"/> <source>Take snapshots of a screen region</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2131"/> + <location filename="../UI/UserInterface.py" line="2105"/> <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="4925"/> + <location filename="../UI/UserInterface.py" line="4866"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6885"/> + <location filename="../UI/UserInterface.py" line="6826"/> <source>Select Workspace Directory</source> <translation>Selecionar o Diretório de Trabalho</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1595"/> + <location filename="../UI/UserInterface.py" line="1569"/> <source>Left Toolbox</source> <translation>Caixa de Ferramentas Esquerda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1607"/> + <location filename="../UI/UserInterface.py" line="1581"/> <source>Right Toolbox</source> <translation>Caixa de Ferramentas Direita</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1461"/> + <location filename="../UI/UserInterface.py" line="1435"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1463"/> + <location filename="../UI/UserInterface.py" line="1437"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1478"/> + <location filename="../UI/UserInterface.py" line="1452"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1454"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1470"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1472"/> + <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1488"/> + <source>Switch the input focus to the Shell window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1490"/> + <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1498"/> - <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1514"/> - <source>Switch the input focus to the Shell window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1516"/> - <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> <source>&File-Browser</source> <translation>Navegador de &Ficheiros</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1530"/> + <location filename="../UI/UserInterface.py" line="1504"/> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1532"/> + <location filename="../UI/UserInterface.py" line="1506"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Lo&g-Viewer</source> <translation>Visor de Re&gistos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1547"/> + <location filename="../UI/UserInterface.py" line="1521"/> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1523"/> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>&Task-Viewer</source> + <translation>Visor de &Tarefas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1539"/> + <source>Switch the input focus to the Task-Viewer window.</source> + <translation>Muda o enfoque de entrada à janela do Visor de Tarefas.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Templ&ate-Viewer</source> + <translation>Visor de Mod&elos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1557"/> + <source>Switch the input focus to the Template-Viewer window.</source> + <translation>Muda o enfoque de entrada à janela do Visor de Modelos.</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1559"/> - <source>&Task-Viewer</source> - <translation>Visor de &Tarefas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1565"/> - <source>Switch the input focus to the Task-Viewer window.</source> - <translation>Muda o enfoque de entrada à janela do Visor de Tarefas.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Templ&ate-Viewer</source> - <translation>Visor de Mod&elos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1583"/> - <source>Switch the input focus to the Template-Viewer window.</source> - <translation>Muda o enfoque de entrada à janela do Visor de Modelos.</translation> + <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1569"/> + <source>&Left Toolbox</source> + <translation>Caixa de Ferramentas &Esquerda</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1572"/> + <source>Toggle the Left Toolbox window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> + <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1581"/> + <source>&Right Toolbox</source> + <translation>Caixa de Ferramentas Di&reita</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1585"/> - <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1595"/> - <source>&Left Toolbox</source> - <translation>Caixa de Ferramentas &Esquerda</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1598"/> - <source>Toggle the Left Toolbox window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1599"/> - <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1607"/> - <source>&Right Toolbox</source> - <translation>Caixa de Ferramentas Di&reita</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1611"/> <source>Toggle the Right Toolbox window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1612"/> + <location filename="../UI/UserInterface.py" line="1586"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right 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="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>Right Sidebar</source> <translation>Barra Direita</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>&Right Sidebar</source> <translation>Barra Lateral Di&reita</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1651"/> + <location filename="../UI/UserInterface.py" line="1625"/> <source>Toggle the right sidebar window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1653"/> + <location filename="../UI/UserInterface.py" line="1627"/> <source><b>Toggle the right sidebar window</b><p>If the right 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="1649"/> + <source>Cooperation-Viewer</source> + <translation>Visor de Colaboração</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1649"/> + <source>Co&operation-Viewer</source> + <translation>Visor de C&olaboração</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1655"/> + <source>Switch the input focus to the Cooperation-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1657"/> + <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> + <translation><b>Ativar Visor de Colaboração</b><p>Muda o enfoque de entrada para a janela do Visualizador de Colaboração.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>Symbols-Viewer</source> + <translation>Visor de Símbolos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>S&ymbols-Viewer</source> + <translation>V&isor de Símbolos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1690"/> + <source>Switch the input focus to the Symbols-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1692"/> + <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Numbers-Viewer</source> + <translation>Visor de Números</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Num&bers-Viewer</source> + <translation>Visor de Nú&meros</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1708"/> + <source>Switch the input focus to the Numbers-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1710"/> + <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2736"/> + <source>&Windows</source> + <translation>&Janelas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1541"/> + <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1667"/> + <source>IRC</source> + <translation></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1667"/> + <source>&IRC</source> + <translation></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1667"/> + <source>Meta+Shift+I</source> + <translation></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1673"/> + <source>Switch the input focus to the IRC window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1675"/> - <source>Cooperation-Viewer</source> - <translation>Visor de Colaboração</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1675"/> - <source>Co&operation-Viewer</source> - <translation>Visor de C&olaboração</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1681"/> - <source>Switch the input focus to the Cooperation-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1683"/> - <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> - <translation><b>Ativar Visor de Colaboração</b><p>Muda o enfoque de entrada para a janela do Visualizador de Colaboração.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1710"/> - <source>Symbols-Viewer</source> - <translation>Visor de Símbolos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1710"/> - <source>S&ymbols-Viewer</source> - <translation>V&isor de Símbolos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1716"/> - <source>Switch the input focus to the Symbols-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1718"/> - <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Numbers-Viewer</source> - <translation>Visor de Números</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Num&bers-Viewer</source> - <translation>Visor de Nú&meros</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1734"/> - <source>Switch the input focus to the Numbers-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1736"/> - <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2762"/> - <source>&Windows</source> - <translation>&Janelas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1567"/> - <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1693"/> - <source>IRC</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1693"/> - <source>&IRC</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1693"/> - <source>Meta+Shift+I</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1699"/> - <source>Switch the input focus to the IRC window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1701"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-Designer</source> + <translation></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-&Designer...</source> + <translation></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1936"/> + <source>Start Qt-Designer</source> + <translation>Iniciar Qt-Designer</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1937"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-Designer</source> + <source>Qt-Linguist</source> <translation></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-&Designer...</source> + <source>Qt-&Linguist...</source> <translation></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1962"/> - <source>Start Qt-Designer</source> - <translation>Iniciar Qt-Designer</translation> + <source>Start Qt-Linguist</source> + <translation>Iniciar Qt-Linguist</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1963"/> - <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-Linguist</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-&Linguist...</source> - <translation></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1988"/> - <source>Start Qt-Linguist</source> - <translation>Iniciar Qt-Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1989"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt5 Documentation</source> <translation>Documentação de Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt&5 Documentation</source> <translation>Documentação de Qt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2499"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open Qt5 Documentation</source> <translation>Abrir a Documentação de Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3097"/> + <location filename="../UI/UserInterface.py" line="3072"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates</source> <translation>Gestionar Certificados SSL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates...</source> <translation>Gestionar Certificados SSL...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293"/> + <location filename="../UI/UserInterface.py" line="2267"/> <source>Manage the saved SSL certificates</source> <translation>Gestionar certificados SSL gravados</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295"/> + <location filename="../UI/UserInterface.py" line="2269"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters</source> <translation>Editar Filtros de Mensagens</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters...</source> <translation>Editar Filtros de Mensagens...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2283"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311"/> + <location filename="../UI/UserInterface.py" line="2285"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt&4 Documentation</source> <translation>Documentação do PyQt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt5 Documentation</source> <translation>Documentação do PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt&5 Documentation</source> <translation>Documentação do PyQt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2509"/> <source>Open PyQt5 Documentation</source> <translation>Abrir a Documentação de PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5313"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2560"/> + <location filename="../UI/UserInterface.py" line="2534"/> <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="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>%v/%m</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836"/> - <source>Show Error Log</source> - <translation>Mostrar Registo de Erros</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1832"/> - <source>Show Error &Log...</source> - <translation>Mostrar &Registo de Erros...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1837"/> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1408"/> - <source>Open a new eric6 instance</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1410"/> - <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1773"/> - <source><b>Helpviewer</b><p>Display the eric6 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="1810"/> + <source>Show Error Log</source> + <translation>Mostrar Registo de Erros</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1806"/> + <source>Show Error &Log...</source> + <translation>Mostrar &Registo de Erros...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1811"/> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1382"/> + <source>Open a new eric6 instance</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1384"/> + <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1747"/> + <source><b>Helpviewer</b><p>Display the eric6 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="1784"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823"/> + <location filename="../UI/UserInterface.py" line="1797"/> <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 Web Browser</source> <translation>Navegador Web de eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 &Web Browser...</source> <translation>Navegador &Web de eric6...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2099"/> + <location filename="../UI/UserInterface.py" line="2073"/> <source>Start the eric6 Web Browser</source> <translation>Iniciar o Navegador Web de eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2075"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation><b>Navegardor Web eric6</b><p>Navegar por internet com o Navegador Web eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2115"/> + <location filename="../UI/UserInterface.py" line="2089"/> <source>Start the eric6 Icon Editor</source> <translation>Iniciar o Editor de Icones de eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2117"/> + <location filename="../UI/UserInterface.py" line="2091"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2203"/> + <location filename="../UI/UserInterface.py" line="2177"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2602"/> + <location filename="../UI/UserInterface.py" line="2576"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt v.3 não está suportado por eric6.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6608"/> + <location filename="../UI/UserInterface.py" line="6549"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>Atualização a <b>{0}</b> de eric6 já está disponível em <b>{1}</b>. Quere-a descarregar?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>Eric6 is up to date</source> <translation>Eric6 está atualizado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>You are using the latest version of eric6</source> <translation>Utiliza a última versão do eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>eric6 ainda não foi configurado. A caixa de diálogo de configuração vai iniciar-se.</translation> </message> @@ -77932,87 +77892,87 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3651"/> + <location filename="../UI/UserInterface.py" line="3626"/> <source>&User Tools</source> <translation>Ferramentas de &Utilizador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3723"/> + <location filename="../UI/UserInterface.py" line="3698"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6624"/> + <location filename="../UI/UserInterface.py" line="6565"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>&Hex Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2083"/> + <location filename="../UI/UserInterface.py" line="2057"/> <source>Start the eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2085"/> + <location filename="../UI/UserInterface.py" line="2059"/> <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327"/> + <location filename="../UI/UserInterface.py" line="2301"/> <source>Clear private data</source> <translation type="unfinished">Limpar dados privados</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2303"/> <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1376"/> + <location filename="../UI/UserInterface.py" line="1350"/> <source>Save session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1381"/> + <location filename="../UI/UserInterface.py" line="1355"/> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>Load session</source> <translation type="unfinished">Carregar sessão</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1389"/> + <location filename="../UI/UserInterface.py" line="1363"/> <source>Load session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1394"/> + <location filename="../UI/UserInterface.py" line="1368"/> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78027,102 +77987,102 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6690"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="953"/> + <location filename="../UI/UserInterface.py" line="938"/> <source>Code Documentation Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2485"/> + <location filename="../UI/UserInterface.py" line="2459"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2500"/> + <location filename="../UI/UserInterface.py" line="2474"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2517"/> + <location filename="../UI/UserInterface.py" line="2491"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2624"/> + <location filename="../UI/UserInterface.py" line="2598"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide&2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2643"/> + <location filename="../UI/UserInterface.py" line="2617"/> <source>Open PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2645"/> + <location filename="../UI/UserInterface.py" line="2619"/> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2409"/> <source>Virtualenv Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2403"/> <source>&Virtualenv Manager...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2437"/> + <location filename="../UI/UserInterface.py" line="2411"/> <source><b>Virtualenv Manager</b><p>This opens a dialog to manage the defined Python virtual environments.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2426"/> <source>Virtualenv Configurator</source> <translation type="unfinished">Assistente para Virtualenv</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Virtualenv &Configurator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2454"/> + <location filename="../UI/UserInterface.py" line="2428"/> <source><b>Virtualenv Configurator</b><p>This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_ru.ts Sun Jul 08 17:33:25 2018 +0200 +++ b/i18n/eric6_ru.ts Sun Jul 08 18:55:21 2018 +0200 @@ -5587,640 +5587,640 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1827"/> + <location filename="../Debugger/DebugUI.py" line="1825"/> <source>Run Script</source> <translation>Выполнить сценарий</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="178"/> + <location filename="../Debugger/DebugUI.py" line="176"/> <source>&Run Script...</source> <translation>&Выполнить сценарий...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="183"/> + <location filename="../Debugger/DebugUI.py" line="181"/> <source>Run the current Script</source> <translation>Выполнить текущий сценарий</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="184"/> + <location filename="../Debugger/DebugUI.py" line="182"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Выполнить сценарий</b> <p>Задание аргументов и запуск сценария без отладки. Если файл не был сохранён, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>Run Project</source> <translation>Выполнить проект</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="193"/> + <location filename="../Debugger/DebugUI.py" line="191"/> <source>Run &Project...</source> <translation>Выполнить &проект...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="198"/> + <location filename="../Debugger/DebugUI.py" line="196"/> <source>Run the current Project</source> <translation>Выполнить текущий проект</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="199"/> + <location filename="../Debugger/DebugUI.py" line="197"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Выполнить проект</b> <p>Задание аргументов командной строки и запуск проекта без отладки. Если файлы проекта не были сохранены, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script</source> <translation>Охватывающее выполнение сценария</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script...</source> <translation>Охватывающее выполнение сценария...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="212"/> + <source>Perform a coverage run of the current Script</source> + <translation>Выполнить охватывающее выполнение текущего сценария</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="214"/> - <source>Perform a coverage run of the current Script</source> - <translation>Выполнить охватывающее выполнение текущего сценария</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="216"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Охватывающее выполнение сценария</b> <p>Задание аргументов командной строки и запуск сценария под управлением программы охватывающего анализа. Если файл не был сохранён, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project</source> <translation>Охватывающее выполнение проекта</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project...</source> <translation>Охватывающее выполнение проекта...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="228"/> + <source>Perform a coverage run of the current Project</source> + <translation>Выполнить охватывающее выполнение текущего проекта</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="230"/> - <source>Perform a coverage run of the current Project</source> - <translation>Выполнить охватывающее выполнение текущего проекта</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="232"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Охватывающее выполнение проекта</b> <p>Задание аргументов командной строки и запуск проекта под управлением программы охватывающего анализа. Если файлы проекта не были сохранены, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script</source> <translation>Профилировать сценарий</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script...</source> <translation>Профилировать сценарий...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="246"/> + <location filename="../Debugger/DebugUI.py" line="244"/> <source>Profile the current Script</source> <translation>Профилировать текущий сценарий</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="247"/> + <location filename="../Debugger/DebugUI.py" line="245"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Профилирование сценария</b> <p>Задание аргументов и запуск сценария на профилирование. Если файл не был сохранён, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project</source> <translation>Профилировать проект</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project...</source> <translation>Профилировать проект...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="258"/> + <source>Profile the current Project</source> + <translation>Профилировать текущий проект</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="260"/> - <source>Profile the current Project</source> - <translation>Профилировать текущий проект</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="262"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Профилировать проект</b> <p>Задание аргументов и запуск проекта на профилирование. Если файлы проекта не были сохранены, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1962"/> + <location filename="../Debugger/DebugUI.py" line="1960"/> <source>Debug Script</source> <translation>Отладить сценарий</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="271"/> + <location filename="../Debugger/DebugUI.py" line="269"/> <source>&Debug Script...</source> <translation>&Отладить сценарий...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="276"/> + <location filename="../Debugger/DebugUI.py" line="274"/> <source>Debug the current Script</source> <translation>Отладить текущий сценарий</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="277"/> + <location filename="../Debugger/DebugUI.py" line="275"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Отладка сценария</b> <p>Задание аргументов командной строки и запуск сценария на отладку. Если файл не был сохранён, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>Debug Project</source> <translation>Отладить проект</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="287"/> + <location filename="../Debugger/DebugUI.py" line="285"/> <source>Debug &Project...</source> <translation>&Отладить проект...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="290"/> + <source>Debug the current Project</source> + <translation>Отладить текущий проект</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="292"/> - <source>Debug the current Project</source> - <translation>Отладить текущий проект</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="294"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Отладка проекта</b> <p>Задание аргументов командной строки и запуск проекта на отладку. Текущей станет строка, содержащая первый исполняемый оператор Python. Если файлы проекта не были сохранены, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="306"/> <source>Restart the last debugged script</source> <translation>Перезапустить сценарий, который отлаживался последним</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="325"/> + <location filename="../Debugger/DebugUI.py" line="323"/> <source>Stop the running script.</source> <translation>Остановить выполняющийся сценарий.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>Continue</source> <translation>Продолжить</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>&Continue</source> <translation>П&родолжить</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="338"/> + <source>Continue running the program from the current line</source> + <translation>Продолжить выполнение программы с текущей точки</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="340"/> - <source>Continue running the program from the current line</source> - <translation>Продолжить выполнение программы с текущей точки</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="342"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Продолжить</b> <p>Продолжить выполнение программы с текущей точки. Программа остановится при завершении или по достижении точки останова.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue to Cursor</source> <translation>Продолжить до курсора</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue &To Cursor</source> <translation>Продолжить &до курсора</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="356"/> + <location filename="../Debugger/DebugUI.py" line="354"/> <source>Continue running the program from the current line to the current cursor position</source> <translation>Продолжить выполнение программы до строки, на которой находится курсор</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="359"/> + <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>Продолжить до курсора</b><p>Продолжить выполнение программы до строки, на которой находится курсор.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Single Step</source> <translation>Одиночный шаг</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Sin&gle Step</source> <translation>&Одиночный шаг</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="392"/> + <location filename="../Debugger/DebugUI.py" line="390"/> <source>Execute a single Python statement</source> <translation>Выполнить один оператор Python</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="393"/> + <location filename="../Debugger/DebugUI.py" line="391"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>Одиночный шаг</b> <p>Выполнить один оператор Python. Если этот оператор - <tt>import</tt>, конструктор класса, метод или функция, отладчик получит управление перед выполнением следующего оператора.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step Over</source> <translation>Следующая строка</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step &Over</source> <translation>С&ледующая строка</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="408"/> + <location filename="../Debugger/DebugUI.py" line="406"/> <source>Execute a single Python statement staying in the current frame</source> <translation>Выполнить один оператор Python текущего кадра стека</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="411"/> + <location filename="../Debugger/DebugUI.py" line="409"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation><b>Следующая строка</b> <p>Выполнить оператор текущего кадра стека. Если этот оператор - <tt>import</tt>, конструктор класса, метод или функция, отладчик получит управление после его выполнения.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Out</source> <translation>Возврат</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Ou&t</source> <translation>&Возврат</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="427"/> + <location filename="../Debugger/DebugUI.py" line="425"/> <source>Execute Python statements until leaving the current frame</source> <translation>Выполнить код до выхода из кадра стека</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="430"/> + <location filename="../Debugger/DebugUI.py" line="428"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation><b>Возврат</b><p>Выполнить код до выхода из кадра стека. Если выполняемые операторы находятся внутри оператора <tt>import</tt>, конструктора класса, функции или метода, отладчик получит управление после выхода из текущего кадра стека.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>Stop</source> <translation>Стоп</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>&Stop</source> <translation>Ст&оп</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="446"/> + <location filename="../Debugger/DebugUI.py" line="444"/> <source>Stop debugging</source> <translation>Остановить отладку</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="447"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Стоп</b> <p>Прервать текущую отладочную сессию.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Variables Type Filter</source> <translation>Фильтр переменных по типу</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Varia&bles Type Filter...</source> <translation>Фильтр переменных по &типу...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="456"/> + <source>Configure variables type filter</source> + <translation>Настройка фильтра переменных по типу</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="458"/> - <source>Configure variables type filter</source> - <translation>Настройка фильтра переменных по типу</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="460"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation><b>Фильтр переменных по типу</b><p>Настроить фильтр переменных по типу. Только те переменные, типы которых <b>не выделены</b>, будут отображаться в окнах глобальных и локальных переменных в течение отладки.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>Exceptions Filter</source> <translation>Фильтр исключений</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>&Exceptions Filter...</source> <translation>Фильтр &исключений...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="472"/> + <source>Configure exceptions filter</source> + <translation>Настройка фильтра исключений</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="474"/> - <source>Configure exceptions filter</source> - <translation>Настройка фильтра исключений</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="476"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>Фильтр исключений</b> <p>Настроить фильтр исключений. В течение отладочной сессии перехватываются только исключения, выделенные в списке.</p> <p>Стоит заметить, что все необработанные исключения перехватываются независимо от настроек фильтра.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>Ignored Exceptions</source> <translation>Игнорированные исключения</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>&Ignored Exceptions...</source> <translation>&Игнорированные исключения...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="489"/> + <source>Configure ignored exceptions</source> + <translation>Настройка игнорированных исключений</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="491"/> - <source>Configure ignored exceptions</source> - <translation>Настройка игнорированных исключений</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="493"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>Игнорированные исключения</b><p>Настроить игнорированные исключения. Только исключения, не попавшие в данный список, будут перехватываться при отладке.</p><p>Обратите внимание, что исключения, у которых нет соответствующего обработчика в тексте программы, невозможно игнорировать.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="512"/> + <location filename="../Debugger/DebugUI.py" line="510"/> <source>Toggle Breakpoint</source> <translation>Поставить/Убрать точку останова</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="506"/> + <location filename="../Debugger/DebugUI.py" line="504"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation>Shift+F11</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="513"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Поставить/убрать точку останова</b> <p>Поставить/убрать точку останова в текущей строке текущего редактора.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="527"/> + <location filename="../Debugger/DebugUI.py" line="525"/> <source>Edit Breakpoint</source> <translation>Редактировать точку останова</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Edit Breakpoint...</source> <translation>Редактировать точку останова...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation>Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="528"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>Редактировать точку останова</b> <p>Открыть диалог со свойствами точки останова. Работает в текущей строке текущего редактора.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="543"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Next Breakpoint</source> <translation>Следующая точка останова</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation>Ctrl+Shift+PgDown</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="542"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>Следующая точка останова</b> <p>Переход к следующей точке останова в текущем редакторе.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="558"/> + <location filename="../Debugger/DebugUI.py" line="556"/> <source>Previous Breakpoint</source> <translation>Предыдущая точка останова</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="549"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation>Ctrl+Shift+PgUp</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="557"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>Предыдущая точка останова</b> <p>Переход к предыдущей точке останова в текущем редакторе.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="572"/> + <location filename="../Debugger/DebugUI.py" line="570"/> <source>Clear Breakpoints</source> <translation>Убрать точки останова</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="564"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation>Ctrl+Shift+C</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="573"/> + <location filename="../Debugger/DebugUI.py" line="571"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation><b>Убрать точки останова</b><p>Убрать точки останова во всех редакторах.</p></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="597"/> + <source>&Debug</source> + <translation>&Отладка</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="599"/> - <source>&Debug</source> - <translation>&Отладка</translation> + <source>&Start</source> + <translation>&Начать</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="601"/> - <source>&Start</source> - <translation>&Начать</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="603"/> <source>&Breakpoints</source> <translation>&Точки останова</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="646"/> + <location filename="../Debugger/DebugUI.py" line="644"/> <source>Start</source> <translation>Начать</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="660"/> + <location filename="../Debugger/DebugUI.py" line="658"/> <source>Debug</source> <translation>Отладка</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1100"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Отлаживаемая программа содержит неуказанную синтаксическую ошибку.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1119"/> + <location filename="../Debugger/DebugUI.py" line="1117"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation><p>Файл <b>{0}</b> содержит синтактическую ошибку <b>{1}</b> в строке <b>{2}</b>, позиция <b>{3}</b>.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1137"/> + <location filename="../Debugger/DebugUI.py" line="1135"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Выброшено исключение, которое не было обработано программой. Более точная информация в окне консоли.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1184"/> + <location filename="../Debugger/DebugUI.py" line="1182"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation><p>Отлаживаемая программа выдала исключение <br><b>{0}</b> "<b>{1}</b>"<br>Файл: <b>{2}</b>, строка <b>{3}</b></p><p>Прервать выполнение в этом месте?</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1199"/> + <location filename="../Debugger/DebugUI.py" line="1197"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>Отлаживаемая программа выдала исключение<br><b>{0}</b><br>"<b>{1}</b>"</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1262"/> + <location filename="../Debugger/DebugUI.py" line="1260"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Отлаживаемая программа была неожиданно прервана.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source>Breakpoint Condition Error</source> <translation>Ошибка в условиях точки останова</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>Условие точки останова <b>{0}, {1}</b> содержит синтаксическую ошибку.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source>Watch Expression Error</source> <translation>Ошибка в выражении для отслеживания</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>Выражение для отслеживания <b>{0}</b> содержит синтаксическую ошибку.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1399"/> + <location filename="../Debugger/DebugUI.py" line="1397"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>Выражение для отслеживания '<b>{0}</b>' уже существует.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1403"/> + <location filename="../Debugger/DebugUI.py" line="1401"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>Выражение для отслеживания '<b>{0}</b>' для переменной <b>{1}</b> уже существует.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1409"/> + <location filename="../Debugger/DebugUI.py" line="1407"/> <source>Watch expression already exists</source> <translation>Выражение для отслеживания уже существует</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1576"/> + <location filename="../Debugger/DebugUI.py" line="1574"/> <source>Coverage of Project</source> <translation>Охват проекта</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1563"/> + <location filename="../Debugger/DebugUI.py" line="1561"/> <source>Coverage of Script</source> <translation>Охват сценария</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1708"/> + <location filename="../Debugger/DebugUI.py" line="1706"/> <source>Profile of Project</source> <translation>Профиль проекта</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1695"/> + <location filename="../Debugger/DebugUI.py" line="1693"/> <source>Profile of Script</source> <translation>Профиль сценария</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>Для текущего проекта не определён главный сценарий. Отладка невозможна.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1069"/> + <location filename="../Debugger/DebugUI.py" line="1067"/> <source>Program terminated</source> <translation>Программа завершилась</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="304"/> + <location filename="../Debugger/DebugUI.py" line="302"/> <source>Restart</source> <translation>Перезапуск</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="310"/> + <location filename="../Debugger/DebugUI.py" line="308"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation><b>Перезапуск</b><p>Задание аргументов командной строки и установка текущей строки первой исполняемой строкой программы для отладки. При необходимости сначала сохранить текст программы.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="326"/> + <location filename="../Debugger/DebugUI.py" line="324"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation><b>Остановка</b><p>Остановка выполнения программы в отладчике.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1248"/> + <location filename="../Debugger/DebugUI.py" line="1246"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation><p>Программа генерирует сигнал "{0}".<br/>Файл: <b>{1}</b>, Строка: <b>{2}</b></p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> + <location filename="../Debugger/DebugUI.py" line="1034"/> <source><p>Message: {0}</p></source> <translation><p>Сообщение: {0}</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1040"/> <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> <translation><p>Программа завершилась с кодом выхода {0}.</p>{1}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1045"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> <translation><p><b>{0}</b> завершился с кодом выхода {1}.</p>{2}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1055"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>Message: {0}</source> <translation>Сообщение: {0}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1060"/> <source>The program has terminated with an exit status of {0}. {1}</source> <translation>Программа завершилась с кодом выхода {0}. {1}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1065"/> + <location filename="../Debugger/DebugUI.py" line="1063"/> <source>"{0}" has terminated with an exit status of {1}. {2}</source> <translation>"{0}" завершился с кодом выхода {1}. {2}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1074"/> + <location filename="../Debugger/DebugUI.py" line="1072"/> <source>The program has terminated with an exit status of {0}. {1} </source> @@ -6229,7 +6229,7 @@ </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1078"/> + <location filename="../Debugger/DebugUI.py" line="1076"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> @@ -6238,22 +6238,22 @@ </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>Move Instruction Pointer to Cursor</source> <translation>Переместить указатель инструкции на курсор</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>&Jump To Cursor</source> <translation>&Перейти к курсору</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="372"/> + <location filename="../Debugger/DebugUI.py" line="370"/> <source>Skip the code from the current line to the current cursor position</source> <translation>Пропуск кода от текущей строки до текущей позиции курсора</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="375"/> + <location filename="../Debugger/DebugUI.py" line="373"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation><b>Переместить указатель инструкции к курсору</b><p>Перемещение указателя внутренней инструкции Python к текущей позиции курсора без выполнения промежуточного кода между ними.</p><p>При этом невожможно выйти из функции или перейти в блок кода, например в цикл. В таких случаях в лог выводится сообщение об ошибке.</p></translation> </message> @@ -6261,52 +6261,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="../Debugger/DebugViewer.py" line="174"/> + <location filename="../Debugger/DebugViewer.py" line="145"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>Задайте для фильтров переменных маски регулярных выражений, разделённые ';'. </translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="178"/> + <location filename="../Debugger/DebugViewer.py" line="149"/> <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="184"/> + <location filename="../Debugger/DebugViewer.py" line="155"/> <source>Set</source> <translation>Установить</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="159"/> + <location filename="../Debugger/DebugViewer.py" line="130"/> <source>Source</source> <translation>Исходный текст</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="261"/> + <location filename="../Debugger/DebugViewer.py" line="226"/> <source>Threads:</source> <translation>Потоки:</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation>ID</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation>Имя</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation>Состояние</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="520"/> + <location filename="../Debugger/DebugViewer.py" line="457"/> <source>waiting at breakpoint</source> <translation>В точке останова</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="522"/> + <location filename="../Debugger/DebugViewer.py" line="459"/> <source>running</source> <translation>выполняется</translation> </message> @@ -40290,75 +40290,75 @@ <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="463"/> <source>Shell</source> - <translation>Оболочка</translation> + <translation type="obsolete">Оболочка</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="469"/> <source>Select to get a separate shell window</source> - <translation>Отдельное окно оболочки</translation> + <translation type="obsolete">Отдельное окно оболочки</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="501"/> <source>separate window</source> - <translation>отдельное окно</translation> + <translation type="obsolete">отдельное окно</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="479"/> <source>Select to embed the shell in the Debug-Viewer</source> - <translation>Встроить командную строку в окно отладки</translation> + <translation type="obsolete">Встроить командную строку в окно отладки</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="511"/> <source>embed in Debug-Viewer</source> - <translation>встроить в окно отладки</translation> + <translation type="obsolete">встроить в окно отладки</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="492"/> <source>File-Browser</source> - <translation>Браузер файлов</translation> + <translation type="obsolete">Браузер файлов</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="498"/> <source>Select to get a separate file browser window</source> - <translation>Браузер файлов в отдельном окне</translation> + <translation type="obsolete">Браузер файлов в отдельном окне</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="508"/> <source>Select to embed the file browser in the Debug-Viewer</source> - <translation>Встроить браузер файлов в окно отладки</translation> + <translation type="obsolete">Встроить браузер файлов в окно отладки</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="518"/> <source>Select to embed the file browser in the Project-Viewer</source> - <translation>Встроить браузер файлов в окно проекта</translation> + <translation type="obsolete">Встроить браузер файлов в окно проекта</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="521"/> <source>embed in Project-Viewer</source> - <translation>встроить в окно проекта</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="533"/> + <translation type="obsolete">встроить в окно проекта</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="461"/> <source>Tabs</source> <translation>Вкладки</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="539"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="467"/> <source>Show only one close button instead of one for each tab</source> <translation>Показывать только одну, общую, закрывающую кнопку вместо кнопки для каждой вкладки</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="562"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="490"/> <source>Reset layout to factory defaults</source> <translation>Сбросить макет к стандартному виду</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="244"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="223"/> <source>System</source> <translation>Система</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="226"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="205"/> <source>English</source> <comment>Translate this with your language</comment> <translation>Русский</translation> @@ -51911,42 +51911,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="../Project/ProjectBrowser.py" line="71"/> + <location filename="../Project/ProjectBrowser.py" line="65"/> <source>up to date</source> <translation>новых изменений нет</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="72"/> + <location filename="../Project/ProjectBrowser.py" line="66"/> <source>files added</source> <translation>добавленные файлы</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="73"/> + <location filename="../Project/ProjectBrowser.py" line="67"/> <source>local modifications</source> <translation>локальные изменения</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="74"/> + <location filename="../Project/ProjectBrowser.py" line="68"/> <source>files removed</source> <translation>файлы удалены</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="75"/> + <location filename="../Project/ProjectBrowser.py" line="69"/> <source>files replaced</source> <translation>файлы заменены</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="76"/> + <location filename="../Project/ProjectBrowser.py" line="70"/> <source>update required</source> <translation>необходимо обновление</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="77"/> + <location filename="../Project/ProjectBrowser.py" line="71"/> <source>conflict</source> <translation>конфликт</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="434"/> + <location filename="../Project/ProjectBrowser.py" line="398"/> <source>unknown status</source> <translation>статус неизвестен</translation> </message> @@ -74414,1393 +74414,1393 @@ <translation>Восстановление менеджера панелей инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>Project-Viewer</source> <translation>Просмотр проекта</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>Multiproject-Viewer</source> <translation>Просмотр мультипроекта</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Debug-Viewer</source> <translation>Просмотр отладки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="973"/> + <location filename="../UI/UserInterface.py" line="955"/> <source>Cooperation</source> <translation>Кооперация</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1030"/> + <location filename="../UI/UserInterface.py" line="1004"/> <source>Symbols</source> <translation>Символы</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Log-Viewer</source> <translation>Просмотр журналов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Task-Viewer</source> <translation>Просмотр задач</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Template-Viewer</source> <translation>Просмотр шаблонов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1038"/> + <location filename="../UI/UserInterface.py" line="1012"/> <source>Numbers</source> <translation>Числа</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>File-Browser</source> <translation>Браузер файлов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Shell</source> <translation>Оболочка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>Horizontal Toolbox</source> <translation>Горизонтальная панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1325"/> + <location filename="../UI/UserInterface.py" line="1299"/> <source>{0} - Passive Mode</source> <translation>{0} - пассивный режим</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332"/> + <location filename="../UI/UserInterface.py" line="1306"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - пассивный режим</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1336"/> + <location filename="../UI/UserInterface.py" line="1310"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - пассивный режим</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Quit</source> <translation>Выход</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>&Quit</source> <translation>&Выход</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1365"/> + <location filename="../UI/UserInterface.py" line="1339"/> <source>Quit the IDE</source> <translation>Выход из IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1366"/> + <location filename="../UI/UserInterface.py" line="1340"/> <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="1421"/> + <location filename="../UI/UserInterface.py" line="1395"/> <source>Edit Profile</source> <translation>Профиль редактирования</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1401"/> <source>Activate the edit view profile</source> <translation>Активизировать профиль редактирования</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1403"/> + <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="1412"/> + <source>Debug Profile</source> + <translation>Профиль отладки</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1418"/> + <source>Activate the debug view profile</source> + <translation>Активизировать профиль отладки</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1420"/> + <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="1429"/> - <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="1438"/> - <source>Debug Profile</source> - <translation>Профиль отладки</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1444"/> - <source>Activate the debug view profile</source> - <translation>Активизировать профиль отладки</translation> + <source>&Project-Viewer</source> + <translation>Просмотр &проекта</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1429"/> + <source>Alt+Shift+P</source> + <translation>Alt+Shift+P</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1446"/> + <source>&Multiproject-Viewer</source> + <translation>Просмотр &мультипроекта</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1446"/> - <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="1455"/> - <source>&Project-Viewer</source> - <translation>Просмотр &проекта</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>Alt+Shift+P</source> - <translation>Alt+Shift+P</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> - <source>&Multiproject-Viewer</source> - <translation>Просмотр &мультипроекта</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>&Debug-Viewer</source> <translation>Просмотр &отладки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>&Shell</source> <translation>&Оболочка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>&Horizontal Toolbox</source> <translation>&Горизонтальная панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1624"/> + <location filename="../UI/UserInterface.py" line="1598"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Включить/Выключить горизонтальную панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1626"/> + <location filename="../UI/UserInterface.py" line="1600"/> <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="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>Left Sidebar</source> <translation>Левая док-панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>&Left Sidebar</source> <translation>&Левая док-панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1638"/> + <location filename="../UI/UserInterface.py" line="1612"/> <source>Toggle the left sidebar window</source> <translation>Показать/Скрыть левую док-панель</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1613"/> + <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="1635"/> + <source>Bottom Sidebar</source> + <translation>Нижняя док-панель</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>&Bottom Sidebar</source> + <translation>&Нижняя док-панель</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1639"/> - <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="1661"/> - <source>Bottom Sidebar</source> - <translation>Нижняя док-панель</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>&Bottom Sidebar</source> - <translation>&Нижняя док-панель</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1665"/> <source>Toggle the bottom sidebar window</source> <translation>Показать/Скрыть нижнюю док-панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1667"/> + <location filename="../UI/UserInterface.py" line="1641"/> <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="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1728"/> + <location filename="../UI/UserInterface.py" line="1702"/> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>What's This?</source> <translation>Что это?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>&What's This?</source> <translation>&Что это?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752"/> + <location filename="../UI/UserInterface.py" line="1726"/> <source>Context sensitive help</source> <translation>Контекстнозависимая справка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1753"/> + <location filename="../UI/UserInterface.py" line="1727"/> <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>В режиме "What's This?"(Что это?)курсор мыши отображается как стрелка со знаком вопроса, и вы можете, кликнув по элементу интерфейса, получить краткое описание того, что он делает и как его использовать. В диалоговом окне эта функция может быть вызвана кнопкой контекстной справки в панели заголовка.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>Helpviewer</source> <translation>Просмотр справки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>&Helpviewer...</source> <translation>Просмотр спр&авки...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>F1</source> <translation>F1</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1745"/> + <source>Open the helpviewer window</source> + <translation>Открыть окно просмотра справки</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show Versions</source> + <translation>Показать версию</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show &Versions</source> + <translation>Показать &версию</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1771"/> - <source>Open the helpviewer window</source> - <translation>Открыть окно просмотра справки</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show Versions</source> - <translation>Показать версию</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show &Versions</source> - <translation>Показать &версию</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1797"/> <source>Display version information</source> <translation>Информация о версии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1799"/> + <location filename="../UI/UserInterface.py" line="1773"/> <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="1809"/> + <location filename="../UI/UserInterface.py" line="1783"/> <source>Check for Updates</source> <translation>Проверить наличие обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806"/> + <location filename="../UI/UserInterface.py" line="1780"/> <source>Check for &Updates...</source> <translation>Проверить наличие &обновлений...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show downloadable versions</source> <translation>Показать версии, доступные для загрузки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show &downloadable versions...</source> <translation>Показать версии, доступные для &загрузки...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1821"/> + <location filename="../UI/UserInterface.py" line="1795"/> <source>Show the versions available for download</source> <translation>Показать версии, доступные для загрузки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Report Bug</source> <translation>Сообщение об ошибке</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1844"/> + <location filename="../UI/UserInterface.py" line="1818"/> <source>Report &Bug...</source> <translation>Сообщить об &ошибке...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848"/> + <location filename="../UI/UserInterface.py" line="1822"/> <source>Report a bug</source> <translation>Сообщить об ошибке</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1849"/> + <location filename="../UI/UserInterface.py" line="1823"/> <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="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request Feature</source> <translation>Послать запрос</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request &Feature...</source> <translation>Послать &запрос...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1860"/> + <location filename="../UI/UserInterface.py" line="1834"/> <source>Send a feature request</source> <translation>Послать запрос</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1862"/> + <location filename="../UI/UserInterface.py" line="1836"/> <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="2883"/> + <location filename="../UI/UserInterface.py" line="2858"/> <source>Unittest</source> <translation>Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1845"/> <source>&Unittest...</source> <translation>&Unittest...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1850"/> <source>Start unittest dialog</source> <translation>Запустить unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1877"/> + <location filename="../UI/UserInterface.py" line="1851"/> <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="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>Unittest Restart</source> <translation>Перезапустить Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>&Restart Unittest...</source> <translation>&Перезапустить Unittest...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1890"/> + <location filename="../UI/UserInterface.py" line="1864"/> <source>Restart last unittest</source> <translation>Перезапустить последний Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1891"/> + <location filename="../UI/UserInterface.py" line="1865"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>Перезапустить Unittest</b> <p>Перезапустить последний проведённый тест.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest Script</source> <translation>Unittest на сценарии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest &Script...</source> <translation>Unittest на &сценарии...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920"/> + <location filename="../UI/UserInterface.py" line="1894"/> <source>Run unittest with current script</source> <translation>Выполнить Uniitest с текущим сценарием</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922"/> + <location filename="../UI/UserInterface.py" line="1896"/> <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="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>Unittest Project</source> <translation>Unittest на проекте</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1930"/> + <location filename="../UI/UserInterface.py" line="1904"/> <source>Unittest &Project...</source> <translation>Unittest на &проекте...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1909"/> <source>Run unittest with current project</source> <translation>Выполнить Unittest с текущим проектом</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1937"/> + <location filename="../UI/UserInterface.py" line="1911"/> <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="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>UI Previewer</source> <translation>Предпросмотр UI</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>&UI Previewer...</source> <translation>Предпросмотр &UI...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003"/> + <location filename="../UI/UserInterface.py" line="1977"/> <source>Start the UI Previewer</source> <translation>Запуск предпросмотра UI (пользовательского интерфейса)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004"/> + <location filename="../UI/UserInterface.py" line="1978"/> <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="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>Translations Previewer</source> <translation>Предпросмотр переводов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>&Translations Previewer...</source> <translation>&Предпросмотр переводов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2016"/> + <location filename="../UI/UserInterface.py" line="1990"/> <source>Start the Translations Previewer</source> <translation>Запустить предпросмотр переводов</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1992"/> + <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="1999"/> + <source>Compare Files</source> + <translation>Сравнить файлы</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>&Compare Files...</source> + <translation>&Сравнить файлы...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2017"/> + <source>Compare two files</source> + <translation>Сравнить два файла</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2005"/> + <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="2012"/> + <source>Compare Files side by side</source> + <translation>Сравнение файлов построчно</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2018"/> - <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="2025"/> - <source>Compare Files</source> - <translation>Сравнить файлы</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>&Compare Files...</source> - <translation>&Сравнить файлы...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2043"/> - <source>Compare two files</source> - <translation>Сравнить два файла</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2031"/> - <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="2038"/> - <source>Compare Files side by side</source> - <translation>Сравнение файлов построчно</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2044"/> <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="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL Browser</source> <translation>SQL браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL &Browser...</source> <translation>&SQL браузер...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2057"/> + <location filename="../UI/UserInterface.py" line="2031"/> <source>Browse a SQL database</source> <translation>Просмотреть SQL базу данных</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2058"/> + <location filename="../UI/UserInterface.py" line="2032"/> <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="2070"/> + <location filename="../UI/UserInterface.py" line="2044"/> <source>Mini Editor</source> <translation>Миниредактор</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2065"/> + <location filename="../UI/UserInterface.py" line="2039"/> <source>Mini &Editor...</source> <translation>Мини&редактор...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2071"/> + <location filename="../UI/UserInterface.py" line="2045"/> <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="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>Icon Editor</source> <translation>Редактор иконок</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>&Icon Editor...</source> <translation>Редактор &иконок...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>Preferences</source> <translation>Предпочтения</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>&Preferences...</source> <translation>&Предпочтения...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144"/> + <location filename="../UI/UserInterface.py" line="2118"/> <source>Set the prefered configuration</source> <translation>Установите предпочтительную конфигурацию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146"/> + <location filename="../UI/UserInterface.py" line="2120"/> <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="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>Export Preferences</source> <translation>Экспорт предпочтений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>E&xport Preferences...</source> <translation>&Экспорт предпочтений...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160"/> + <location filename="../UI/UserInterface.py" line="2134"/> <source>Export the current configuration</source> <translation>Экспорт текущих настроек</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2162"/> + <location filename="../UI/UserInterface.py" line="2136"/> <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="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>Import Preferences</source> <translation>Импорт предпочтений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>I&mport Preferences...</source> <translation>&Импорт предпочтений...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2174"/> + <location filename="../UI/UserInterface.py" line="2148"/> <source>Import a previously exported configuration</source> <translation>Импорт сохранённых ранее настроек</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176"/> + <location filename="../UI/UserInterface.py" line="2150"/> <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="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload APIs</source> <translation>Перезагрузить API</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload &APIs</source> <translation>Перезагрузить &API</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2187"/> + <location filename="../UI/UserInterface.py" line="2161"/> <source>Reload the API information</source> <translation>Перезагрузить информацию об API</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2189"/> + <location filename="../UI/UserInterface.py" line="2163"/> <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="2201"/> + <location filename="../UI/UserInterface.py" line="2175"/> <source>Show external tools</source> <translation>Показать внешние инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196"/> + <location filename="../UI/UserInterface.py" line="2170"/> <source>Show external &tools</source> <translation>Показать &внешние инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>View Profiles</source> <translation>Профили</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>&View Profiles...</source> <translation>&Профили...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2217"/> + <location filename="../UI/UserInterface.py" line="2191"/> <source>Configure view profiles</source> <translation>Конфигурация профилей</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2219"/> + <location filename="../UI/UserInterface.py" line="2193"/> <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="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Toolbars</source> <translation>Панели инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Tool&bars...</source> <translation>Панели &инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2234"/> + <location filename="../UI/UserInterface.py" line="2208"/> <source>Configure toolbars</source> <translation>Настройка панелей инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235"/> + <location filename="../UI/UserInterface.py" line="2209"/> <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="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard Shortcuts</source> <translation>Горячие клавиши</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard &Shortcuts...</source> <translation>Горячие &клавиши...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2249"/> + <location filename="../UI/UserInterface.py" line="2223"/> <source>Set the keyboard shortcuts</source> <translation>Задать горячие клавиши</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2225"/> <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="5849"/> + <location filename="../UI/UserInterface.py" line="5790"/> <source>Export Keyboard Shortcuts</source> <translation>Экспортировать горячие клавиши</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2233"/> <source>&Export Keyboard Shortcuts...</source> <translation>&Экспортировать горячие клавиши...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2238"/> <source>Export the keyboard shortcuts</source> <translation>Экспортировать горячие клавиши</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2240"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Import Keyboard Shortcuts</source> <translation>Импортировать горячие клавиши</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2273"/> + <location filename="../UI/UserInterface.py" line="2247"/> <source>&Import Keyboard Shortcuts...</source> <translation>&Импортировать горячие клавиши...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2278"/> + <location filename="../UI/UserInterface.py" line="2252"/> <source>Import the keyboard shortcuts</source> <translation>Импортировать горячие клавиши</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2280"/> + <location filename="../UI/UserInterface.py" line="2254"/> <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="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Activate current editor</source> <translation>Активизировать текущий редактор</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Show next</source> <translation>Показать следующую</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Show previous</source> <translation>Показать предыдущую</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Switch between tabs</source> <translation>Переключение между вкладками</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>Plugin Infos</source> + <translation>Информация о плагинах</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>&Plugin Infos...</source> + <translation>Ин&формация о плагинах...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2353"/> + <source>Show Plugin Infos</source> + <translation>Отображение информации о плагинах</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2354"/> + <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="2367"/> + <source>Install Plugins</source> + <translation>Установить плагины</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2362"/> + <source>&Install Plugins...</source> + <translation>&Установить плагины...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2368"/> + <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="2380"/> + <source>Uninstall Plugin</source> + <translation>Удалить плагин</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2375"/> - <source>Plugin Infos</source> - <translation>Информация о плагинах</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2375"/> - <source>&Plugin Infos...</source> - <translation>Ин&формация о плагинах...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2379"/> - <source>Show Plugin Infos</source> - <translation>Отображение информации о плагинах</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2380"/> - <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="2393"/> - <source>Install Plugins</source> - <translation>Установить плагины</translation> + <source>&Uninstall Plugin...</source> + <translation>Уда&лить плагин...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2381"/> + <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="2388"/> - <source>&Install Plugins...</source> - <translation>&Установить плагины...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2394"/> - <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="2406"/> - <source>Uninstall Plugin</source> - <translation>Удалить плагин</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2401"/> - <source>&Uninstall Plugin...</source> - <translation>Уда&лить плагин...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2407"/> - <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="2414"/> <source>Plugin Repository</source> <translation>Репозиторий плагинов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2414"/> + <location filename="../UI/UserInterface.py" line="2388"/> <source>Plugin &Repository...</source> <translation>&Репозиторий плагинов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419"/> + <location filename="../UI/UserInterface.py" line="2393"/> <source>Show Plugins available for download</source> <translation>Показать плагины, доступные для загрузки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2421"/> + <location filename="../UI/UserInterface.py" line="2395"/> <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="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt4 Documentation</source> <translation>Документация Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt&4 Documentation</source> <translation>Документация Qt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2484"/> + <location filename="../UI/UserInterface.py" line="2458"/> <source>Open Qt4 Documentation</source> <translation>Открыть документацию Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt4 Documentation</source> <translation>Документация PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2516"/> + <location filename="../UI/UserInterface.py" line="2490"/> <source>Open PyQt4 Documentation</source> <translation>Открыть документацию Qt4</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2570"/> + <source>Eric API Documentation</source> + <translation>Документация API Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2570"/> + <source>&Eric API Documentation</source> + <translation>Документация API &Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2574"/> + <source>Open Eric API Documentation</source> + <translation>Открыть документацию API Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2592"/> + <source>PySide Documentation</source> + <translation>Документация PySide</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2592"/> + <source>Py&Side Documentation</source> + <translation>Документация Py&Side</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2596"/> - <source>Eric API Documentation</source> - <translation>Документация API Eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2596"/> - <source>&Eric API Documentation</source> - <translation>Документация API &Eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2600"/> - <source>Open Eric API Documentation</source> - <translation>Открыть документацию API Eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2618"/> - <source>PySide Documentation</source> - <translation>Документация PySide</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2618"/> - <source>Py&Side Documentation</source> - <translation>Документация Py&Side</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2622"/> <source>Open PySide Documentation</source> <translation>Открыть документацию PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691"/> + <location filename="../UI/UserInterface.py" line="2665"/> <source>&Unittest</source> <translation>&Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2708"/> + <location filename="../UI/UserInterface.py" line="2682"/> <source>E&xtras</source> <translation>До&полнительно</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2713"/> + <location filename="../UI/UserInterface.py" line="2687"/> <source>Wi&zards</source> <translation>&Мастера</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2724"/> + <location filename="../UI/UserInterface.py" line="2698"/> <source>Select Tool Group</source> <translation>Выберите группу инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2732"/> + <location filename="../UI/UserInterface.py" line="2706"/> <source>Se&ttings</source> <translation>&Настройки</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2731"/> + <source>&Window</source> + <translation>&Окно</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757"/> - <source>&Window</source> - <translation>&Окно</translation> + <source>&Toolbars</source> + <translation>&Панели инструментов</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768"/> + <source>P&lugins</source> + <translation>&Плагины</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2777"/> + <source>Configure...</source> + <translation>Настроить...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2782"/> - <source>&Toolbars</source> - <translation>&Панели инструментов</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2793"/> - <source>P&lugins</source> - <translation>&Плагины</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2802"/> - <source>Configure...</source> - <translation>Настроить...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2807"/> <source>&Help</source> <translation>&Справка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2882"/> + <location filename="../UI/UserInterface.py" line="2857"/> <source>Tools</source> <translation>Инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2884"/> + <location filename="../UI/UserInterface.py" line="2859"/> <source>Settings</source> <translation>Настройки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <source>Help</source> <translation>Справка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2886"/> + <location filename="../UI/UserInterface.py" line="2861"/> <source>Profiles</source> <translation>Профили</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2887"/> + <location filename="../UI/UserInterface.py" line="2862"/> <source>Plugins</source> <translation>Плагины</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3051"/> + <location filename="../UI/UserInterface.py" line="3026"/> <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="3058"/> + <location filename="../UI/UserInterface.py" line="3033"/> <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="3065"/> + <location filename="../UI/UserInterface.py" line="3040"/> <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="3072"/> + <location filename="../UI/UserInterface.py" line="3047"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>В этой части строки статуса отображается режим ro/rw файла, открытого в редакторе.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3079"/> + <location filename="../UI/UserInterface.py" line="3054"/> <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="3086"/> + <location filename="../UI/UserInterface.py" line="3061"/> <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="3161"/> + <location filename="../UI/UserInterface.py" line="3136"/> <source>External Tools/{0}</source> <translation>Внешние инструменты/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3262"/> + <location filename="../UI/UserInterface.py" line="3237"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Номера версий</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6829"/> + <location filename="../UI/UserInterface.py" line="6770"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>Почтовый адрес или адрес почтового сервера пуст. <p>Настройте параметры вашей электронной почты в диалоге предпочтений.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>Restart application</source> <translation>Перезапустить приложение</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>The application needs to be restarted. Do it now?</source> <translation>Необходимо перезапустить приложение. Сделать это сейчас?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3676"/> + <location filename="../UI/UserInterface.py" line="3651"/> <source>Configure Tool Groups ...</source> <translation>Настройка группы инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3680"/> + <location filename="../UI/UserInterface.py" line="3655"/> <source>Configure current Tool Group ...</source> <translation>Настроить текущую группу инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3631"/> + <location filename="../UI/UserInterface.py" line="3606"/> <source>&Builtin Tools</source> <translation>&Встроенные инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3648"/> + <location filename="../UI/UserInterface.py" line="3623"/> <source>&Plugin Tools</source> <translation>Инструменты - &плагины</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3796"/> + <location filename="../UI/UserInterface.py" line="3771"/> <source>&Show all</source> <translation>Показать &всё</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3798"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>&Hide all</source> <translation>Ск&рыть всё</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt 3 support</source> <translation>Поддержка Qt 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <source>Problem</source> <translation>Проблема</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <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="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <source>Process Generation Error</source> <translation>Ошибка при запуске процесса</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4551"/> + <location filename="../UI/UserInterface.py" line="4492"/> <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="4618"/> + <location filename="../UI/UserInterface.py" line="4559"/> <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="4669"/> + <location filename="../UI/UserInterface.py" line="4610"/> <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="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <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="4711"/> + <location filename="../UI/UserInterface.py" line="4652"/> <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="4731"/> + <location filename="../UI/UserInterface.py" line="4672"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Невозможно запустить обозреватель справки.<br>Убедитесь, что он доступен под именем <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4779"/> + <location filename="../UI/UserInterface.py" line="4720"/> <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="4834"/> + <location filename="../UI/UserInterface.py" line="4775"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Translation Previewer (предпросмотр переводов).<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4855"/> + <location filename="../UI/UserInterface.py" line="4796"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить SQL браузер.<br>Убедитесь, что он доступен как <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>External Tools</source> <translation>Внешние инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4948"/> + <location filename="../UI/UserInterface.py" line="4889"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>No toolgroup entry '{0}' found.</source> <translation>Запись для группы инструментов '{0}' не найдена.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4996"/> + <location filename="../UI/UserInterface.py" line="4937"/> <source>Starting process '{0} {1}'. </source> <translation>Запускается процесс '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5088"/> + <location filename="../UI/UserInterface.py" line="5029"/> <source>Process '{0}' has exited. </source> <translation>Процесс '{0}' завершен. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <source>Documentation Missing</source> <translation>Документация отсутствует</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <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="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source>Documentation</source> <translation>Документация</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5306"/> + <location filename="../UI/UserInterface.py" line="5247"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Файл горячих клавиш (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <source>Save tasks</source> <translation>Сохранить задачи</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <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="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <source>Read tasks</source> <translation>Прочитать задачи</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <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="6168"/> + <location filename="../UI/UserInterface.py" line="6109"/> <source>Save session</source> <translation>Сохранить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6105"/> + <location filename="../UI/UserInterface.py" line="6046"/> <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="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source>Read session</source> <translation>Загрузить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <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="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <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="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>&Cancel</source> <translation>От&мена</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6613"/> + <location filename="../UI/UserInterface.py" line="6554"/> <source>Trying host {0}</source> <translation>Подключение к хосту {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>Update available</source> <translation>Обновления доступны</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Error during updates check</source> <translation>Ошибка при проверке обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Could not perform updates check.</source> <translation>Невозможно запустить проверку обновлений.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6815"/> + <location filename="../UI/UserInterface.py" line="6756"/> <source><h3>Available versions</h3><table></source> <translation><h3>Доступные версии</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>First time usage</source> <translation>Первое использование</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python 3 Documentation</source> <translation>Документация Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python &3 Documentation</source> <translation>Документация Python &3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2532"/> <source>Open Python 3 Documentation</source> <translation>Открыть документацию Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python 2 Documentation</source> <translation>Документация Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python &2 Documentation</source> <translation>Документация Python &2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2576"/> + <location filename="../UI/UserInterface.py" line="2550"/> <source>Open Python 2 Documentation</source> <translation>Открыть документацию Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2552"/> <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</b><p>Показать Python 2 документацию. Если местонахождение документации не было настроено, то искать в директории <i>doc</i> каталога где находится исполняемый файл Python 2 под Windows и в директории <i>/usr/share/doc/packages/python/html/python-docs-html</i> под UNIX. Местонахождение документации можно задать с помощью переменной окружения PYTHON2DOCDIR.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>Error getting versions information</source> <translation>Ошибка при получении информации о версии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6670"/> + <location filename="../UI/UserInterface.py" line="6611"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>Невозможно загрузить информацию о версии. Пожалуйста попробуйте ещё раз.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Open Browser</source> <translation>Открыть браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Could not start a web browser</source> <translation>Невозможно запустить web браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>Невозможно загрузить информацию о версии в течении последних 7 дней. Пожалуйста попробуйте ещё раз.</translation> </message> @@ -75825,568 +75825,568 @@ <translation>Запуск отладчика...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New Window</source> <translation>Новое окно</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New &Window</source> <translation>&Новое окно</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Unittest Rerun Failed</source> <translation>Перезапуск тестов провалился</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Rerun Failed Tests...</source> <translation>Перезапустить провалившиеся тесты...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1904"/> + <location filename="../UI/UserInterface.py" line="1878"/> <source>Rerun failed tests of the last run</source> <translation>Перезапустить провалившиеся в последней попытке тесты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1906"/> + <location filename="../UI/UserInterface.py" line="1880"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation><b>Перезапустить провалившиеся тесты</b><p>Перезапустить все провалившиеся в последней попытке тесты.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare &Files side by side...</source> <translation>Сравнить &файлы построчно...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>Snapshot</source> <translation>Снимки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>&Snapshot...</source> <translation>&Снимки...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2129"/> + <location filename="../UI/UserInterface.py" line="2103"/> <source>Take snapshots of a screen region</source> <translation>Сделать снимок области экрана</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2131"/> + <location filename="../UI/UserInterface.py" line="2105"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation><b>Снимок</b><p>Сделать снимок области экрана.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4925"/> + <location filename="../UI/UserInterface.py" line="4866"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить программу для создания снимка экрана.<br>Убедитесь что она установлена как <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6885"/> + <location filename="../UI/UserInterface.py" line="6826"/> <source>Select Workspace Directory</source> <translation>Выбор директории рабочей области</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1595"/> + <location filename="../UI/UserInterface.py" line="1569"/> <source>Left Toolbox</source> <translation>Левая панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1607"/> + <location filename="../UI/UserInterface.py" line="1581"/> <source>Right Toolbox</source> <translation>Правая панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1461"/> + <location filename="../UI/UserInterface.py" line="1435"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation>Переключить фокус ввода на окно просмотра проекта.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1463"/> + <location filename="../UI/UserInterface.py" line="1437"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation><b>Активировать просмотрщик проекта</b><p>Переключить фокус ввода на окно просмотра проекта.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1478"/> + <location filename="../UI/UserInterface.py" line="1452"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation>Переключить фокус ввода на окно просмотра мультипроекта.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1454"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation><b>Активировать просмотрщик проектов</b><p>Переключить фокус ввода на окно просмотра мультипроекта.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1470"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation>Переключить фокус ввода на окно просмотра отладки.</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1472"/> + <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> + <translation><b>Активировать окно отладки</b><p>Переключить фокус ввода на окно просмотра отладки.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1488"/> + <source>Switch the input focus to the Shell window.</source> + <translation>Переключить фокус ввода на командное окно.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1490"/> + <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> + <translation><b>Активировать командное окно</b><p>Переключить фокус ввода на командное окно.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1498"/> - <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> - <translation><b>Активировать окно отладки</b><p>Переключить фокус ввода на окно просмотра отладки.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1514"/> - <source>Switch the input focus to the Shell window.</source> - <translation>Переключить фокус ввода на командное окно.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1516"/> - <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> - <translation><b>Активировать командное окно</b><p>Переключить фокус ввода на командное окно.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> <source>&File-Browser</source> <translation>&Браузер файлов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1530"/> + <location filename="../UI/UserInterface.py" line="1504"/> <source>Switch the input focus to the File-Browser window.</source> <translation>Переключить фокус ввода на окно браузера файлов.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1532"/> + <location filename="../UI/UserInterface.py" line="1506"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation><b>Активировать окно браузера файлов</b><p>Переключить фокус ввода на окно браузера файлов.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Lo&g-Viewer</source> <translation>Просмотр &журнала</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1547"/> + <location filename="../UI/UserInterface.py" line="1521"/> <source>Switch the input focus to the Log-Viewer window.</source> <translation>Переключить фокус ввода на окно просмотра журналов.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1523"/> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation><b>Активировать окно просмотра журнала</b><p>Переключить фокус ввода на окно просмотра журнала.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>&Task-Viewer</source> + <translation>Просмотр &задач</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1539"/> + <source>Switch the input focus to the Task-Viewer window.</source> + <translation>Переключить фокус ввода на окно просмотра задач.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Templ&ate-Viewer</source> + <translation>Просмотр &шаблонов</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1557"/> + <source>Switch the input focus to the Template-Viewer window.</source> + <translation>Переключить фокус ввода на окно просмотра шаблонов.</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1559"/> - <source>&Task-Viewer</source> - <translation>Просмотр &задач</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1565"/> - <source>Switch the input focus to the Task-Viewer window.</source> - <translation>Переключить фокус ввода на окно просмотра задач.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Templ&ate-Viewer</source> - <translation>Просмотр &шаблонов</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1583"/> - <source>Switch the input focus to the Template-Viewer window.</source> - <translation>Переключить фокус ввода на окно просмотра шаблонов.</translation> + <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> + <translation><b>Активировать просмотрщик шаблонов</b><p>Переключить фокус ввода на окно просмотра шаблонов.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1569"/> + <source>&Left Toolbox</source> + <translation>&Левая панель инструментов</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1572"/> + <source>Toggle the Left Toolbox window</source> + <translation>Показать/Скрыть левую панель инструментов</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> + <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1581"/> + <source>&Right Toolbox</source> + <translation>&Правая панель инструментов</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1585"/> - <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> - <translation><b>Активировать просмотрщик шаблонов</b><p>Переключить фокус ввода на окно просмотра шаблонов.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1595"/> - <source>&Left Toolbox</source> - <translation>&Левая панель инструментов</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1598"/> - <source>Toggle the Left Toolbox window</source> - <translation>Показать/Скрыть левую панель инструментов</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1599"/> - <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1607"/> - <source>&Right Toolbox</source> - <translation>&Правая панель инструментов</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1611"/> <source>Toggle the Right Toolbox window</source> <translation>Показать/Скрыть правую панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1612"/> + <location filename="../UI/UserInterface.py" line="1586"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right 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="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>Right Sidebar</source> <translation>Правая боковая панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>&Right Sidebar</source> <translation>&Правая боковая панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1651"/> + <location filename="../UI/UserInterface.py" line="1625"/> <source>Toggle the right sidebar window</source> <translation>Показать/Скрыть окно правой боковой панели</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1653"/> + <location filename="../UI/UserInterface.py" line="1627"/> <source><b>Toggle the right sidebar window</b><p>If the right 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="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Cooperation-Viewer</source> <translation>Просмотр кооперации</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Co&operation-Viewer</source> <translation>Просмотр ко&операции</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1681"/> + <location filename="../UI/UserInterface.py" line="1655"/> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation>Переключить фокус ввода на окно просмотра кооперации.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1683"/> + <location filename="../UI/UserInterface.py" line="1657"/> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation><b>Активировать просмотрщик кооперации</b><p>Переключить фокус ввода на окно просмотра кооперации.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Symbols-Viewer</source> <translation>Просмотр символов</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>S&ymbols-Viewer</source> + <translation>Просмотр с&имволов</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1690"/> + <source>Switch the input focus to the Symbols-Viewer window.</source> + <translation>Переключить фокус ввода на окно просмотра символов.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1692"/> + <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> + <translation><b>Активировать просмотрщик символов</b><p>Переключить фокус ввода на окно просмотра символов.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Numbers-Viewer</source> + <translation>Отображение чисел</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Num&bers-Viewer</source> + <translation>Отображение &чисел</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1708"/> + <source>Switch the input focus to the Numbers-Viewer window.</source> + <translation>Переключить фокус ввода на окно просмотра чисел.</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1710"/> - <source>S&ymbols-Viewer</source> - <translation>Просмотр с&имволов</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1716"/> - <source>Switch the input focus to the Symbols-Viewer window.</source> - <translation>Переключить фокус ввода на окно просмотра символов.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1718"/> - <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> - <translation><b>Активировать просмотрщик символов</b><p>Переключить фокус ввода на окно просмотра символов.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Numbers-Viewer</source> - <translation>Отображение чисел</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Num&bers-Viewer</source> - <translation>Отображение &чисел</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1734"/> - <source>Switch the input focus to the Numbers-Viewer window.</source> - <translation>Переключить фокус ввода на окно просмотра чисел.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1736"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation><b>Активировать просмотрщик чисел</b><p>Переключить фокус ввода на окно просмотра чисел.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2762"/> + <location filename="../UI/UserInterface.py" line="2736"/> <source>&Windows</source> <translation>&Окна</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1567"/> + <location filename="../UI/UserInterface.py" line="1541"/> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation><b>Активировать окно просмотрщика задач</b><p>Переключить фокус ввода на окно просмотра задач.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>IRC</source> <translation>IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>&IRC</source> <translation>&IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>Meta+Shift+I</source> <translation>Meta+Shift+I</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1699"/> + <location filename="../UI/UserInterface.py" line="1673"/> <source>Switch the input focus to the IRC window.</source> <translation>Переключить фокус ввода на окно IRC.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1701"/> + <location filename="../UI/UserInterface.py" line="1675"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation><b>Активировать окно IRC</b><p>Переключить фокус ввода на окно IRC.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-Designer</source> + <translation>Qt-Designer</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-&Designer...</source> + <translation>Qt-&Designer...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1936"/> + <source>Start Qt-Designer</source> + <translation>Запуск Qt-Designer</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1937"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation><b>Qt-Designer</b><p>Запуск Qt-Designer.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-Designer</source> - <translation>Qt-Designer</translation> + <source>Qt-Linguist</source> + <translation>Qt-Linguist</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-&Designer...</source> - <translation>Qt-&Designer...</translation> + <source>Qt-&Linguist...</source> + <translation>Qt-&Linguist...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1962"/> - <source>Start Qt-Designer</source> - <translation>Запуск Qt-Designer</translation> + <source>Start Qt-Linguist</source> + <translation>Запуск Qt-Linguist</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1963"/> - <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> - <translation><b>Qt-Designer</b><p>Запуск Qt-Designer.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-Linguist</source> - <translation>Qt-Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-&Linguist...</source> - <translation>Qt-&Linguist...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1988"/> - <source>Start Qt-Linguist</source> - <translation>Запуск Qt-Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1989"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation><b>Qt-Linguist</b><p>Запуск Qt-Linguist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt5 Documentation</source> <translation>Документация Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt&5 Documentation</source> <translation>Документация Qt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2499"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open Qt5 Documentation</source> <translation>Открыть документацию Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3097"/> + <location filename="../UI/UserInterface.py" line="3072"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation><p>В этой части строки статуса можно масштабировать текущее окно, оболочку или терминал.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates</source> <translation>Менеджер SLL сертификатов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates...</source> <translation>Менеджер SLL сертификатов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293"/> + <location filename="../UI/UserInterface.py" line="2267"/> <source>Manage the saved SSL certificates</source> <translation>Управление сохранёнными SLL сертификатами</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295"/> + <location filename="../UI/UserInterface.py" line="2269"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation><b>Менеджер SLL сертификатов...</b><p>Менеджер сохранённых SLL сертификатов.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters</source> <translation>Редактировать фильтры сообщений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters...</source> <translation>Редактировать фильтры сообщений...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2283"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation>Редактировать фильтры нежелательных сообщений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311"/> + <location filename="../UI/UserInterface.py" line="2285"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation><b>Редактировать фильтры сообщений</b><p>Редактировать фильтры нежелательных сообщений об ошибках.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt&4 Documentation</source> <translation>Документация PyQt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt5 Documentation</source> <translation>Документация PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt&5 Documentation</source> <translation>Документация PyQt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2509"/> <source>Open PyQt5 Documentation</source> <translation>Открыть документацию PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5313"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><p>Стартовый каталог документации PyQt5 не задан.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2560"/> + <location filename="../UI/UserInterface.py" line="2534"/> <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</b><p>Показать Python 3 документацию. Если местонахождение документации не было настроено, то искать в директории <i>doc</i> каталога где находится исполняемый файл Python 3 под Windows и в директории <i>/usr/share/doc/packages/python/html/python-docs-html</i> под UNIX. Местонахождение документации можно задать с помощью переменной окружения PYTHON3DOCDIR.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836"/> - <source>Show Error Log</source> - <translation>Показать журнал ошибок</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1832"/> - <source>Show Error &Log...</source> - <translation>Показать &журнал ошибок...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1837"/> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation><b>Показать журнал ошибок...</b><p>Показать журнал ошибок.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6608"/> - <source>Version Check</source> - <translation>Проверка версии</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1408"/> - <source>Open a new eric6 instance</source> - <translation>Запустить ещё один экземпляр Eric6</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1410"/> - <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> - <translation><b>Новое окно</b><p>Запустить ещё один экземпляр Eric6.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1773"/> - <source><b>Helpviewer</b><p>Display the eric6 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>Открытие Eric6 Web браузера. В его окне будут показываться HTML файлы справки. Оно поддерживает навигацию по ссылкам, закладки, печать и некоторые другие функции. Его можно использовать для просмотра интернета.</p><p>Если перед вызовом окна отображения справки был подсвечен какой-либо текст, то будет произведён поиск этого текста в коллекции справки Qt.</p></translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="1810"/> + <source>Show Error Log</source> + <translation>Показать журнал ошибок</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1806"/> + <source>Show Error &Log...</source> + <translation>Показать &журнал ошибок...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1811"/> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation><b>Показать журнал ошибок...</b><p>Показать журнал ошибок.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6549"/> + <source>Version Check</source> + <translation>Проверка версии</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1382"/> + <source>Open a new eric6 instance</source> + <translation>Запустить ещё один экземпляр Eric6</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1384"/> + <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> + <translation><b>Новое окно</b><p>Запустить ещё один экземпляр Eric6.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1747"/> + <source><b>Helpviewer</b><p>Display the eric6 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>Открытие Eric6 Web браузера. В его окне будут показываться HTML файлы справки. Оно поддерживает навигацию по ссылкам, закладки, печать и некоторые другие функции. Его можно использовать для просмотра интернета.</p><p>Если перед вызовом окна отображения справки был подсвечен какой-либо текст, то будет произведён поиск этого текста в коллекции справки Qt.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1784"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> <translation><b>Проверить наличие обновлений...</b><p>Проверить наличие обновлений Eric6 в интернет.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823"/> + <location filename="../UI/UserInterface.py" line="1797"/> <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> <translation><b>Показать версии, доступные для загрузки...</b><p>Показывает версии Eric6, которые можно скачать с интернета.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 Web Browser</source> <translation>Eric6 Web браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 &Web Browser...</source> <translation>Eric6 &Web браузер...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2099"/> + <location filename="../UI/UserInterface.py" line="2073"/> <source>Start the eric6 Web Browser</source> <translation>Запустить eric6 Web браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2075"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation><b>Eric6 Web браузер</b><p>Путешествие по Интернету с Web браузером, встроенным в Eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2115"/> + <location filename="../UI/UserInterface.py" line="2089"/> <source>Start the eric6 Icon Editor</source> <translation>Запустить редактор иконок</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2117"/> + <location filename="../UI/UserInterface.py" line="2091"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation><b>Редактор иконок</b><p>Запустить редактор иконок.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2203"/> + <location filename="../UI/UserInterface.py" line="2177"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> <translation><b>Показать внешние инструменты</b><p>Открытие диалога отображения пути и версий внешних инструментов, используемых Eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2602"/> + <location filename="../UI/UserInterface.py" line="2576"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.</p></source> <translation><b>Документация Eric API</b><p>Показать документацию Eric API. Местонахождение документации - каталог Documentation/Source, расположенный в директории инсталляции Eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Eric6 не поддерживает Qt3.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>На сайте <b>{1}</b> доступно обновление Eric6 до версии <b>{0}</b>. Загрузить?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>Eric6 is up to date</source> <translation>Eric6 не требует обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>You are using the latest version of eric6</source> <translation>Вы используете самую последнюю версию eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>Настройка Eric6 ещё не выполнена. Сейчас будет запущен диалог конфигурации.</translation> </message> @@ -76396,87 +76396,87 @@ <translation>Генерация панели инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3651"/> + <location filename="../UI/UserInterface.py" line="3626"/> <source>&User Tools</source> <translation>&Инструменты пользователя</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3723"/> + <location filename="../UI/UserInterface.py" line="3698"/> <source>No User Tools Configured</source> <translation>Инструменты пользователя не сконфигурированы</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6624"/> + <location filename="../UI/UserInterface.py" line="6565"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>Невозможно загрузить информацию о версии потому что вы <b>не в сети</b>. Пожалуйста, подключитесь к интернету и повторите попытку.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>Hex Editor</source> <translation>Hex-редактор</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>&Hex Editor...</source> <translation>&Hex-редактор...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2083"/> + <location filename="../UI/UserInterface.py" line="2057"/> <source>Start the eric6 Hex Editor</source> <translation>Запуск eric6 Hex-редактора</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2085"/> + <location filename="../UI/UserInterface.py" line="2059"/> <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> <translation><b>Hex-редактор</b><p>Запускает eric6 Hex-редактор для просмотра или редактирования двоичного файла.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327"/> + <location filename="../UI/UserInterface.py" line="2301"/> <source>Clear private data</source> <translation>Очистить приватные данные</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2303"/> <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> <translation><b>Очистить приватные данные</b><p>Очистка приватных данных, таких как различные списки недавно открытых файлов, проектов или мультипроектов.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1376"/> + <location filename="../UI/UserInterface.py" line="1350"/> <source>Save session...</source> <translation>Сохранить сессию...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1381"/> + <location filename="../UI/UserInterface.py" line="1355"/> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation><b>Сохранить сессию...</b><p>Позволяет сохранить текущую сессию на диск. Открывается диалог для выбора имени файла.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>Load session</source> <translation>Загрузить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1389"/> + <location filename="../UI/UserInterface.py" line="1363"/> <source>Load session...</source> <translation>Загрузить сессию...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1394"/> + <location filename="../UI/UserInterface.py" line="1368"/> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation><b>Загрузить сессию...</b><p>Позволяет загрузить сессию, ранее сохраненную на диске. Открывается диалог для выбора имени файла.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>eric6 Session Files (*.e5s)</source> <translation>Файлы сессии eric6 (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>Crash Session found!</source> <translation>Обнаружена crash-сессия!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Найден файл crashed-сессии. Восстановить эту сессию?</translation> </message> @@ -76491,103 +76491,103 @@ <translation>Инициализация плагинов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>Update Check</source> <translation>Проверка обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation>Вы установили eric непосредственно из исходного кода. Нет возможности проверить наличие обновления.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6690"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation>Вы используете промежуточный релиз eric6. Возможно на сайте доступна и более свежий стабильный релиз.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="953"/> + <location filename="../UI/UserInterface.py" line="938"/> <source>Code Documentation Viewer</source> <translation>Просмотр документации для кода</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2485"/> + <location filename="../UI/UserInterface.py" line="2459"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация Qt4</b><p>Отображение документации Qt4. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2500"/> + <location filename="../UI/UserInterface.py" line="2474"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация Qt5</b><p>Отображение документации Qt5. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2517"/> + <location filename="../UI/UserInterface.py" line="2491"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация PyQt4</b><p>Отображение документации PyQt4. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Докуметация PyQt5</b><p>Отображение документации PyQt5. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2624"/> + <location filename="../UI/UserInterface.py" line="2598"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация PySide</b><p>Отображение документации PySide. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide2 Documentation</source> <translation>Документация PySide2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide&2 Documentation</source> <translation>Документация PySide&2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2643"/> + <location filename="../UI/UserInterface.py" line="2617"/> <source>Open PySide2 Documentation</source> <translation>Открыть документацию PySide2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2645"/> + <location filename="../UI/UserInterface.py" line="2619"/> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация PySide2</b><p>Отображение документации PySide2. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><p>Просмотр документации PySide{0} не настроен.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2409"/> <source>Virtualenv Manager</source> <translation>Менеджер Virtualenv</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2403"/> <source>&Virtualenv Manager...</source> <translation>Менеджер &Virtualenv...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2437"/> + <location filename="../UI/UserInterface.py" line="2411"/> <source><b>Virtualenv Manager</b><p>This opens a dialog to manage the defined Python virtual environments.</p></source> <translation><b>Менеджер Virtualenv</b><p>Открытие диалога управления определенными виртуальными окружениями Python.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2426"/> <source>Virtualenv Configurator</source> <translation>Конфигуратор Virtualenv</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Virtualenv &Configurator...</source> <translation>Конфигуратор &Virtualenv...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2454"/> + <location filename="../UI/UserInterface.py" line="2428"/> <source><b>Virtualenv Configurator</b><p>This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.</p></source> <translation><b>Конфигуратор Virtualenv</b><p>Открытие диалога для задания всех параметров, необходимых для создания виртуального окружения Python посредством приложений virtualenv или pyvenv.</p></translation> </message>
--- a/i18n/eric6_tr.ts Sun Jul 08 17:33:25 2018 +0200 +++ b/i18n/eric6_tr.ts Sun Jul 08 18:55:21 2018 +0200 @@ -5696,292 +5696,292 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1827"/> + <location filename="../Debugger/DebugUI.py" line="1825"/> <source>Run Script</source> <translation>Betiği Çalıştır</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="178"/> + <location filename="../Debugger/DebugUI.py" line="176"/> <source>&Run Script...</source> <translation>Betiiğ Çalıştı&r...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="183"/> + <location filename="../Debugger/DebugUI.py" line="181"/> <source>Run the current Script</source> <translation>Geçerli betiği çalıştır</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="184"/> + <location filename="../Debugger/DebugUI.py" line="182"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Betiği Çalıştır</b><p> KOmut satırı argumanlarını ayarla ve hata ayıklayıcının dışında çalıştır. Eğer dosyada kaydedilmemiş değişiklikler varsa önce kaydedilmelidir.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>Run Project</source> <translation>Projeyi Çalıştır</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="193"/> + <location filename="../Debugger/DebugUI.py" line="191"/> <source>Run &Project...</source> <translation>&Projeyi Çalıştır...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="198"/> + <location filename="../Debugger/DebugUI.py" line="196"/> <source>Run the current Project</source> <translation>Geçerli Projeyi Çalıştır</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="199"/> + <location filename="../Debugger/DebugUI.py" line="197"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script</source> <translation>Betik kapsamını çalıştır</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script...</source> <translation>Betik kapsamını çalıştır...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="212"/> + <source>Perform a coverage run of the current Script</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="214"/> - <source>Perform a coverage run of the current Script</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="216"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project</source> <translation>Proje kapsamını çalıştır</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project...</source> <translation>Proje kapsamını çalıştır...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="228"/> + <source>Perform a coverage run of the current Project</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="230"/> - <source>Perform a coverage run of the current Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="232"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script</source> <translation>Betik Kesiti</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script...</source> <translation>Betik Kesiti...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="246"/> + <location filename="../Debugger/DebugUI.py" line="244"/> <source>Profile the current Script</source> <translation>Geçerli Betiğin Kesiti</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="247"/> + <location filename="../Debugger/DebugUI.py" line="245"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Betik Kesiti</b><p>Komut satırından gerekli argumanları giriniz ve betiğin kesitini alınız Eğer dosyada kaydedilmemiş değişiklikler varsa önce kaydedilmelidir.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project</source> <translation>Proje Kesiti</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project...</source> <translation>Proje Kesiti...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="258"/> + <source>Profile the current Project</source> + <translation>Geçerli Projenin Kesiti</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="260"/> - <source>Profile the current Project</source> - <translation>Geçerli Projenin Kesiti</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="262"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1962"/> + <location filename="../Debugger/DebugUI.py" line="1960"/> <source>Debug Script</source> <translation>Betik Hata Ayıklama</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="271"/> + <location filename="../Debugger/DebugUI.py" line="269"/> <source>&Debug Script...</source> <translation>Be&tik Hata Ayıklama...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="276"/> + <location filename="../Debugger/DebugUI.py" line="274"/> <source>Debug the current Script</source> <translation>Geçerli betikte hata ayıklama</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="277"/> + <location filename="../Debugger/DebugUI.py" line="275"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>Debug Project</source> <translation>Proje Hata Ayıklama</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="287"/> + <location filename="../Debugger/DebugUI.py" line="285"/> <source>Debug &Project...</source> <translation>&Proje Hata Ayıklama...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="290"/> + <source>Debug the current Project</source> + <translation>Geçeli Projede Hata Ayıklama</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="292"/> - <source>Debug the current Project</source> - <translation>Geçeli Projede Hata Ayıklama</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="294"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="306"/> <source>Restart the last debugged script</source> <translation>En son hata ayıklama yapılan betiği yeniden çalıştır</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="325"/> + <location filename="../Debugger/DebugUI.py" line="323"/> <source>Stop the running script.</source> <translation>Çalışan betiği durdur.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>Continue</source> <translation>Devam et</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>&Continue</source> <translation>&Devam et</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="338"/> + <source>Continue running the program from the current line</source> + <translation>Geçerli satırdan itibaren programı çalıştırmaya devam et</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="340"/> - <source>Continue running the program from the current line</source> - <translation>Geçerli satırdan itibaren programı çalıştırmaya devam et</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="342"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Devam Et</b><p>Geçerli satırdan itibaren programı çalıştırmaya devam et. Proğram sonlandırıldığında yada bir bekleme nokatsına ulaştığında durur.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue to Cursor</source> <translation>İmlece kadar devam et</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue &To Cursor</source> <translation>İmlece Kadar Devam E&t</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="356"/> + <location filename="../Debugger/DebugUI.py" line="354"/> <source>Continue running the program from the current line to the current cursor position</source> <translation>Geçerli satırdan geçerli imleç pozisyonuna kadar programı çalıştırmaya devam et</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="359"/> + <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>İmlece Kadar Devam Et</b><p>Geçerli satırdan geçerli imleç pozisyonuna kadar programı çalıştırmaya devam et.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Single Step</source> <translation>Tekli Adım</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Sin&gle Step</source> <translation>Tek&li Adım</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="392"/> + <location filename="../Debugger/DebugUI.py" line="390"/> <source>Execute a single Python statement</source> <translation>Tekbir Python ifadesini girçekleştir</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="393"/> + <location filename="../Debugger/DebugUI.py" line="391"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step Over</source> <translation>Sona Kadar Adımla</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step &Over</source> <translation>S&ona Kadar Adımla</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="408"/> + <location filename="../Debugger/DebugUI.py" line="406"/> <source>Execute a single Python statement staying in the current frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="411"/> + <location filename="../Debugger/DebugUI.py" line="409"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Out</source> <translation>Adımlamadan Çık</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Ou&t</source> <translation>Adımdan Çı&k</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="427"/> + <location filename="../Debugger/DebugUI.py" line="425"/> <source>Execute Python statements until leaving the current frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="430"/> + <location filename="../Debugger/DebugUI.py" line="428"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>Stop</source> <translation>Dur</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>&Stop</source> <translation>D&ur</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="446"/> + <location filename="../Debugger/DebugUI.py" line="444"/> <source>Stop debugging</source> <translation>Hata ayıklamayı durdur</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="447"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Dur</b><p>Çalışan hata ayıklama oturumunu durdur.</p></translation> </message> @@ -6016,267 +6016,267 @@ <translation type="obsolete">Gerçekl&eştir...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Variables Type Filter</source> <translation>Değişken Tipi Süzgeçi</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Varia&bles Type Filter...</source> <translation>Değişken Tipi Süzgeçi&b...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="456"/> + <source>Configure variables type filter</source> + <translation>Değişken Tipi Süzgeçi Yapılandır</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="458"/> - <source>Configure variables type filter</source> - <translation>Değişken Tipi Süzgeçi Yapılandır</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="460"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>Exceptions Filter</source> <translation>İstisnai Süzgeç</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>&Exceptions Filter...</source> <translation>İstisnai Süz&eç...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="472"/> + <source>Configure exceptions filter</source> + <translation>İstisnai Süzgeçi ayarla</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="474"/> - <source>Configure exceptions filter</source> - <translation>İstisnai Süzgeçi ayarla</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="476"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>Ignored Exceptions</source> <translation>Yoksayılan İstisnalar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>&Ignored Exceptions...</source> <translation>Yoksayılan İst&isnalar...</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="489"/> + <source>Configure ignored exceptions</source> + <translation>Yoksayılan istisnaları ayarla</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="491"/> - <source>Configure ignored exceptions</source> - <translation>Yoksayılan istisnaları ayarla</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="493"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>Yoksayılan İstisnalar</b><p>Yoksayılan istisnaları ayarla.hata ayıklama süreci içinde vurgulanan istisnaları listeleme.</p><p>Lütfen dikkat, ele alınmamış istisnalar yoksayılamaz.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="512"/> + <location filename="../Debugger/DebugUI.py" line="510"/> <source>Toggle Breakpoint</source> <translation>Beklemenoktası Açkapa</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="506"/> + <location filename="../Debugger/DebugUI.py" line="504"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation>Shift+F11</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="513"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Açkapa Beklemenoktası</b><p>Geçerli düzenleyicinin geçerli satırırında bir bekleme noktasını açkapa.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="527"/> + <location filename="../Debugger/DebugUI.py" line="525"/> <source>Edit Breakpoint</source> <translation>Bekleme Noktasını Düzenle</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Edit Breakpoint...</source> <translation>Bekleme Noktasını Düzenle...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation>Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="528"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="543"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Next Breakpoint</source> <translation>Sonraki Beklemenoktası</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation>Ctrl+Shift+PgDown</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="542"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="558"/> + <location filename="../Debugger/DebugUI.py" line="556"/> <source>Previous Breakpoint</source> <translation>Önceki Beklemenoktası</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="549"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation>Ctrl+Shift+PgUp</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="557"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="572"/> + <location filename="../Debugger/DebugUI.py" line="570"/> <source>Clear Breakpoints</source> <translation>Beklemenoktalarını Temizle</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="564"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation>Ctrl+Shift+C</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="573"/> + <location filename="../Debugger/DebugUI.py" line="571"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="597"/> + <source>&Debug</source> + <translation>Hata Ayık&lama</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="599"/> - <source>&Debug</source> - <translation>Hata Ayık&lama</translation> + <source>&Start</source> + <translation>Ba&şlat</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="601"/> - <source>&Start</source> - <translation>Ba&şlat</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="603"/> <source>&Breakpoints</source> <translation>&Durmanoktası</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="646"/> + <location filename="../Debugger/DebugUI.py" line="644"/> <source>Start</source> <translation>Başla</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="660"/> + <location filename="../Debugger/DebugUI.py" line="658"/> <source>Debug</source> <translation>Hata Ayıklama</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1100"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Uygulama belirtilmemiş sözdizimi hatalarını belirlemeye başladı.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1119"/> + <location filename="../Debugger/DebugUI.py" line="1117"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1137"/> + <location filename="../Debugger/DebugUI.py" line="1135"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1184"/> + <location filename="../Debugger/DebugUI.py" line="1182"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1199"/> + <location filename="../Debugger/DebugUI.py" line="1197"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1262"/> + <location filename="../Debugger/DebugUI.py" line="1260"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Hata ayıklanmaya başlanan program beklenmeyen bir şekilde sonlandı.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source>Breakpoint Condition Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source>Watch Expression Error</source> <translation>Gözetleme İfade hatası</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1399"/> + <location filename="../Debugger/DebugUI.py" line="1397"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1403"/> + <location filename="../Debugger/DebugUI.py" line="1401"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1409"/> + <location filename="../Debugger/DebugUI.py" line="1407"/> <source>Watch expression already exists</source> <translation>Hali hazırda gözetleme ifadesi var</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1576"/> + <location filename="../Debugger/DebugUI.py" line="1574"/> <source>Coverage of Project</source> <translation>Proje Kapsamı</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1563"/> + <location filename="../Debugger/DebugUI.py" line="1561"/> <source>Coverage of Script</source> <translation>Betik Kapsamı</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <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="../Debugger/DebugUI.py" line="1708"/> + <location filename="../Debugger/DebugUI.py" line="1706"/> <source>Profile of Project</source> <translation>Proje Kesiti</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1695"/> + <location filename="../Debugger/DebugUI.py" line="1693"/> <source>Profile of Script</source> <translation>Betik Kesiti</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation type="unfinished"></translation> </message> @@ -6291,93 +6291,93 @@ <translation type="obsolete">Çalıştırılacak ifadeleri giriniz</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1069"/> + <location filename="../Debugger/DebugUI.py" line="1067"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="304"/> + <location filename="../Debugger/DebugUI.py" line="302"/> <source>Restart</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="310"/> + <location filename="../Debugger/DebugUI.py" line="308"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="326"/> + <location filename="../Debugger/DebugUI.py" line="324"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1248"/> + <location filename="../Debugger/DebugUI.py" line="1246"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> + <location filename="../Debugger/DebugUI.py" line="1034"/> <source><p>Message: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1040"/> <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1045"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1055"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>Message: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1060"/> <source>The program has terminated with an exit status of {0}. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1065"/> + <location filename="../Debugger/DebugUI.py" line="1063"/> <source>"{0}" has terminated with an exit status of {1}. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1074"/> + <location filename="../Debugger/DebugUI.py" line="1072"/> <source>The program has terminated with an exit status of {0}. {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1078"/> + <location filename="../Debugger/DebugUI.py" line="1076"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>Move Instruction Pointer to Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>&Jump To Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="372"/> + <location filename="../Debugger/DebugUI.py" line="370"/> <source>Skip the code from the current line to the current cursor position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="375"/> + <location filename="../Debugger/DebugUI.py" line="373"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation type="unfinished"></translation> </message> @@ -6385,52 +6385,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="../Debugger/DebugViewer.py" line="174"/> + <location filename="../Debugger/DebugViewer.py" line="145"/> <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="178"/> + <location filename="../Debugger/DebugViewer.py" line="149"/> <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="184"/> + <location filename="../Debugger/DebugViewer.py" line="155"/> <source>Set</source> <translation>Ayarla</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="159"/> + <location filename="../Debugger/DebugViewer.py" line="130"/> <source>Source</source> <translation>Kaynak</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="261"/> + <location filename="../Debugger/DebugViewer.py" line="226"/> <source>Threads:</source> <translation>Bağlantılar:</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation>ID</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation>Adı</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation>Durum</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="520"/> + <location filename="../Debugger/DebugViewer.py" line="457"/> <source>waiting at breakpoint</source> <translation>Bekleme oktasında bekleniyor</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="522"/> + <location filename="../Debugger/DebugViewer.py" line="459"/> <source>running</source> <translation>çalışıyor</translation> </message> @@ -41114,75 +41114,75 @@ <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="463"/> <source>Shell</source> - <translation>Kabuk</translation> + <translation type="obsolete">Kabuk</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="469"/> <source>Select to get a separate shell window</source> - <translation>Ayrılmış pencere kabuğu için seç</translation> + <translation type="obsolete">Ayrılmış pencere kabuğu için seç</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="501"/> <source>separate window</source> - <translation>ayrılmış pencere</translation> + <translation type="obsolete">ayrılmış pencere</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="479"/> <source>Select to embed the shell in the Debug-Viewer</source> - <translation>Kabuğu Hata Ayıklama-Göstericisi içene gömmek için seçiniz</translation> + <translation type="obsolete">Kabuğu Hata Ayıklama-Göstericisi içene gömmek için seçiniz</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="511"/> <source>embed in Debug-Viewer</source> - <translation>Hata Ayıklama-Görüntüleyicisene gömülü</translation> + <translation type="obsolete">Hata Ayıklama-Görüntüleyicisene gömülü</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="492"/> <source>File-Browser</source> - <translation>Dosya-Gözatıcısı</translation> + <translation type="obsolete">Dosya-Gözatıcısı</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="498"/> <source>Select to get a separate file browser window</source> - <translation>Dosya gözatıcısı penceresine bir ayraç eklemek için seçiniz</translation> + <translation type="obsolete">Dosya gözatıcısı penceresine bir ayraç eklemek için seçiniz</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="508"/> <source>Select to embed the file browser in the Debug-Viewer</source> - <translation>Dosya Gözatıcısını Hata Ayıklama-Göstericisi içene gömmek için seçiniz</translation> + <translation type="obsolete">Dosya Gözatıcısını Hata Ayıklama-Göstericisi içene gömmek için seçiniz</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="518"/> <source>Select to embed the file browser in the Project-Viewer</source> - <translation>Dosya Gözatıcısını Proje-Göstericisi içene gömmek için seçiniz</translation> + <translation type="obsolete">Dosya Gözatıcısını Proje-Göstericisi içene gömmek için seçiniz</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="521"/> <source>embed in Project-Viewer</source> - <translation>Proje-Görüntüleyici içine gömülü</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="533"/> + <translation type="obsolete">Proje-Görüntüleyici içine gömülü</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="461"/> <source>Tabs</source> <translation>Sekmeler</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="539"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="467"/> <source>Show only one close button instead of one for each tab</source> <translation>Her bir sekmede bir tane yerine tek bir kapatma düğmesi göster</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="562"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="490"/> <source>Reset layout to factory defaults</source> <translation>Yerleşimi fabrika ayarlarına döndür</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="244"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="223"/> <source>System</source> <translation>Sistem</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="226"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="205"/> <source>English</source> <comment>Translate this with your language</comment> <translation>Türkçe</translation> @@ -52781,42 +52781,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="../Project/ProjectBrowser.py" line="71"/> + <location filename="../Project/ProjectBrowser.py" line="65"/> <source>up to date</source> <translation>güncelleniyor</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="72"/> + <location filename="../Project/ProjectBrowser.py" line="66"/> <source>files added</source> <translation>dosyalar eklendi</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="73"/> + <location filename="../Project/ProjectBrowser.py" line="67"/> <source>local modifications</source> <translation>yerel düzenlemeler</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="74"/> + <location filename="../Project/ProjectBrowser.py" line="68"/> <source>files removed</source> <translation>kaldırılan dosyalar</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="75"/> + <location filename="../Project/ProjectBrowser.py" line="69"/> <source>files replaced</source> <translation>degiştirilen dosyalar</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="76"/> + <location filename="../Project/ProjectBrowser.py" line="70"/> <source>update required</source> <translation>güncelleme gerekiyor</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="77"/> + <location filename="../Project/ProjectBrowser.py" line="71"/> <source>conflict</source> <translation>çelişki</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="434"/> + <location filename="../Project/ProjectBrowser.py" line="398"/> <source>unknown status</source> <translation type="unfinished"></translation> </message> @@ -75340,938 +75340,938 @@ <translation>Araççubuğu Yöneticisi Yeniden yapılandırılıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>Project-Viewer</source> <translation>Proje-Görüntüleyici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>Multiproject-Viewer</source> <translation>Çokluproje-Görüntüleyici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Debug-Viewer</source> <translation>Hata Ayıklama Göstericisi</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="973"/> + <location filename="../UI/UserInterface.py" line="955"/> <source>Cooperation</source> <translation>İşbirliği</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Log-Viewer</source> <translation>Kayıt-Gösterici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Task-Viewer</source> <translation>Görev-Gösterici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Template-Viewer</source> <translation>Şablon-Gösterici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>File-Browser</source> <translation>Dosya-Gözatıcısı</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Shell</source> <translation>Kabuk</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>Horizontal Toolbox</source> <translation>Yatay Araçkutusu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1325"/> + <location filename="../UI/UserInterface.py" line="1299"/> <source>{0} - Passive Mode</source> <translation>{0} - Pasif Mod</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332"/> + <location filename="../UI/UserInterface.py" line="1306"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} -Pasif Mod</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1336"/> + <location filename="../UI/UserInterface.py" line="1310"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - Pasif Mod</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Quit</source> <translation>Çık</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>&Quit</source> <translation>&Çıkış</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1365"/> + <location filename="../UI/UserInterface.py" line="1339"/> <source>Quit the IDE</source> <translation>IDE den Çık</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1366"/> + <location filename="../UI/UserInterface.py" line="1340"/> <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="1421"/> + <location filename="../UI/UserInterface.py" line="1395"/> <source>Edit Profile</source> <translation>Düzenleme Kesiti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1401"/> <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="1403"/> + <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="1412"/> + <source>Debug Profile</source> + <translation>Hata Ayıklama Kesiti</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1418"/> + <source>Activate the debug view profile</source> + <translation>Debug görüntü kesitini aktif et</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1420"/> + <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="1429"/> - <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="1438"/> - <source>Debug Profile</source> - <translation>Hata Ayıklama Kesiti</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1444"/> - <source>Activate the debug view profile</source> - <translation>Debug görüntü kesitini aktif et</translation> + <source>&Project-Viewer</source> + <translation>&proje-Görüntüleyici</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1429"/> + <source>Alt+Shift+P</source> + <translation>Alt+Shift+P</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1446"/> + <source>&Multiproject-Viewer</source> + <translation>Çokluproje-Görü&ntüleyici</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1446"/> - <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="1455"/> - <source>&Project-Viewer</source> - <translation>&proje-Görüntüleyici</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>Alt+Shift+P</source> - <translation>Alt+Shift+P</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> - <source>&Multiproject-Viewer</source> - <translation>Çokluproje-Görü&ntüleyici</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>&Debug-Viewer</source> <translation>Ha&ta Ayıklama-Göstericisi</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>&Shell</source> <translation>&Kabuk</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>&Horizontal Toolbox</source> <translation>Ya&tay Araçkutusu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1624"/> + <location filename="../UI/UserInterface.py" line="1598"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Yatay Araçkutusu penceresini açkapa</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1626"/> + <location filename="../UI/UserInterface.py" line="1600"/> <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="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>Left Sidebar</source> <translation>Sol Durumçubuğu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>&Left Sidebar</source> <translation>So&l Durumçubuğu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1638"/> + <location filename="../UI/UserInterface.py" line="1612"/> <source>Toggle the left sidebar window</source> <translation>Sol Durum çubuğu penceresini açkapa</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1613"/> + <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="1635"/> + <source>Bottom Sidebar</source> + <translation>Alt Durumçubuğu</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>&Bottom Sidebar</source> + <translation>Alt Durumçu&buğu</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1639"/> - <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="1661"/> - <source>Bottom Sidebar</source> - <translation>Alt Durumçubuğu</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>&Bottom Sidebar</source> - <translation>Alt Durumçu&buğu</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1665"/> <source>Toggle the bottom sidebar window</source> <translation>Alt Durum çubuğu penceresini açkapa</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1667"/> + <location filename="../UI/UserInterface.py" line="1641"/> <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="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Alt+Shift+O</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>What's This?</source> <translation>Bu nedir?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>&What's This?</source> <translation>Bu &Nedir?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752"/> + <location filename="../UI/UserInterface.py" line="1726"/> <source>Context sensitive help</source> <translation>Duyarlı yardım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1753"/> + <location filename="../UI/UserInterface.py" line="1727"/> <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="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>Helpviewer</source> <translation>Yardımgösterici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>&Helpviewer...</source> <translation>&Yardım Gösterici...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>F1</source> <translation>F1</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1745"/> + <source>Open the helpviewer window</source> + <translation>Yardımgösterici penceresini aç</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show Versions</source> + <translation>Sürümü Göster</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show &Versions</source> + <translation>Sürümü G&öster</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1771"/> - <source>Open the helpviewer window</source> - <translation>Yardımgösterici penceresini aç</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show Versions</source> - <translation>Sürümü Göster</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show &Versions</source> - <translation>Sürümü G&öster</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1797"/> <source>Display version information</source> <translation>Sürüm bilgisini görüntüle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1799"/> + <location filename="../UI/UserInterface.py" line="1773"/> <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="1809"/> + <location filename="../UI/UserInterface.py" line="1783"/> <source>Check for Updates</source> <translation>Güncellemeleri kontrol et</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806"/> + <location filename="../UI/UserInterface.py" line="1780"/> <source>Check for &Updates...</source> <translation>G&üncellemeleri kontrol et...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show downloadable versions</source> <translation>Yüklenebilir sürümleri göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show &downloadable versions...</source> <translation>Yüklenebilir sürümler&i göster...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1821"/> + <location filename="../UI/UserInterface.py" line="1795"/> <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="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Report Bug</source> <translation>Hata Raporu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1844"/> + <location filename="../UI/UserInterface.py" line="1818"/> <source>Report &Bug...</source> <translation>Hata &Raporu...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848"/> + <location filename="../UI/UserInterface.py" line="1822"/> <source>Report a bug</source> <translation>Bir hata rapor et</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1849"/> + <location filename="../UI/UserInterface.py" line="1823"/> <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="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request Feature</source> <translation>İhtiyaç Duyulan Özellikler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request &Feature...</source> <translation>İhtiyaç Duyulan Özellikler &F...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1860"/> + <location filename="../UI/UserInterface.py" line="1834"/> <source>Send a feature request</source> <translation>ihtiyaç duyuulan bir özelliği gönder</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1862"/> + <location filename="../UI/UserInterface.py" line="1836"/> <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="2883"/> + <location filename="../UI/UserInterface.py" line="2858"/> <source>Unittest</source> <translation>Birimtest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1845"/> <source>&Unittest...</source> <translation>B&irimtest...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1850"/> <source>Start unittest dialog</source> <translation>Birimtest diyaloğunu başlat</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1877"/> + <location filename="../UI/UserInterface.py" line="1851"/> <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="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>Unittest Restart</source> <translation>Birimtestini yeniden başlat</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>&Restart Unittest...</source> <translation>Bi&rimtestini Yeniden Başlat...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1890"/> + <location filename="../UI/UserInterface.py" line="1864"/> <source>Restart last unittest</source> <translation>En son birimtesti yeniden başlat</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1891"/> + <location filename="../UI/UserInterface.py" line="1865"/> <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="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest Script</source> <translation>Betik Birimtesti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest &Script...</source> <translation>Betik Birimte&sti...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920"/> + <location filename="../UI/UserInterface.py" line="1894"/> <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="1922"/> + <location filename="../UI/UserInterface.py" line="1896"/> <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="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>Unittest Project</source> <translation>Proje Birimtesti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1930"/> + <location filename="../UI/UserInterface.py" line="1904"/> <source>Unittest &Project...</source> <translation>Birimtest &Proje...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1909"/> <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="1937"/> + <location filename="../UI/UserInterface.py" line="1911"/> <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="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>UI Previewer</source> <translation>UI Öngörünümü</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>&UI Previewer...</source> <translation>&UI Öngörünümü...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003"/> + <location filename="../UI/UserInterface.py" line="1977"/> <source>Start the UI Previewer</source> <translation>UI Öngörünümünü Başlat</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004"/> + <location filename="../UI/UserInterface.py" line="1978"/> <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="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>Translations Previewer</source> <translation>Çevirilerin Öngörünümleri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>&Translations Previewer...</source> <translation>Çevirilerin &Öngörünümleri...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2016"/> + <location filename="../UI/UserInterface.py" line="1990"/> <source>Start the Translations Previewer</source> <translation>Çevirilerin Öngörünümlerini Başlat</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1992"/> + <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="1999"/> + <source>Compare Files</source> + <translation>Dosyaları Karşılaştır</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>&Compare Files...</source> + <translation>D&osyaları Karşılaştır...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2017"/> + <source>Compare two files</source> + <translation>İki dosyayı karşılaştır</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2005"/> + <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="2012"/> + <source>Compare Files side by side</source> + <translation>Dosyaları yan yana karşılaştır</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2018"/> - <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="2025"/> - <source>Compare Files</source> - <translation>Dosyaları Karşılaştır</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>&Compare Files...</source> - <translation>D&osyaları Karşılaştır...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2043"/> - <source>Compare two files</source> - <translation>İki dosyayı karşılaştır</translation> + <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="2026"/> + <source>SQL Browser</source> + <translation>SQL Gözatıcısı</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2026"/> + <source>SQL &Browser...</source> + <translation>SQL &Gözatıcısı...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2031"/> - <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="2038"/> - <source>Compare Files side by side</source> - <translation>Dosyaları yan yana karşılaştır</translation> + <source>Browse a SQL database</source> + <translation>Bir SQL veritabanına gözat</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2032"/> + <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="2044"/> - <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="2052"/> - <source>SQL Browser</source> - <translation>SQL Gözatıcısı</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2052"/> - <source>SQL &Browser...</source> - <translation>SQL &Gözatıcısı...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2057"/> - <source>Browse a SQL database</source> - <translation>Bir SQL veritabanına gözat</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2058"/> - <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="2070"/> <source>Mini Editor</source> <translation>Mini Düzenleyici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2065"/> + <location filename="../UI/UserInterface.py" line="2039"/> <source>Mini &Editor...</source> <translation>Mini &Düzenleyici...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2071"/> + <location filename="../UI/UserInterface.py" line="2045"/> <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> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>Icon Editor</source> <translation>İkon Düzenleyici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>&Icon Editor...</source> <translation>&İkon Düzenleyici...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>Preferences</source> <translation>Seçenekler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>&Preferences...</source> <translation>&Seçenekler...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144"/> + <location filename="../UI/UserInterface.py" line="2118"/> <source>Set the prefered configuration</source> <translation>tercih edilen ayarları yapınız</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146"/> + <location filename="../UI/UserInterface.py" line="2120"/> <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="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>Export Preferences</source> <translation>Seçenekleri Dışa Aktar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>E&xport Preferences...</source> <translation>Tercihleri Dı&şa Aktar...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160"/> + <location filename="../UI/UserInterface.py" line="2134"/> <source>Export the current configuration</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2162"/> + <location filename="../UI/UserInterface.py" line="2136"/> <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="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>Import Preferences</source> <translation>Seçenekleri İçe Aktar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>I&mport Preferences...</source> <translation>Tercihleri İ&çeri Aktar...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2174"/> + <location filename="../UI/UserInterface.py" line="2148"/> <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="2176"/> + <location filename="../UI/UserInterface.py" line="2150"/> <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="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload APIs</source> <translation>API'leri yeniden yükle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload &APIs</source> <translation>&API'leri yeniden yükle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2187"/> + <location filename="../UI/UserInterface.py" line="2161"/> <source>Reload the API information</source> <translation>API bilgisini yeniden yükle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2189"/> + <location filename="../UI/UserInterface.py" line="2163"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2201"/> + <location filename="../UI/UserInterface.py" line="2175"/> <source>Show external tools</source> <translation>Harici araçları göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196"/> + <location filename="../UI/UserInterface.py" line="2170"/> <source>Show external &tools</source> <translation>Karak&ter tablosunu göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>View Profiles</source> <translation>Görünüm Kesiti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>&View Profiles...</source> <translation>&Görünüm Kesiti...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2217"/> + <location filename="../UI/UserInterface.py" line="2191"/> <source>Configure view profiles</source> <translation>Görünüm kesitlerini ayarla</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2219"/> + <location filename="../UI/UserInterface.py" line="2193"/> <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="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Toolbars</source> <translation>Araççubuğu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Tool&bars...</source> <translation>Araççu&buğu...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2234"/> + <location filename="../UI/UserInterface.py" line="2208"/> <source>Configure toolbars</source> <translation>Araççubuğunu ayarla</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235"/> + <location filename="../UI/UserInterface.py" line="2209"/> <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="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard Shortcuts</source> <translation>Klavye Kısayolları</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard &Shortcuts...</source> <translation>Klavye Kı&sayolları...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2249"/> + <location filename="../UI/UserInterface.py" line="2223"/> <source>Set the keyboard shortcuts</source> <translation>Klavye kısayollarını ayarla</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2225"/> <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="5849"/> + <location filename="../UI/UserInterface.py" line="5790"/> <source>Export Keyboard Shortcuts</source> <translation>Kılavye Kısa Yollarını Dışa Aktar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2233"/> <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="2264"/> + <location filename="../UI/UserInterface.py" line="2238"/> <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="2266"/> + <location filename="../UI/UserInterface.py" line="2240"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Import Keyboard Shortcuts</source> <translation>Klavye kısayollarını İçe Aktar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2273"/> + <location filename="../UI/UserInterface.py" line="2247"/> <source>&Import Keyboard Shortcuts...</source> <translation>Klavye K&ısayollarını İçe Aktar...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2278"/> + <location filename="../UI/UserInterface.py" line="2252"/> <source>Import the keyboard shortcuts</source> <translation>Klavye kısayolları içeri aktarılıyor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2280"/> + <location filename="../UI/UserInterface.py" line="2254"/> <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="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Activate current editor</source> <translation>Geçerli düzenleyiciyi aktif yap</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Show next</source> <translation>Sonrakini göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Show previous</source> <translation>Öncekini göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Switch between tabs</source> <translation>Sekmeler arasında değiştir</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>Plugin Infos</source> + <translation>Eklenti Bilgisi</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>&Plugin Infos...</source> + <translation>Eklenti Bil&gisi...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2353"/> + <source>Show Plugin Infos</source> + <translation>Eklenti Bilgisini Göster</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2354"/> + <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="2367"/> + <source>Install Plugins</source> + <translation>Eklenti Kur</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2362"/> + <source>&Install Plugins...</source> + <translation>Ekle&nti Kur...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2368"/> + <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="2380"/> + <source>Uninstall Plugin</source> + <translation>Eklenti Kaldır</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2375"/> - <source>Plugin Infos</source> - <translation>Eklenti Bilgisi</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2375"/> - <source>&Plugin Infos...</source> - <translation>Eklenti Bil&gisi...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2379"/> - <source>Show Plugin Infos</source> - <translation>Eklenti Bilgisini Göster</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2380"/> - <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="2393"/> - <source>Install Plugins</source> - <translation>Eklenti Kur</translation> + <source>&Uninstall Plugin...</source> + <translation>Ekle&nti Kaldır...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2381"/> + <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="2388"/> + <source>Plugin Repository</source> + <translation>Eklenti Havuzu</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2388"/> - <source>&Install Plugins...</source> - <translation>Ekle&nti Kur...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2394"/> - <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="2406"/> - <source>Uninstall Plugin</source> - <translation>Eklenti Kaldır</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2401"/> - <source>&Uninstall Plugin...</source> - <translation>Ekle&nti Kaldır...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2407"/> - <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="2414"/> - <source>Plugin Repository</source> - <translation>Eklenti Havuzu</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2414"/> <source>Plugin &Repository...</source> <translation>Eklenti Hav&uzu...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419"/> + <location filename="../UI/UserInterface.py" line="2393"/> <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="2421"/> + <location filename="../UI/UserInterface.py" line="2395"/> <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="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt4 Documentation</source> <translation>Qt4 Belgeleri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt&4 Documentation</source> <translation>Qt&4 Belgeleri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2484"/> + <location filename="../UI/UserInterface.py" line="2458"/> <source>Open Qt4 Documentation</source> <translation>QT4 Belgelerini Aç</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt4 Documentation</source> <translation>PyQt4 Belgeleri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2516"/> + <location filename="../UI/UserInterface.py" line="2490"/> <source>Open PyQt4 Documentation</source> <translation>PyQt4 Begelerini aç</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2570"/> + <source>Eric API Documentation</source> + <translation>Eric API Belgeleri</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2570"/> + <source>&Eric API Documentation</source> + <translation>&Eric API Dökümanı</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2574"/> + <source>Open Eric API Documentation</source> + <translation>Eric API Belgelerini Aç</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2592"/> + <source>PySide Documentation</source> + <translation>PySide Belgeleri</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2592"/> + <source>Py&Side Documentation</source> + <translation>Py&Side Belgeleri</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2596"/> - <source>Eric API Documentation</source> - <translation>Eric API Belgeleri</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2596"/> - <source>&Eric API Documentation</source> - <translation>&Eric API Dökümanı</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2600"/> - <source>Open Eric API Documentation</source> - <translation>Eric API Belgelerini Aç</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2618"/> - <source>PySide Documentation</source> - <translation>PySide Belgeleri</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2618"/> - <source>Py&Side Documentation</source> - <translation>Py&Side Belgeleri</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2622"/> <source>Open PySide Documentation</source> <translation>PySide belgelerini açın</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691"/> + <location filename="../UI/UserInterface.py" line="2665"/> <source>&Unittest</source> <translation>Bir&imtest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2708"/> + <location filename="../UI/UserInterface.py" line="2682"/> <source>E&xtras</source> <translation>İla&veler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2713"/> + <location filename="../UI/UserInterface.py" line="2687"/> <source>Wi&zards</source> <translation>Sihirba&z</translation> </message> @@ -76281,444 +76281,444 @@ <translation type="obsolete">&Araçlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2724"/> + <location filename="../UI/UserInterface.py" line="2698"/> <source>Select Tool Group</source> <translation>Araç Grubunu Seç</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2732"/> + <location filename="../UI/UserInterface.py" line="2706"/> <source>Se&ttings</source> <translation>Ayar&lar</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2731"/> + <source>&Window</source> + <translation>&Pencere</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757"/> - <source>&Window</source> - <translation>&Pencere</translation> + <source>&Toolbars</source> + <translation>&Araççubuğu</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768"/> + <source>P&lugins</source> + <translation>Ek&lentiler</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2777"/> + <source>Configure...</source> + <translation>Ayarlanıyor...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2782"/> - <source>&Toolbars</source> - <translation>&Araççubuğu</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2793"/> - <source>P&lugins</source> - <translation>Ek&lentiler</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2802"/> - <source>Configure...</source> - <translation>Ayarlanıyor...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2807"/> <source>&Help</source> <translation>&Yardım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2882"/> + <location filename="../UI/UserInterface.py" line="2857"/> <source>Tools</source> <translation>Araçlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2884"/> + <location filename="../UI/UserInterface.py" line="2859"/> <source>Settings</source> <translation>Ayarlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <source>Help</source> <translation>Yardım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2886"/> + <location filename="../UI/UserInterface.py" line="2861"/> <source>Profiles</source> <translation>Kesitler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2887"/> + <location filename="../UI/UserInterface.py" line="2862"/> <source>Plugins</source> <translation>Eklentiler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3051"/> + <location filename="../UI/UserInterface.py" line="3026"/> <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="3058"/> + <location filename="../UI/UserInterface.py" line="3033"/> <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="3065"/> + <location filename="../UI/UserInterface.py" line="3040"/> <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="3072"/> + <location filename="../UI/UserInterface.py" line="3047"/> <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="3079"/> + <location filename="../UI/UserInterface.py" line="3054"/> <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="3086"/> + <location filename="../UI/UserInterface.py" line="3061"/> <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="3161"/> + <location filename="../UI/UserInterface.py" line="3136"/> <source>External Tools/{0}</source> <translation>Harici Araçlar/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3262"/> + <location filename="../UI/UserInterface.py" line="3237"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Sürüm Numaraları</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6829"/> + <location filename="../UI/UserInterface.py" line="6770"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <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> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>Restart application</source> <translation>Uygulmayı yeniden başlat</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <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="3676"/> + <location filename="../UI/UserInterface.py" line="3651"/> <source>Configure Tool Groups ...</source> <translation>Alet Grupları Ayarlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3680"/> + <location filename="../UI/UserInterface.py" line="3655"/> <source>Configure current Tool Group ...</source> <translation>Geçerli alet grubunu ayarla...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3631"/> + <location filename="../UI/UserInterface.py" line="3606"/> <source>&Builtin Tools</source> <translation>Ya&pılandırma Araçları</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3648"/> + <location filename="../UI/UserInterface.py" line="3623"/> <source>&Plugin Tools</source> <translation>Eklen&ti Araçları</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3796"/> + <location filename="../UI/UserInterface.py" line="3771"/> <source>&Show all</source> <translation>Hepsini Gö&ster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3798"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>&Hide all</source> <translation>&Hepsini gizle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <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="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt 3 support</source> <translation>Qt3 Desteği</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <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="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <source>Process Generation Error</source> <translation>İşlem Üretecinde Hata</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4551"/> + <location filename="../UI/UserInterface.py" line="4492"/> <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="4618"/> + <location filename="../UI/UserInterface.py" line="4559"/> <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="4669"/> + <location filename="../UI/UserInterface.py" line="4610"/> <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="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <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="4711"/> + <location filename="../UI/UserInterface.py" line="4652"/> <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="4731"/> + <location filename="../UI/UserInterface.py" line="4672"/> <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="4779"/> + <location filename="../UI/UserInterface.py" line="4720"/> <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="4834"/> + <location filename="../UI/UserInterface.py" line="4775"/> <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="4855"/> + <location filename="../UI/UserInterface.py" line="4796"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>External Tools</source> <translation>Harici Araçlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4948"/> + <location filename="../UI/UserInterface.py" line="4889"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4996"/> + <location filename="../UI/UserInterface.py" line="4937"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5088"/> + <location filename="../UI/UserInterface.py" line="5029"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <source>Documentation Missing</source> <translation>Eksik Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <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="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source>Documentation</source> <translation>Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5306"/> + <location filename="../UI/UserInterface.py" line="5247"/> <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="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <source>Save tasks</source> <translation>Görevleri kaydet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <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="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <source>Read tasks</source> <translation>Görevler Okunuyor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <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="6168"/> + <location filename="../UI/UserInterface.py" line="6109"/> <source>Save session</source> <translation>Oturumu kaydet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6105"/> + <location filename="../UI/UserInterface.py" line="6046"/> <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="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source>Read session</source> <translation>Oturumu oku</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <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="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <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="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>&Cancel</source> <translation>&Vazgeç</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6613"/> + <location filename="../UI/UserInterface.py" line="6554"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>Update available</source> <translation>Güncelleme mümkün değil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Error during updates check</source> <translation>Güncellemeleri kontrol esnasında hata</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Could not perform updates check.</source> <translation>Güncellemelere ulaşamıyorum.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6815"/> + <location filename="../UI/UserInterface.py" line="6756"/> <source><h3>Available versions</h3><table></source> <translation><h3>Mümkün sürümler</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>First time usage</source> <translation>İlk kullanım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1030"/> + <location filename="../UI/UserInterface.py" line="1004"/> <source>Symbols</source> <translation>Semboller</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1038"/> + <location filename="../UI/UserInterface.py" line="1012"/> <source>Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Alt+Shift+Y</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1728"/> + <location filename="../UI/UserInterface.py" line="1702"/> <source>Alt+Shift+B</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2532"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2576"/> + <location filename="../UI/UserInterface.py" line="2550"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2552"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6670"/> + <location filename="../UI/UserInterface.py" line="6611"/> <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="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <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> @@ -76743,568 +76743,568 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New Window</source> <translation type="unfinished">Yeni Pencere</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New &Window</source> <translation type="unfinished">Yeni &Pencere</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1904"/> + <location filename="../UI/UserInterface.py" line="1878"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1906"/> + <location filename="../UI/UserInterface.py" line="1880"/> <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="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>&Snapshot...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2129"/> + <location filename="../UI/UserInterface.py" line="2103"/> <source>Take snapshots of a screen region</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2131"/> + <location filename="../UI/UserInterface.py" line="2105"/> <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="4925"/> + <location filename="../UI/UserInterface.py" line="4866"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6885"/> + <location filename="../UI/UserInterface.py" line="6826"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1595"/> + <location filename="../UI/UserInterface.py" line="1569"/> <source>Left Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1607"/> + <location filename="../UI/UserInterface.py" line="1581"/> <source>Right Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1461"/> + <location filename="../UI/UserInterface.py" line="1435"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1463"/> + <location filename="../UI/UserInterface.py" line="1437"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1478"/> + <location filename="../UI/UserInterface.py" line="1452"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1454"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1470"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1472"/> + <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1488"/> + <source>Switch the input focus to the Shell window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1490"/> + <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1498"/> - <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1514"/> - <source>Switch the input focus to the Shell window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1516"/> - <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> <source>&File-Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1530"/> + <location filename="../UI/UserInterface.py" line="1504"/> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1532"/> + <location filename="../UI/UserInterface.py" line="1506"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Lo&g-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1547"/> + <location filename="../UI/UserInterface.py" line="1521"/> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1523"/> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>&Task-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1539"/> + <source>Switch the input focus to the Task-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Templ&ate-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1557"/> + <source>Switch the input focus to the Template-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1559"/> - <source>&Task-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1565"/> - <source>Switch the input focus to the Task-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Templ&ate-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1583"/> - <source>Switch the input focus to the Template-Viewer window.</source> + <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1569"/> + <source>&Left Toolbox</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1572"/> + <source>Toggle the Left Toolbox window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> + <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1581"/> + <source>&Right Toolbox</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1585"/> - <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1595"/> - <source>&Left Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1598"/> - <source>Toggle the Left Toolbox window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1599"/> - <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1607"/> - <source>&Right Toolbox</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1611"/> <source>Toggle the Right Toolbox window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1612"/> + <location filename="../UI/UserInterface.py" line="1586"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right 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="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>Right Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>&Right Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1651"/> + <location filename="../UI/UserInterface.py" line="1625"/> <source>Toggle the right sidebar window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1653"/> + <location filename="../UI/UserInterface.py" line="1627"/> <source><b>Toggle the right sidebar window</b><p>If the right 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="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Cooperation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Co&operation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1681"/> + <location filename="../UI/UserInterface.py" line="1655"/> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1683"/> + <location filename="../UI/UserInterface.py" line="1657"/> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Symbols-Viewer</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>S&ymbols-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1690"/> + <source>Switch the input focus to the Symbols-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1692"/> + <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Numbers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Num&bers-Viewer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1708"/> + <source>Switch the input focus to the Numbers-Viewer window.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1710"/> - <source>S&ymbols-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1716"/> - <source>Switch the input focus to the Symbols-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1718"/> - <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Numbers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Num&bers-Viewer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1734"/> - <source>Switch the input focus to the Numbers-Viewer window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1736"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2762"/> + <location filename="../UI/UserInterface.py" line="2736"/> <source>&Windows</source> <translation type="unfinished">&Pencereler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1567"/> + <location filename="../UI/UserInterface.py" line="1541"/> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>IRC</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>&IRC</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>Meta+Shift+I</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1699"/> + <location filename="../UI/UserInterface.py" line="1673"/> <source>Switch the input focus to the IRC window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1701"/> + <location filename="../UI/UserInterface.py" line="1675"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1936"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1937"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-Designer</source> + <source>Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-&Designer...</source> + <source>Qt-&Linguist...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1962"/> - <source>Start Qt-Designer</source> + <source>Start Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="1963"/> - <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-&Linguist...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1988"/> - <source>Start Qt-Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1989"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt5 Documentation</source> <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt&5 Documentation</source> <translation type="unfinished">Qt&4 Belgeleri {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2499"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open Qt5 Documentation</source> <translation type="unfinished">QT4 Belgelerini Aç {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3097"/> + <location filename="../UI/UserInterface.py" line="3072"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293"/> + <location filename="../UI/UserInterface.py" line="2267"/> <source>Manage the saved SSL certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295"/> + <location filename="../UI/UserInterface.py" line="2269"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2283"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311"/> + <location filename="../UI/UserInterface.py" line="2285"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt5 Documentation</source> <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2509"/> <source>Open PyQt5 Documentation</source> <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5313"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>PyQt4 Belgelerinin başlama noktası ayarlanmamış.</p> {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2560"/> + <location filename="../UI/UserInterface.py" line="2534"/> <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="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836"/> - <source>Show Error Log</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1832"/> - <source>Show Error &Log...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1837"/> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6608"/> - <source>Version Check</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1408"/> - <source>Open a new eric6 instance</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1410"/> - <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1773"/> - <source><b>Helpviewer</b><p>Display the eric6 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="1810"/> + <source>Show Error Log</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1806"/> + <source>Show Error &Log...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1811"/> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6549"/> + <source>Version Check</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1382"/> + <source>Open a new eric6 instance</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1384"/> + <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1747"/> + <source><b>Helpviewer</b><p>Display the eric6 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="1784"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> <translation type="unfinished"><b>Güncellemeleri kontrol et...</b><p>İnternetten eric5 güncellemesi olup olmadını kontrol et.</p> {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823"/> + <location filename="../UI/UserInterface.py" line="1797"/> <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 Web Browser</source> <translation type="unfinished">Eric5 Web Gözatıcısı {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 &Web Browser...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2099"/> + <location filename="../UI/UserInterface.py" line="2073"/> <source>Start the eric6 Web Browser</source> <translation type="unfinished">Eric5 Web Gözatıcısınıi başlat {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2075"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2115"/> + <location filename="../UI/UserInterface.py" line="2089"/> <source>Start the eric6 Icon Editor</source> <translation type="unfinished">Eric5 İkon düzenleyiciyi başlat {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2117"/> + <location filename="../UI/UserInterface.py" line="2091"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2203"/> + <location filename="../UI/UserInterface.py" line="2177"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2602"/> + <location filename="../UI/UserInterface.py" line="2576"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished">Qt v.3 eric5 tarafından desteklenmiyor. {3 ?} {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">Eric5 henüz ayarlanmadı. Ayarlar Diyaloğu başlatılıyor. {6 ?}</translation> </message> @@ -77314,87 +77314,87 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3651"/> + <location filename="../UI/UserInterface.py" line="3626"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3723"/> + <location filename="../UI/UserInterface.py" line="3698"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6624"/> + <location filename="../UI/UserInterface.py" line="6565"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>&Hex Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2083"/> + <location filename="../UI/UserInterface.py" line="2057"/> <source>Start the eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2085"/> + <location filename="../UI/UserInterface.py" line="2059"/> <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327"/> + <location filename="../UI/UserInterface.py" line="2301"/> <source>Clear private data</source> <translation type="unfinished">Özel verileri temizle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2303"/> <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1376"/> + <location filename="../UI/UserInterface.py" line="1350"/> <source>Save session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1381"/> + <location filename="../UI/UserInterface.py" line="1355"/> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>Load session</source> <translation type="unfinished">Oturum yükleniyor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1389"/> + <location filename="../UI/UserInterface.py" line="1363"/> <source>Load session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1394"/> + <location filename="../UI/UserInterface.py" line="1368"/> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -77409,102 +77409,102 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6690"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="953"/> + <location filename="../UI/UserInterface.py" line="938"/> <source>Code Documentation Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2485"/> + <location filename="../UI/UserInterface.py" line="2459"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2500"/> + <location filename="../UI/UserInterface.py" line="2474"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2517"/> + <location filename="../UI/UserInterface.py" line="2491"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2624"/> + <location filename="../UI/UserInterface.py" line="2598"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide&2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2643"/> + <location filename="../UI/UserInterface.py" line="2617"/> <source>Open PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2645"/> + <location filename="../UI/UserInterface.py" line="2619"/> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2409"/> <source>Virtualenv Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2403"/> <source>&Virtualenv Manager...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2437"/> + <location filename="../UI/UserInterface.py" line="2411"/> <source><b>Virtualenv Manager</b><p>This opens a dialog to manage the defined Python virtual environments.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2426"/> <source>Virtualenv Configurator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Virtualenv &Configurator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2454"/> + <location filename="../UI/UserInterface.py" line="2428"/> <source><b>Virtualenv Configurator</b><p>This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_zh_CN.ts Sun Jul 08 17:33:25 2018 +0200 +++ b/i18n/eric6_zh_CN.ts Sun Jul 08 18:55:21 2018 +0200 @@ -5697,292 +5697,292 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1827"/> + <location filename="../Debugger/DebugUI.py" line="1825"/> <source>Run Script</source> <translation>运行脚本</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="178"/> + <location filename="../Debugger/DebugUI.py" line="176"/> <source>&Run Script...</source> <translation>运行脚本(&R)…</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="183"/> + <location filename="../Debugger/DebugUI.py" line="181"/> <source>Run the current Script</source> <translation>运行当前脚本</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="184"/> + <location filename="../Debugger/DebugUI.py" line="182"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>运行脚本</b><p>设置命令行参数,并在调试器之外运行脚本。如果文件未对更改进行保存,则可能会先行保存。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>Run Project</source> <translation>运行项目</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="193"/> + <location filename="../Debugger/DebugUI.py" line="191"/> <source>Run &Project...</source> <translation>运行项目(&P)…</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="198"/> + <location filename="../Debugger/DebugUI.py" line="196"/> <source>Run the current Project</source> <translation>运行当前项目</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="199"/> + <location filename="../Debugger/DebugUI.py" line="197"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>运行项目</b><p>设置命令行参数,并在调试器之外运行当前项目。如果当前项目未对更改进行保存,则可能会先行保存。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script</source> <translation>脚本覆盖率测试</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="209"/> + <location filename="../Debugger/DebugUI.py" line="207"/> <source>Coverage run of Script...</source> <translation>脚本覆盖率测试…</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="212"/> + <source>Perform a coverage run of the current Script</source> + <translation>对当前脚本进行覆盖率测试运行</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="214"/> - <source>Perform a coverage run of the current Script</source> - <translation>对当前脚本进行覆盖率测试运行</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="216"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation><b>脚本覆盖率测试</b><p>设置命令行参数,并在覆盖率分析工具的控制下运行脚本。如果文件未保存则会先行保存。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project</source> <translation>项目覆盖率测试</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="225"/> + <location filename="../Debugger/DebugUI.py" line="223"/> <source>Coverage run of Project...</source> <translation>项目覆盖率测试…</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="228"/> + <source>Perform a coverage run of the current Project</source> + <translation>对当前项目进行覆盖率测试运行</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="230"/> - <source>Perform a coverage run of the current Project</source> - <translation>对当前项目进行覆盖率测试运行</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="232"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>项目覆盖率测试</b><p>设置命令行参数,并在覆盖率分析工具的控制下运行项目。如果当前项目的文件未保存则会先行保存。</P></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script</source> <translation>剖析脚本</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="242"/> + <location filename="../Debugger/DebugUI.py" line="240"/> <source>Profile Script...</source> <translation>剖析脚本…</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="246"/> + <location filename="../Debugger/DebugUI.py" line="244"/> <source>Profile the current Script</source> <translation>剖析当前脚本</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="247"/> + <location filename="../Debugger/DebugUI.py" line="245"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>剖析脚本</b><p>设置命令行参数,并剖析脚本。如果文件未保存则会先行保存。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project</source> <translation>剖析项目</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="255"/> + <location filename="../Debugger/DebugUI.py" line="253"/> <source>Profile Project...</source> <translation>剖析项目…</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="258"/> + <source>Profile the current Project</source> + <translation>剖析当前项目</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="260"/> - <source>Profile the current Project</source> - <translation>剖析当前项目</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="262"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>剖析项目</b><p>设置命令行参数,并剖析当前项目。如果当前项目的文件未保存则会先行保存。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1962"/> + <location filename="../Debugger/DebugUI.py" line="1960"/> <source>Debug Script</source> <translation>调试脚本</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="271"/> + <location filename="../Debugger/DebugUI.py" line="269"/> <source>&Debug Script...</source> <translation>调试脚本(&D)…</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="276"/> + <location filename="../Debugger/DebugUI.py" line="274"/> <source>Debug the current Script</source> <translation>调试当前脚本</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="277"/> + <location filename="../Debugger/DebugUI.py" line="275"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>调试脚本</b><p>设置命令行参数,并将当前行设为当前编辑窗口首先执行的 Python 声明。如果文件未保存则会先行保存。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>Debug Project</source> <translation>调试项目</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="287"/> + <location filename="../Debugger/DebugUI.py" line="285"/> <source>Debug &Project...</source> <translation>调试项目(&P)…</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="290"/> + <source>Debug the current Project</source> + <translation>调试当前项目</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="292"/> - <source>Debug the current Project</source> - <translation>调试当前项目</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="294"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>调试当前项目</b><p>设置命令行参数,并将当前行设为当前项目主脚本首先执行的 Python 声明。如果当前项目的文件未保存则会先行保存。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="306"/> <source>Restart the last debugged script</source> <translation>重新启动最后调试的脚本</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="325"/> + <location filename="../Debugger/DebugUI.py" line="323"/> <source>Stop the running script.</source> <translation>中止正在运行的脚本。</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>Continue</source> <translation>继续</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="335"/> + <location filename="../Debugger/DebugUI.py" line="333"/> <source>&Continue</source> <translation>继续(&C)</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="338"/> + <source>Continue running the program from the current line</source> + <translation>从当前行继续运行程序</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="340"/> - <source>Continue running the program from the current line</source> - <translation>从当前行继续运行程序</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="342"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>继续</b><p>从当前行继续运行程序。当程序终止或到达断点的时候,程序也将中止。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue to Cursor</source> <translation>继续到光标</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="351"/> + <location filename="../Debugger/DebugUI.py" line="349"/> <source>Continue &To Cursor</source> <translation>继续到光标(&T)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="356"/> + <location filename="../Debugger/DebugUI.py" line="354"/> <source>Continue running the program from the current line to the current cursor position</source> <translation>继续运行程序从当前行到当前光标所在位置</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="359"/> + <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>继续到光标</b><p>继续运行程序从当前行到当前光标所在位置。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Single Step</source> <translation>单步执行</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="387"/> + <location filename="../Debugger/DebugUI.py" line="385"/> <source>Sin&gle Step</source> <translation>单步执行(&Q)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="392"/> + <location filename="../Debugger/DebugUI.py" line="390"/> <source>Execute a single Python statement</source> <translation>执行单条 Python 语句</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="393"/> + <location filename="../Debugger/DebugUI.py" line="391"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>单步执行</b><p>执行单条 Python 语句。如果该语句是 <tt>import</tt> 语句、类构造函数或者函数调用的方法,则由调试器 控制下一行语句。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step Over</source> <translation>跳过</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="403"/> + <location filename="../Debugger/DebugUI.py" line="401"/> <source>Step &Over</source> <translation>跳过(&O)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="408"/> + <location filename="../Debugger/DebugUI.py" line="406"/> <source>Execute a single Python statement staying in the current frame</source> <translation>保持在当前框架中执行单条 Python 语句</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="411"/> + <location filename="../Debugger/DebugUI.py" line="409"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation><b>跳过</b><p>保持在相同框架中执行单条 Python 语句。如果该语句是 <tt>import</tt> 语句、类构造函数或者函数调用的方法,则则由调试器控制下一行语句。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Out</source> <translation>跳出</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="422"/> + <location filename="../Debugger/DebugUI.py" line="420"/> <source>Step Ou&t</source> <translation>跳出(&T)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="427"/> + <location filename="../Debugger/DebugUI.py" line="425"/> <source>Execute Python statements until leaving the current frame</source> <translation>执行 Python 语句直到离开当前框架</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="430"/> + <location filename="../Debugger/DebugUI.py" line="428"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation><b>跳出</b><p>执行 Python 语句直到离开当前框架。如果该语句处于 <tt>import</tt> 声明、类构造函数或函数调用的方法中,在离开当前框架后将由调试器进行控制。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>Stop</source> <translation>中止</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="441"/> + <location filename="../Debugger/DebugUI.py" line="439"/> <source>&Stop</source> <translation>中止(&S)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="446"/> + <location filename="../Debugger/DebugUI.py" line="444"/> <source>Stop debugging</source> <translation>中止调试</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="447"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>中止</b><p>中止正在运行中的调试会话。</p></translation> </message> @@ -6027,220 +6027,220 @@ <translation type="obsolete"><b>执行</b><p>在调试程序的当前上下文中执行一行语句。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Variables Type Filter</source> <translation>变量类型过滤器</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="454"/> + <location filename="../Debugger/DebugUI.py" line="452"/> <source>Varia&bles Type Filter...</source> <translation>变量类型过滤器(&B)…</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="456"/> + <source>Configure variables type filter</source> + <translation>配置变量类型过滤器</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="458"/> - <source>Configure variables type filter</source> - <translation>配置变量类型过滤器</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="460"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation><b>变量类型过滤器</b><p>配置变量类型过滤器。在调试会话期间,只有未被选择的变量类型会被显示在全局或局部变量窗口中。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>Exceptions Filter</source> <translation>异常过滤器</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="470"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source>&Exceptions Filter...</source> <translation>异常过滤器(&E)…</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="472"/> + <source>Configure exceptions filter</source> + <translation>配置异常过滤器</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="474"/> - <source>Configure exceptions filter</source> - <translation>配置异常过滤器</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="476"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>异常过滤器</b><p>配置异常过滤器。在调试会话期间,只有已列出的异常类型会被加亮显示。</p><p>注意:所有未处理的异常在过滤器列表中将被取消加亮。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>Ignored Exceptions</source> <translation>忽略的异常</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="487"/> + <location filename="../Debugger/DebugUI.py" line="485"/> <source>&Ignored Exceptions...</source> <translation>忽略的异常(&I)</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="489"/> + <source>Configure ignored exceptions</source> + <translation>配置忽略的异常</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="491"/> - <source>Configure ignored exceptions</source> - <translation>配置忽略的异常</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="493"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>忽略的异常</b><p>配置忽略的异常。在调试会话期间,只有已列出的异常类型会被加亮显示。</p><p>注意:未处理的异常不能被忽略。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="512"/> + <location filename="../Debugger/DebugUI.py" line="510"/> <source>Toggle Breakpoint</source> <translation>切换断点</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="513"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>切换断点</b><p>在当前编辑器的当前行切换断点。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="527"/> + <location filename="../Debugger/DebugUI.py" line="525"/> <source>Edit Breakpoint</source> <translation>编辑断点</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Edit Breakpoint...</source> <translation>编辑断点…</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="528"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>编辑断点</b><p>打开一个对话框编辑断点属性。对当前编辑器的当前行起作用。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="543"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Next Breakpoint</source> <translation>下一个断点</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation>Ctrl+Shift+PgDown</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="542"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>下一个断点</b><p>跳转到当前编辑器的下一个断点。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="558"/> + <location filename="../Debugger/DebugUI.py" line="556"/> <source>Previous Breakpoint</source> <translation>前一个断点</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="549"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation>Ctrl+Shift+PgUp</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="557"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>前一个断点</b><p>跳转到当前编辑器的前一个断点。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="572"/> + <location filename="../Debugger/DebugUI.py" line="570"/> <source>Clear Breakpoints</source> <translation>清除断点</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="564"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation>Ctrl+Shift+C</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="573"/> + <location filename="../Debugger/DebugUI.py" line="571"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation><b>清除断点</b><p>清除所有编辑器的断点。</p></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="597"/> + <source>&Debug</source> + <translation>调试(&D)</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="599"/> - <source>&Debug</source> - <translation>调试(&D)</translation> + <source>&Start</source> + <translation>开始(&S)</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="601"/> - <source>&Start</source> - <translation>开始(&S)</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="603"/> <source>&Breakpoints</source> <translation>断点(&B)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="646"/> + <location filename="../Debugger/DebugUI.py" line="644"/> <source>Start</source> <translation>开始</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="660"/> + <location filename="../Debugger/DebugUI.py" line="658"/> <source>Debug</source> <translation>调试</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1100"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>被调试的程序包含一个未指定的语法错误。</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1137"/> + <location filename="../Debugger/DebugUI.py" line="1135"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>产生了一个未处理的异常。详细信息参见命令行窗口。</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1262"/> + <location filename="../Debugger/DebugUI.py" line="1260"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>被调试的程序意外终止。</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source>Breakpoint Condition Error</source> <translation>断点条件错误</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source>Watch Expression Error</source> <translation>监视表达式出错</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1409"/> + <location filename="../Debugger/DebugUI.py" line="1407"/> <source>Watch expression already exists</source> <translation>监视表达式已存在</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1576"/> + <location filename="../Debugger/DebugUI.py" line="1574"/> <source>Coverage of Project</source> <translation>项目覆盖率</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1563"/> + <location filename="../Debugger/DebugUI.py" line="1561"/> <source>Coverage of Script</source> <translation>脚本覆盖率</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1842"/> + <location filename="../Debugger/DebugUI.py" line="1840"/> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1708"/> + <location filename="../Debugger/DebugUI.py" line="1706"/> <source>Profile of Project</source> <translation>项目轮廓</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1695"/> + <location filename="../Debugger/DebugUI.py" line="1693"/> <source>Profile of Script</source> <translation>脚本轮廓</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1978"/> + <location filename="../Debugger/DebugUI.py" line="1976"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>当前项目未定义主脚本。不能进行调试。</translation> </message> @@ -6255,13 +6255,13 @@ <translation type="obsolete">输入执行语句</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="506"/> + <location filename="../Debugger/DebugUI.py" line="504"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation>Shift+F11</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation>Shift+F12</translation> @@ -6277,128 +6277,128 @@ <translation type="obsolete"><p><b>{0}</b> 已终止,其返回值为 {1}。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1119"/> + <location filename="../Debugger/DebugUI.py" line="1117"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1184"/> + <location filename="../Debugger/DebugUI.py" line="1182"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1199"/> + <location filename="../Debugger/DebugUI.py" line="1197"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1333"/> + <location filename="../Debugger/DebugUI.py" line="1331"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1367"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1399"/> + <location filename="../Debugger/DebugUI.py" line="1397"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1403"/> + <location filename="../Debugger/DebugUI.py" line="1401"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1069"/> + <location filename="../Debugger/DebugUI.py" line="1067"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="304"/> + <location filename="../Debugger/DebugUI.py" line="302"/> <source>Restart</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="310"/> + <location filename="../Debugger/DebugUI.py" line="308"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="326"/> + <location filename="../Debugger/DebugUI.py" line="324"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1248"/> + <location filename="../Debugger/DebugUI.py" line="1246"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> + <location filename="../Debugger/DebugUI.py" line="1034"/> <source><p>Message: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1040"/> <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1045"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1055"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>Message: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1060"/> <source>The program has terminated with an exit status of {0}. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1065"/> + <location filename="../Debugger/DebugUI.py" line="1063"/> <source>"{0}" has terminated with an exit status of {1}. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1074"/> + <location filename="../Debugger/DebugUI.py" line="1072"/> <source>The program has terminated with an exit status of {0}. {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1078"/> + <location filename="../Debugger/DebugUI.py" line="1076"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>Move Instruction Pointer to Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="367"/> + <location filename="../Debugger/DebugUI.py" line="365"/> <source>&Jump To Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="372"/> + <location filename="../Debugger/DebugUI.py" line="370"/> <source>Skip the code from the current line to the current cursor position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="375"/> + <location filename="../Debugger/DebugUI.py" line="373"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation type="unfinished"></translation> </message> @@ -6406,52 +6406,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="../Debugger/DebugViewer.py" line="174"/> + <location filename="../Debugger/DebugViewer.py" line="145"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>输入正则表达式模块(模块间用“;”分隔)以定义变量过滤器。</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="178"/> + <location filename="../Debugger/DebugViewer.py" line="149"/> <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="184"/> + <location filename="../Debugger/DebugViewer.py" line="155"/> <source>Set</source> <translation>设置</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="159"/> + <location filename="../Debugger/DebugViewer.py" line="130"/> <source>Source</source> <translation>源文件</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="261"/> + <location filename="../Debugger/DebugViewer.py" line="226"/> <source>Threads:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation>ID</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation>名称</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="263"/> + <location filename="../Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation>状态</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="520"/> + <location filename="../Debugger/DebugViewer.py" line="457"/> <source>waiting at breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="522"/> + <location filename="../Debugger/DebugViewer.py" line="459"/> <source>running</source> <translation type="unfinished"></translation> </message> @@ -41081,40 +41081,40 @@ <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="463"/> <source>Shell</source> - <translation>命令行</translation> + <translation type="obsolete">命令行</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="469"/> <source>Select to get a separate shell window</source> - <translation>选择获得单独的命令行窗口</translation> + <translation type="obsolete">选择获得单独的命令行窗口</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="501"/> <source>separate window</source> - <translation>独立窗口</translation> + <translation type="obsolete">独立窗口</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="492"/> <source>File-Browser</source> - <translation>文件浏览器</translation> + <translation type="obsolete">文件浏览器</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="498"/> <source>Select to get a separate file browser window</source> - <translation>选择获得单独的文件浏览器窗口</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="562"/> + <translation type="obsolete">选择获得单独的文件浏览器窗口</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="490"/> <source>Reset layout to factory defaults</source> <translation>将布局重设为出厂设置</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="244"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="223"/> <source>System</source> <translation>系统</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="226"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.py" line="205"/> <source>English</source> <comment>Translate this with your language</comment> <translation>中文</translation> @@ -41137,27 +41137,27 @@ <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="479"/> <source>Select to embed the shell in the Debug-Viewer</source> - <translation>选择在调试浏览器中内嵌 shell</translation> + <translation type="obsolete">选择在调试浏览器中内嵌 shell</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="511"/> <source>embed in Debug-Viewer</source> - <translation>内嵌于调试浏览器</translation> + <translation type="obsolete">内嵌于调试浏览器</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="508"/> <source>Select to embed the file browser in the Debug-Viewer</source> - <translation>选择在调试浏览器中内嵌文件浏览器</translation> + <translation type="obsolete">选择在调试浏览器中内嵌文件浏览器</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="518"/> <source>Select to embed the file browser in the Project-Viewer</source> - <translation>选择在项目浏览器中内嵌文件浏览器</translation> + <translation type="obsolete">选择在项目浏览器中内嵌文件浏览器</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="521"/> <source>embed in Project-Viewer</source> - <translation>内嵌于项目浏览器</translation> + <translation type="obsolete">内嵌于项目浏览器</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="63"/> @@ -41170,12 +41170,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="533"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="461"/> <source>Tabs</source> <translation>选项卡</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="539"/> + <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="467"/> <source>Show only one close button instead of one for each tab</source> <translation>仅显示一个关闭按钮,而不是每个选项卡显示一个按钮</translation> </message> @@ -52790,42 +52790,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="../Project/ProjectBrowser.py" line="71"/> + <location filename="../Project/ProjectBrowser.py" line="65"/> <source>up to date</source> <translation>最新</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="72"/> + <location filename="../Project/ProjectBrowser.py" line="66"/> <source>files added</source> <translation>文件已添加</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="73"/> + <location filename="../Project/ProjectBrowser.py" line="67"/> <source>local modifications</source> <translation>本地修改</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="75"/> + <location filename="../Project/ProjectBrowser.py" line="69"/> <source>files replaced</source> <translation>文件已替换</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="76"/> + <location filename="../Project/ProjectBrowser.py" line="70"/> <source>update required</source> <translation>已请求更新</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="77"/> + <location filename="../Project/ProjectBrowser.py" line="71"/> <source>conflict</source> <translation>冲突</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="74"/> + <location filename="../Project/ProjectBrowser.py" line="68"/> <source>files removed</source> <translation>文件已移除</translation> </message> <message> - <location filename="../Project/ProjectBrowser.py" line="434"/> + <location filename="../Project/ProjectBrowser.py" line="398"/> <source>unknown status</source> <translation>未知状态</translation> </message> @@ -75573,823 +75573,823 @@ <translation>恢复工具拦管理器…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1455"/> + <location filename="../UI/UserInterface.py" line="1429"/> <source>Project-Viewer</source> <translation>项目浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>Multiproject-Viewer</source> <translation>多重项目浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Debug-Viewer</source> <translation>调试浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Log-Viewer</source> <translation>日志浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Task-Viewer</source> <translation>任务浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Template-Viewer</source> <translation>模板浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>File-Browser</source> <translation>文件浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Shell</source> <translation>命令行</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>Horizontal Toolbox</source> <translation>横向工具箱</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Quit</source> <translation>退出</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>&Quit</source> <translation>退出(&Q)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1359"/> + <location filename="../UI/UserInterface.py" line="1333"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1365"/> + <location filename="../UI/UserInterface.py" line="1339"/> <source>Quit the IDE</source> <translation>退出程序</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1366"/> + <location filename="../UI/UserInterface.py" line="1340"/> <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="1421"/> + <location filename="../UI/UserInterface.py" line="1395"/> <source>Edit Profile</source> <translation>编辑模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1401"/> <source>Activate the edit view profile</source> <translation>激活编辑视图模式</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1403"/> + <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="1412"/> + <source>Debug Profile</source> + <translation>调试模式</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1418"/> + <source>Activate the debug view profile</source> + <translation>激活调试模式</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1420"/> + <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="1429"/> - <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="1438"/> - <source>Debug Profile</source> - <translation>调试模式</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1444"/> - <source>Activate the debug view profile</source> - <translation>激活调试模式</translation> + <source>&Project-Viewer</source> + <translation>项目浏览器(&P)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1429"/> + <source>Alt+Shift+P</source> + <translation>Alt+Shift+P</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1446"/> - <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="1455"/> - <source>&Project-Viewer</source> - <translation>项目浏览器(&P)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1455"/> - <source>Alt+Shift+P</source> - <translation>Alt+Shift+P</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1472"/> <source>&Multiproject-Viewer</source> <translation>多重项目浏览器(&M)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1472"/> + <location filename="../UI/UserInterface.py" line="1446"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>&Shell</source> <translation>命令行(&S)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1508"/> + <location filename="../UI/UserInterface.py" line="1482"/> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1524"/> + <location filename="../UI/UserInterface.py" line="1498"/> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1559"/> + <location filename="../UI/UserInterface.py" line="1533"/> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1577"/> + <location filename="../UI/UserInterface.py" line="1551"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1620"/> + <location filename="../UI/UserInterface.py" line="1594"/> <source>&Horizontal Toolbox</source> <translation>横向工具箱(&H)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1624"/> + <location filename="../UI/UserInterface.py" line="1598"/> <source>Toggle the Horizontal Toolbox window</source> <translation>切换横向工具箱窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1626"/> + <location filename="../UI/UserInterface.py" line="1600"/> <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="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>What's This?</source> <translation>这是什么?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>&What's This?</source> <translation>这是什么(&W)?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1746"/> + <location filename="../UI/UserInterface.py" line="1720"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752"/> + <location filename="../UI/UserInterface.py" line="1726"/> <source>Context sensitive help</source> <translation>背景帮助</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1753"/> + <location filename="../UI/UserInterface.py" line="1727"/> <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="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>Helpviewer</source> <translation>帮助浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>&Helpviewer...</source> <translation>帮助浏览器(&H)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1739"/> <source>F1</source> <translation>F1</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1745"/> + <source>Open the helpviewer window</source> + <translation>打开帮助浏览器窗口</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show Versions</source> + <translation>显示版本</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1767"/> + <source>Show &Versions</source> + <translation>显示版本(&V)</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1771"/> - <source>Open the helpviewer window</source> - <translation>打开帮助浏览器窗口</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show Versions</source> - <translation>显示版本</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1793"/> - <source>Show &Versions</source> - <translation>显示版本(&V)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1797"/> <source>Display version information</source> <translation>显示版本信息</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1799"/> + <location filename="../UI/UserInterface.py" line="1773"/> <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="1809"/> + <location filename="../UI/UserInterface.py" line="1783"/> <source>Check for Updates</source> <translation>检查更新</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806"/> + <location filename="../UI/UserInterface.py" line="1780"/> <source>Check for &Updates...</source> <translation>检查更新(&U)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show downloadable versions</source> <translation>显示可下载的版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1817"/> + <location filename="../UI/UserInterface.py" line="1791"/> <source>Show &downloadable versions...</source> <translation>显示可下载的版本(&D)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1821"/> + <location filename="../UI/UserInterface.py" line="1795"/> <source>Show the versions available for download</source> <translation>显示可以下载的版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <source>Report Bug</source> <translation>报告错误</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1844"/> + <location filename="../UI/UserInterface.py" line="1818"/> <source>Report &Bug...</source> <translation>报告错误(&B)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848"/> + <location filename="../UI/UserInterface.py" line="1822"/> <source>Report a bug</source> <translation>报告一个错误</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1849"/> + <location filename="../UI/UserInterface.py" line="1823"/> <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="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request Feature</source> <translation>请求功能</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1856"/> + <location filename="../UI/UserInterface.py" line="1830"/> <source>Request &Feature...</source> <translation>请求功能(&F)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1860"/> + <location filename="../UI/UserInterface.py" line="1834"/> <source>Send a feature request</source> <translation>发送一个功能请求</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1862"/> + <location filename="../UI/UserInterface.py" line="1836"/> <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="2883"/> + <location filename="../UI/UserInterface.py" line="2858"/> <source>Unittest</source> <translation>单元测试</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1845"/> <source>&Unittest...</source> <translation>单元测试(&U)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1850"/> <source>Start unittest dialog</source> <translation>打开单元测试对话框</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1877"/> + <location filename="../UI/UserInterface.py" line="1851"/> <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="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>Unittest Restart</source> <translation>单元测试重启</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1885"/> + <location filename="../UI/UserInterface.py" line="1859"/> <source>&Restart Unittest...</source> <translation>重启单元测试(&R)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1890"/> + <location filename="../UI/UserInterface.py" line="1864"/> <source>Restart last unittest</source> <translation>重启最后的单元测试</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1891"/> + <location filename="../UI/UserInterface.py" line="1865"/> <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="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest Script</source> <translation>脚本单元测试</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915"/> + <location filename="../UI/UserInterface.py" line="1889"/> <source>Unittest &Script...</source> <translation>脚本单元测试(&S)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920"/> + <location filename="../UI/UserInterface.py" line="1894"/> <source>Run unittest with current script</source> <translation>对当前脚本运行单元测试</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922"/> + <location filename="../UI/UserInterface.py" line="1896"/> <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="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>Unittest Project</source> <translation>项目单元测试</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1930"/> + <location filename="../UI/UserInterface.py" line="1904"/> <source>Unittest &Project...</source> <translation>项目单元测试(&P)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1909"/> <source>Run unittest with current project</source> <translation>对当前项目运行单元测试</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1937"/> + <location filename="../UI/UserInterface.py" line="1911"/> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>项目单元测试</b><p>对当前项目运行单元测试。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>UI Previewer</source> <translation>用户界面预览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1998"/> + <location filename="../UI/UserInterface.py" line="1972"/> <source>&UI Previewer...</source> <translation>用户界面预览器(&U)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003"/> + <location filename="../UI/UserInterface.py" line="1977"/> <source>Start the UI Previewer</source> <translation>开启用户界面预览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004"/> + <location filename="../UI/UserInterface.py" line="1978"/> <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="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>Translations Previewer</source> <translation>翻译预览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2011"/> + <location filename="../UI/UserInterface.py" line="1985"/> <source>&Translations Previewer...</source> <translation>翻译预览器(&T)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2016"/> + <location filename="../UI/UserInterface.py" line="1990"/> <source>Start the Translations Previewer</source> <translation>开启翻译预览器</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1992"/> + <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="1999"/> + <source>Compare Files</source> + <translation>比较文件</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1999"/> + <source>&Compare Files...</source> + <translation>比较文件(&C)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2017"/> + <source>Compare two files</source> + <translation>比较两个文件</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2005"/> + <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="2012"/> + <source>Compare Files side by side</source> + <translation>并排比较文件</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2018"/> - <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="2025"/> - <source>Compare Files</source> - <translation>比较文件</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2025"/> - <source>&Compare Files...</source> - <translation>比较文件(&C)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2043"/> - <source>Compare two files</source> - <translation>比较两个文件</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2031"/> - <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="2038"/> - <source>Compare Files side by side</source> - <translation>并排比较文件</translation> + <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="2044"/> - <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="2070"/> <source>Mini Editor</source> <translation>小型编辑器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2065"/> + <location filename="../UI/UserInterface.py" line="2039"/> <source>Mini &Editor...</source> <translation>小型编辑器(&E)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2071"/> + <location filename="../UI/UserInterface.py" line="2045"/> <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="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>Preferences</source> <translation>首选项</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139"/> + <location filename="../UI/UserInterface.py" line="2113"/> <source>&Preferences...</source> <translation>首选项(&P)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144"/> + <location filename="../UI/UserInterface.py" line="2118"/> <source>Set the prefered configuration</source> <translation>设定偏好配置</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146"/> + <location filename="../UI/UserInterface.py" line="2120"/> <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="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>Export Preferences</source> <translation>导出首选项</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2129"/> <source>E&xport Preferences...</source> <translation>导出首选项(&X)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160"/> + <location filename="../UI/UserInterface.py" line="2134"/> <source>Export the current configuration</source> <translation>导出当前配置</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2162"/> + <location filename="../UI/UserInterface.py" line="2136"/> <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="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>Import Preferences</source> <translation>导入首选项</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2169"/> + <location filename="../UI/UserInterface.py" line="2143"/> <source>I&mport Preferences...</source> <translation>导入首选项(&M)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2174"/> + <location filename="../UI/UserInterface.py" line="2148"/> <source>Import a previously exported configuration</source> <translation>导入以前导出的配置</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176"/> + <location filename="../UI/UserInterface.py" line="2150"/> <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="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload APIs</source> <translation>重新载入 API</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2157"/> <source>Reload &APIs</source> <translation>重新载入 &API</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2187"/> + <location filename="../UI/UserInterface.py" line="2161"/> <source>Reload the API information</source> <translation>重新载入 API 信息</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2189"/> + <location filename="../UI/UserInterface.py" line="2163"/> <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="2201"/> + <location filename="../UI/UserInterface.py" line="2175"/> <source>Show external tools</source> <translation>显示外部工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196"/> + <location filename="../UI/UserInterface.py" line="2170"/> <source>Show external &tools</source> <translation>显示外部工具(&T)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>View Profiles</source> <translation>视图模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2212"/> + <location filename="../UI/UserInterface.py" line="2186"/> <source>&View Profiles...</source> <translation>视图模式(&V)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2217"/> + <location filename="../UI/UserInterface.py" line="2191"/> <source>Configure view profiles</source> <translation>配置视图模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2219"/> + <location filename="../UI/UserInterface.py" line="2193"/> <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="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Toolbars</source> <translation>工具栏</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2229"/> + <location filename="../UI/UserInterface.py" line="2203"/> <source>Tool&bars...</source> <translation>工具栏(&B)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2234"/> + <location filename="../UI/UserInterface.py" line="2208"/> <source>Configure toolbars</source> <translation>配置工具栏</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235"/> + <location filename="../UI/UserInterface.py" line="2209"/> <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="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard Shortcuts</source> <translation>键盘快捷键</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2244"/> + <location filename="../UI/UserInterface.py" line="2218"/> <source>Keyboard &Shortcuts...</source> <translation>键盘快捷键(&S)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2249"/> + <location filename="../UI/UserInterface.py" line="2223"/> <source>Set the keyboard shortcuts</source> <translation>设置键盘快捷键</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2225"/> <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="5849"/> + <location filename="../UI/UserInterface.py" line="5790"/> <source>Export Keyboard Shortcuts</source> <translation>导出键盘快捷键</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2233"/> <source>&Export Keyboard Shortcuts...</source> <translation>导出键盘快捷键(&E)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2238"/> <source>Export the keyboard shortcuts</source> <translation>导出键盘快捷键</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2240"/> <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="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Import Keyboard Shortcuts</source> <translation>导入键盘快捷键</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2273"/> + <location filename="../UI/UserInterface.py" line="2247"/> <source>&Import Keyboard Shortcuts...</source> <translation>导入键盘快捷键(&I)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2278"/> + <location filename="../UI/UserInterface.py" line="2252"/> <source>Import the keyboard shortcuts</source> <translation>导入键盘快捷键</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2280"/> + <location filename="../UI/UserInterface.py" line="2254"/> <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="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Activate current editor</source> <translation>激活当前编辑器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2312"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Show next</source> <translation>显示下一个</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348"/> + <location filename="../UI/UserInterface.py" line="2322"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Show previous</source> <translation>显示上一个</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2357"/> + <location filename="../UI/UserInterface.py" line="2331"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Switch between tabs</source> <translation>在选项卡间切换</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2340"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>Plugin Infos</source> + <translation>插件信息</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2349"/> + <source>&Plugin Infos...</source> + <translation>插件信息(&P)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2353"/> + <source>Show Plugin Infos</source> + <translation>显示插件信息</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2354"/> + <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="2367"/> + <source>Install Plugins</source> + <translation>安装插件</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2362"/> + <source>&Install Plugins...</source> + <translation>安装插件(&I)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2368"/> + <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="2380"/> + <source>Uninstall Plugin</source> + <translation>卸载插件</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2375"/> - <source>Plugin Infos</source> - <translation>插件信息</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2375"/> - <source>&Plugin Infos...</source> - <translation>插件信息(&P)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2379"/> - <source>Show Plugin Infos</source> - <translation>显示插件信息</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2380"/> - <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="2393"/> - <source>Install Plugins</source> - <translation>安装插件</translation> + <source>&Uninstall Plugin...</source> + <translation>卸载插件(&U)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2381"/> + <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="2388"/> + <source>Plugin Repository</source> + <translation>插件储存库</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2388"/> - <source>&Install Plugins...</source> - <translation>安装插件(&I)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2394"/> - <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="2406"/> - <source>Uninstall Plugin</source> - <translation>卸载插件</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2401"/> - <source>&Uninstall Plugin...</source> - <translation>卸载插件(&U)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2407"/> - <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="2414"/> - <source>Plugin Repository</source> - <translation>插件储存库</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2414"/> <source>Plugin &Repository...</source> <translation>插件储存库(&R)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419"/> + <location filename="../UI/UserInterface.py" line="2393"/> <source>Show Plugins available for download</source> <translation>显示可以下载的插件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2421"/> + <location filename="../UI/UserInterface.py" line="2395"/> <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="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt4 Documentation</source> <translation>Qt4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2480"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Qt&4 Documentation</source> <translation>Qt&4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2484"/> + <location filename="../UI/UserInterface.py" line="2458"/> <source>Open Qt4 Documentation</source> <translation>打开 Qt4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt4 Documentation</source> <translation>PyQt4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2516"/> + <location filename="../UI/UserInterface.py" line="2490"/> <source>Open PyQt4 Documentation</source> <translation>打开 PyQt4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596"/> + <location filename="../UI/UserInterface.py" line="2570"/> <source>Eric API Documentation</source> <translation>Eric API 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596"/> + <location filename="../UI/UserInterface.py" line="2570"/> <source>&Eric API Documentation</source> <translation>&Eric API 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600"/> + <location filename="../UI/UserInterface.py" line="2574"/> <source>Open Eric API Documentation</source> <translation>打开 Eric API 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691"/> + <location filename="../UI/UserInterface.py" line="2665"/> <source>&Unittest</source> <translation>单元测试(&U)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2708"/> + <location filename="../UI/UserInterface.py" line="2682"/> <source>E&xtras</source> <translation>附加程序(&X)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2713"/> + <location filename="../UI/UserInterface.py" line="2687"/> <source>Wi&zards</source> <translation>向导(&Z)</translation> </message> @@ -76399,337 +76399,337 @@ <translation type="obsolete">工具(&T)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2724"/> + <location filename="../UI/UserInterface.py" line="2698"/> <source>Select Tool Group</source> <translation>选择工具组</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2732"/> + <location filename="../UI/UserInterface.py" line="2706"/> <source>Se&ttings</source> <translation>设置(&T)</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2731"/> + <source>&Window</source> + <translation>窗口(&W)</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757"/> - <source>&Window</source> - <translation>窗口(&W)</translation> + <source>&Toolbars</source> + <translation>工具栏(&T)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768"/> + <source>P&lugins</source> + <translation>插件(&L)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2777"/> + <source>Configure...</source> + <translation>配置…</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2782"/> - <source>&Toolbars</source> - <translation>工具栏(&T)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2793"/> - <source>P&lugins</source> - <translation>插件(&L)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2802"/> - <source>Configure...</source> - <translation>配置…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2807"/> <source>&Help</source> <translation>帮助(&H)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2882"/> + <location filename="../UI/UserInterface.py" line="2857"/> <source>Tools</source> <translation>工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2884"/> + <location filename="../UI/UserInterface.py" line="2859"/> <source>Settings</source> <translation>设置</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <source>Help</source> <translation>帮助</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2886"/> + <location filename="../UI/UserInterface.py" line="2861"/> <source>Profiles</source> <translation>模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2887"/> + <location filename="../UI/UserInterface.py" line="2862"/> <source>Plugins</source> <translation>插件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3051"/> + <location filename="../UI/UserInterface.py" line="3026"/> <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="3058"/> + <location filename="../UI/UserInterface.py" line="3033"/> <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="3065"/> + <location filename="../UI/UserInterface.py" line="3040"/> <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="3072"/> + <location filename="../UI/UserInterface.py" line="3047"/> <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="3079"/> + <location filename="../UI/UserInterface.py" line="3054"/> <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="3086"/> + <location filename="../UI/UserInterface.py" line="3061"/> <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="3262"/> + <location filename="../UI/UserInterface.py" line="3237"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>版本号</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6829"/> + <location filename="../UI/UserInterface.py" line="6770"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3317"/> + <location filename="../UI/UserInterface.py" line="3292"/> <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="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>Restart application</source> <translation>重启程序</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3597"/> + <location filename="../UI/UserInterface.py" line="3572"/> <source>The application needs to be restarted. Do it now?</source> <translation>程序需要重启。现在重启?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3676"/> + <location filename="../UI/UserInterface.py" line="3651"/> <source>Configure Tool Groups ...</source> <translation>配置工具组…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3680"/> + <location filename="../UI/UserInterface.py" line="3655"/> <source>Configure current Tool Group ...</source> <translation>配置当前工具组…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3631"/> + <location filename="../UI/UserInterface.py" line="3606"/> <source>&Builtin Tools</source> <translation>内建工具(&B)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3648"/> + <location filename="../UI/UserInterface.py" line="3623"/> <source>&Plugin Tools</source> <translation>插件工具(&P)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3796"/> + <location filename="../UI/UserInterface.py" line="3771"/> <source>&Show all</source> <translation>全部显示(&S)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3798"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>&Hide all</source> <translation>全部隐藏(&H)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4445"/> + <location filename="../UI/UserInterface.py" line="4386"/> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <source>Problem</source> <translation>问题</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <source>Process Generation Error</source> <translation>进程生成错误</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Open Browser</source> <translation>打开浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5645"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Could not start a web browser</source> <translation>无法启动网络浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4697"/> + <location filename="../UI/UserInterface.py" line="4638"/> <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="4731"/> + <location filename="../UI/UserInterface.py" line="4672"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>无法开启帮助浏览器。<br>确保其有效如 <b>hh</b>。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>External Tools</source> <translation>外部工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <source>Documentation Missing</source> <translation>文档缺失</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source>Documentation</source> <translation>文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5306"/> + <location filename="../UI/UserInterface.py" line="5247"/> <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="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <source>Save tasks</source> <translation>保存任务</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <source>Read tasks</source> <translation>读取任务</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6168"/> + <location filename="../UI/UserInterface.py" line="6109"/> <source>Save session</source> <translation>保存会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <source>Read session</source> <translation>读取会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <source>Drop Error</source> <translation>降落误差</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Error during updates check</source> <translation>检查更新时出错</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>&Cancel</source> <translation>取消(&C)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>Update available</source> <translation>可用更新</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6791"/> + <location filename="../UI/UserInterface.py" line="6732"/> <source>Could not perform updates check.</source> <translation>无法完成更新检查。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6815"/> + <location filename="../UI/UserInterface.py" line="6756"/> <source><h3>Available versions</h3><table></source> <translation><h3>可用版本</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>First time usage</source> <translation>第一次使用</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>Left Sidebar</source> <translation>左侧边栏</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1634"/> + <location filename="../UI/UserInterface.py" line="1608"/> <source>&Left Sidebar</source> <translation>左侧边栏(&L)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1638"/> + <location filename="../UI/UserInterface.py" line="1612"/> <source>Toggle the left sidebar window</source> <translation>切换左侧边栏窗口</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1613"/> + <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="1635"/> + <source>Bottom Sidebar</source> + <translation>底栏</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1635"/> + <source>&Bottom Sidebar</source> + <translation>底栏(&B)</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1639"/> - <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="1661"/> - <source>Bottom Sidebar</source> - <translation>底栏</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1661"/> - <source>&Bottom Sidebar</source> - <translation>底栏(&B)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1665"/> <source>Toggle the bottom sidebar window</source> <translation>切换底栏窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1667"/> + <location filename="../UI/UserInterface.py" line="1641"/> <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="1490"/> + <location filename="../UI/UserInterface.py" line="1464"/> <source>&Debug-Viewer</source> <translation>调试浏览器(&D)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL Browser</source> <translation>SQL 浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2052"/> + <location filename="../UI/UserInterface.py" line="2026"/> <source>SQL &Browser...</source> <translation>SQL 浏览器(&B)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2057"/> + <location filename="../UI/UserInterface.py" line="2031"/> <source>Browse a SQL database</source> <translation>浏览 SQL 数据库</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2058"/> + <location filename="../UI/UserInterface.py" line="2032"/> <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="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>Icon Editor</source> <translation>图标编辑器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110"/> + <location filename="../UI/UserInterface.py" line="2084"/> <source>&Icon Editor...</source> <translation>图标编辑器(&I)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt 3 support</source> <translation>Qt 3 支持</translation> </message> @@ -76739,226 +76739,226 @@ <translation type="obsolete"><p>PySide 文档的起始位置尚未配置。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>PySide Documentation</source> <translation>PySide 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2618"/> + <location filename="../UI/UserInterface.py" line="2592"/> <source>Py&Side Documentation</source> <translation>Py&Side 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2622"/> + <location filename="../UI/UserInterface.py" line="2596"/> <source>Open PySide Documentation</source> <translation>打开 PySide 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1325"/> + <location filename="../UI/UserInterface.py" line="1299"/> <source>{0} - Passive Mode</source> <translation>{0} - 被动模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332"/> + <location filename="../UI/UserInterface.py" line="1306"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - 被动模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1336"/> + <location filename="../UI/UserInterface.py" line="1310"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - 被动模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3161"/> + <location filename="../UI/UserInterface.py" line="3136"/> <source>External Tools/{0}</source> <translation>外部工具/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4764"/> <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="4551"/> + <location filename="../UI/UserInterface.py" line="4492"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 设计师。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4618"/> + <location filename="../UI/UserInterface.py" line="4559"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 语言家。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4610"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 助手。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4711"/> + <location filename="../UI/UserInterface.py" line="4652"/> <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="4779"/> + <location filename="../UI/UserInterface.py" line="4720"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 UI 预览器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4834"/> + <location filename="../UI/UserInterface.py" line="4775"/> <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="4855"/> + <location filename="../UI/UserInterface.py" line="4796"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 SQL 浏览器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4948"/> + <location filename="../UI/UserInterface.py" line="4889"/> <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="4957"/> + <location filename="../UI/UserInterface.py" line="4898"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4996"/> + <location filename="../UI/UserInterface.py" line="4937"/> <source>Starting process '{0} {1}'. </source> <translation>正在启动进程“{0} {1}”。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5012"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5088"/> + <location filename="../UI/UserInterface.py" line="5029"/> <source>Process '{0}' has exited. </source> <translation>进程“{0}”已退出。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509"/> + <location filename="../UI/UserInterface.py" line="5450"/> <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="6042"/> + <location filename="../UI/UserInterface.py" line="5983"/> <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="6071"/> + <location filename="../UI/UserInterface.py" line="6012"/> <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="6105"/> + <location filename="../UI/UserInterface.py" line="6046"/> <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="6152"/> + <location filename="../UI/UserInterface.py" line="6093"/> <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="6432"/> + <location filename="../UI/UserInterface.py" line="6373"/> <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="6613"/> + <location filename="../UI/UserInterface.py" line="6554"/> <source>Trying host {0}</source> <translation>正在尝试主机 {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="973"/> + <location filename="../UI/UserInterface.py" line="955"/> <source>Cooperation</source> <translation>协作</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1030"/> + <location filename="../UI/UserInterface.py" line="1004"/> <source>Symbols</source> <translation>符号</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1038"/> + <location filename="../UI/UserInterface.py" line="1012"/> <source>Numbers</source> <translation>数字</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1728"/> + <location filename="../UI/UserInterface.py" line="1702"/> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5873"/> + <location filename="../UI/UserInterface.py" line="5814"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>键盘快捷键文件 (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python 3 Documentation</source> <translation>Python 3 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2554"/> + <location filename="../UI/UserInterface.py" line="2528"/> <source>Python &3 Documentation</source> <translation>Python &3 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2532"/> <source>Open Python 3 Documentation</source> <translation>打开 Python 3 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python 2 Documentation</source> <translation>Python 2 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2572"/> + <location filename="../UI/UserInterface.py" line="2546"/> <source>Python &2 Documentation</source> <translation>Python &2 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2576"/> + <location filename="../UI/UserInterface.py" line="2550"/> <source>Open Python 2 Documentation</source> <translation>打开 Python 2 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2552"/> <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="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>Error getting versions information</source> <translation>获取版本信息出错</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6670"/> + <location filename="../UI/UserInterface.py" line="6611"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>无法获取版本信息。请连线并再试一次。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6677"/> + <location filename="../UI/UserInterface.py" line="6618"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>过去7天均无法获取版本信息。请连线并再试一次。</translation> </message> @@ -76983,448 +76983,448 @@ <translation>启动调试器…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New Window</source> <translation>新建窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>New &Window</source> <translation>新建窗口(&W)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1402"/> + <location filename="../UI/UserInterface.py" line="1376"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Unittest Rerun Failed</source> <translation>单元测试再次运行失败</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899"/> + <location filename="../UI/UserInterface.py" line="1873"/> <source>Rerun Failed Tests...</source> <translation>重新运行失败的测试…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1904"/> + <location filename="../UI/UserInterface.py" line="1878"/> <source>Rerun failed tests of the last run</source> <translation>重新运行上一次运行中失败的测试</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1906"/> + <location filename="../UI/UserInterface.py" line="1880"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation><b>重新运行失败的测试</b><p>重新运行上一次单元测试中失败的所有测试。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2038"/> + <location filename="../UI/UserInterface.py" line="2012"/> <source>Compare &Files side by side...</source> <translation>并排比较文件(&F)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>Snapshot</source> <translation>快照</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2124"/> + <location filename="../UI/UserInterface.py" line="2098"/> <source>&Snapshot...</source> <translation>快照(&S)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2129"/> + <location filename="../UI/UserInterface.py" line="2103"/> <source>Take snapshots of a screen region</source> <translation>截取屏幕区域的快照</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2131"/> + <location filename="../UI/UserInterface.py" line="2105"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation><b>快照</b><p>打开一个对话框来截取屏幕一个区域的快照。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4925"/> + <location filename="../UI/UserInterface.py" line="4866"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动快照工具。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6885"/> + <location filename="../UI/UserInterface.py" line="6826"/> <source>Select Workspace Directory</source> <translation>选择工作区目录</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1595"/> + <location filename="../UI/UserInterface.py" line="1569"/> <source>Left Toolbox</source> <translation>左工具箱</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1607"/> + <location filename="../UI/UserInterface.py" line="1581"/> <source>Right Toolbox</source> <translation>右工具箱</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1461"/> + <location filename="../UI/UserInterface.py" line="1435"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation>将输入焦点切换至项目查看器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1463"/> + <location filename="../UI/UserInterface.py" line="1437"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1478"/> + <location filename="../UI/UserInterface.py" line="1452"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation>将输入焦点切换至多项目查看器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1454"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1470"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation>将输入焦点切换至调试查看器窗口。</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1472"/> + <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1488"/> + <source>Switch the input focus to the Shell window.</source> + <translation>将输入焦点切换至 Shell 窗口。</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1490"/> + <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1498"/> - <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1514"/> - <source>Switch the input focus to the Shell window.</source> - <translation>将输入焦点切换至 Shell 窗口。</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1516"/> - <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1524"/> <source>&File-Browser</source> <translation>文件浏览器(&F)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1530"/> + <location filename="../UI/UserInterface.py" line="1504"/> <source>Switch the input focus to the File-Browser window.</source> <translation>将输入焦点切换至文件浏览器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1532"/> + <location filename="../UI/UserInterface.py" line="1506"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation><b>激活文件浏览器</b><p>将输入焦点切换至文件浏览器窗口。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1541"/> + <location filename="../UI/UserInterface.py" line="1515"/> <source>Lo&g-Viewer</source> <translation>日志浏览器(&G)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1547"/> + <location filename="../UI/UserInterface.py" line="1521"/> <source>Switch the input focus to the Log-Viewer window.</source> <translation>将输入焦点切换至日志查看器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1523"/> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation><b>激活日志查看器</b><p>将输入焦点切换至日志查看器。</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1533"/> + <source>&Task-Viewer</source> + <translation>任务浏览器(&T)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1539"/> + <source>Switch the input focus to the Task-Viewer window.</source> + <translation>将输入焦点切换至任务浏览器窗口。</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1551"/> + <source>Templ&ate-Viewer</source> + <translation>模板浏览器(&A)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1557"/> + <source>Switch the input focus to the Template-Viewer window.</source> + <translation>将输入焦点切换至模板浏览器窗口。</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1559"/> - <source>&Task-Viewer</source> - <translation>任务浏览器(&T)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1565"/> - <source>Switch the input focus to the Task-Viewer window.</source> - <translation>将输入焦点切换至任务浏览器窗口。</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1577"/> - <source>Templ&ate-Viewer</source> - <translation>模板浏览器(&A)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1583"/> - <source>Switch the input focus to the Template-Viewer window.</source> - <translation>将输入焦点切换至模板浏览器窗口。</translation> + <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1569"/> + <source>&Left Toolbox</source> + <translation>左工具箱(&L)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1572"/> + <source>Toggle the Left Toolbox window</source> + <translation>切换左工具箱窗口</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> + <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1581"/> + <source>&Right Toolbox</source> + <translation>右工具箱(&R)</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1585"/> - <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1595"/> - <source>&Left Toolbox</source> - <translation>左工具箱(&L)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1598"/> - <source>Toggle the Left Toolbox window</source> - <translation>切换左工具箱窗口</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1599"/> - <source><b>Toggle the Left Toolbox window</b><p>If the Left 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="1607"/> - <source>&Right Toolbox</source> - <translation>右工具箱(&R)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1611"/> <source>Toggle the Right Toolbox window</source> <translation>切换右工具箱窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1612"/> + <location filename="../UI/UserInterface.py" line="1586"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right 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="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>Right Sidebar</source> <translation>右侧边栏</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1621"/> <source>&Right Sidebar</source> <translation>右侧边栏(&R)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1651"/> + <location filename="../UI/UserInterface.py" line="1625"/> <source>Toggle the right sidebar window</source> <translation>切换右侧边栏窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1653"/> + <location filename="../UI/UserInterface.py" line="1627"/> <source><b>Toggle the right sidebar window</b><p>If the right 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="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Cooperation-Viewer</source> <translation>协作浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1675"/> + <location filename="../UI/UserInterface.py" line="1649"/> <source>Co&operation-Viewer</source> <translation>协作浏览器(&O)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1681"/> + <location filename="../UI/UserInterface.py" line="1655"/> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation>将输入焦点切换至协作浏览器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1683"/> + <location filename="../UI/UserInterface.py" line="1657"/> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation><b>激活协作浏览器</b><p>将输入焦点切换至协作浏览器窗口。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1710"/> + <location filename="../UI/UserInterface.py" line="1684"/> <source>Symbols-Viewer</source> <translation>符号查看器</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1684"/> + <source>S&ymbols-Viewer</source> + <translation>符号查看器(&Y)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1690"/> + <source>Switch the input focus to the Symbols-Viewer window.</source> + <translation>将输入焦点切换至符号查看器窗口。</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1692"/> + <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Numbers-Viewer</source> + <translation>数字查看器</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1702"/> + <source>Num&bers-Viewer</source> + <translation>数字查看器(&B)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1708"/> + <source>Switch the input focus to the Numbers-Viewer window.</source> + <translation>将输入焦点切换至数字查看器窗口。</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1710"/> - <source>S&ymbols-Viewer</source> - <translation>符号查看器(&Y)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1716"/> - <source>Switch the input focus to the Symbols-Viewer window.</source> - <translation>将输入焦点切换至符号查看器窗口。</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1718"/> - <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Numbers-Viewer</source> - <translation>数字查看器</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1728"/> - <source>Num&bers-Viewer</source> - <translation>数字查看器(&B)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1734"/> - <source>Switch the input focus to the Numbers-Viewer window.</source> - <translation>将输入焦点切换至数字查看器窗口。</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1736"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2762"/> + <location filename="../UI/UserInterface.py" line="2736"/> <source>&Windows</source> <translation>窗口(&W)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1567"/> + <location filename="../UI/UserInterface.py" line="1541"/> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>IRC</source> <translation>IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>&IRC</source> <translation>&IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1693"/> + <location filename="../UI/UserInterface.py" line="1667"/> <source>Meta+Shift+I</source> <translation>Meta+Shift+I</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1699"/> + <location filename="../UI/UserInterface.py" line="1673"/> <source>Switch the input focus to the IRC window.</source> <translation>将输入焦点切换至 IRC 窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1701"/> + <location filename="../UI/UserInterface.py" line="1675"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation><b>激活 IRC</b><p>将输入焦点切换至 IRC 窗口。</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-Designer</source> + <translation>Qt 设计师</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1931"/> + <source>Qt-&Designer...</source> + <translation>Qt 设计师(&D)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1936"/> + <source>Start Qt-Designer</source> + <translation>启动 Qt 设计师</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1937"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation><b>Qt 设计师</b><p>启动 Qt 设计师。</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-Designer</source> - <translation>Qt 设计师</translation> + <source>Qt-Linguist</source> + <translation>Qt 语言家</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1957"/> - <source>Qt-&Designer...</source> - <translation>Qt 设计师(&D)…</translation> + <source>Qt-&Linguist...</source> + <translation>Qt 语言家(&L)…</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1962"/> - <source>Start Qt-Designer</source> - <translation>启动 Qt 设计师</translation> + <source>Start Qt-Linguist</source> + <translation>启动 Qt 语言家</translation> </message> <message> <location filename="../UI/UserInterface.py" line="1963"/> - <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> - <translation><b>Qt 设计师</b><p>启动 Qt 设计师。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-Linguist</source> - <translation>Qt 语言家</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1983"/> - <source>Qt-&Linguist...</source> - <translation>Qt 语言家(&L)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1988"/> - <source>Start Qt-Linguist</source> - <translation>启动 Qt 语言家</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1989"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation><b>Qt 语言家</b><p>启动 Qt 语言家。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt5 Documentation</source> <translation>Qt5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>Qt&5 Documentation</source> <translation>Qt&5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2499"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open Qt5 Documentation</source> <translation>打开 Qt5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3097"/> + <location filename="../UI/UserInterface.py" line="3072"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation><p>状态栏的这一部分允许对当前编辑器、shell 或终端进行缩放。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates</source> <translation>管理 SSL 证书</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2288"/> + <location filename="../UI/UserInterface.py" line="2262"/> <source>Manage SSL Certificates...</source> <translation>管理 SSL 证书…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293"/> + <location filename="../UI/UserInterface.py" line="2267"/> <source>Manage the saved SSL certificates</source> <translation>管理保存的 SSL 证书</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295"/> + <location filename="../UI/UserInterface.py" line="2269"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation><b>管理 SSL 证书…</b><p>打开一个对话框来管理保存的 SSL 证书。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters</source> <translation>编辑消息过滤器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2278"/> <source>Edit Message Filters...</source> <translation>编辑消息过滤器…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2283"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation>编辑消息过滤器使得不期望的消息不显示</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311"/> + <location filename="../UI/UserInterface.py" line="2285"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation><b>编辑消息过滤器</b><p>打开对话框来编辑消息过滤器,使得不期望的错误信息不再在错误窗口中显示。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2512"/> + <location filename="../UI/UserInterface.py" line="2486"/> <source>PyQt&4 Documentation</source> <translation>PyQt&4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt5 Documentation</source> <translation>PyQt5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2505"/> <source>PyQt&5 Documentation</source> <translation>PyQt&5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2509"/> <source>Open PyQt5 Documentation</source> <translation>打开 PyQt5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5313"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><p>未配置 PyQt5 文档起始位置。</p></translation> </message> @@ -77434,7 +77434,7 @@ <translation type="obsolete"><b>Qt4 文档</b><p>显示 Qt4 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2454"/> + <location filename="../UI/UserInterface.py" line="2428"/> <source><b>Virtualenv Configurator</b><p>This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.</p></source> <translation type="unfinished"><b>Qt5 文档</b><p>显示 Qt5 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。</p></translation> </message> @@ -77449,7 +77449,7 @@ <translation type="obsolete"><b>PyQt5 文档</b><p>显示 PyQt5 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2560"/> + <location filename="../UI/UserInterface.py" line="2534"/> <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 文档</b><p>显示 Python 3 文档。如果尚未配置文档目录,则在 Windows 系统上,文档位置将默认为 Python 3 可执行文件所在目录下的 doc 目录;在类 Unix 系统上,则默认为 <i>/usr/share/doc/packages/python/html</i>。请在环境中设置 PYTHON3DOCDIR 以覆盖默认行为。</p></translation> </message> @@ -77459,117 +77459,117 @@ <translation type="obsolete"><b>PySide 文档</b><p>显示 PySide 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6604"/> + <location filename="../UI/UserInterface.py" line="6545"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836"/> - <source>Show Error Log</source> - <translation>显示错误日志</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1832"/> - <source>Show Error &Log...</source> - <translation>显示错误日志(&L)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1837"/> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation><b>显示错误日志…</b><p>打开一个对话框显示最近的错误日志。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6608"/> - <source>Version Check</source> - <translation>版本检查</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1408"/> - <source>Open a new eric6 instance</source> - <translation>打开新的 eric6 实例</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1410"/> - <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> - <translation><b>新建窗口</b><p>打开新的 eric6 IDE 实例。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1773"/> - <source><b>Helpviewer</b><p>Display the eric6 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></translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="1810"/> + <source>Show Error Log</source> + <translation>显示错误日志</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1806"/> + <source>Show Error &Log...</source> + <translation>显示错误日志(&L)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1811"/> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation><b>显示错误日志…</b><p>打开一个对话框显示最近的错误日志。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6549"/> + <source>Version Check</source> + <translation>版本检查</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1382"/> + <source>Open a new eric6 instance</source> + <translation>打开新的 eric6 实例</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1384"/> + <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> + <translation><b>新建窗口</b><p>打开新的 eric6 IDE 实例。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1747"/> + <source><b>Helpviewer</b><p>Display the eric6 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></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1784"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> <translation><b>检查更新…</b><p>从互联网检查 eric6 的更新。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823"/> + <location filename="../UI/UserInterface.py" line="1797"/> <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> <translation><b>显示可下载版本…</b><p>显示可以从互联网下载的 eric6 版本。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 Web Browser</source> <translation>eric6 网页浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2094"/> + <location filename="../UI/UserInterface.py" line="2068"/> <source>eric6 &Web Browser...</source> <translation>eric6 网页浏览器(&W)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2099"/> + <location filename="../UI/UserInterface.py" line="2073"/> <source>Start the eric6 Web Browser</source> <translation>启动 eric6 网页浏览器器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2075"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation><b>eric6 网页浏览器</b><p>使用 eric6 网页浏览器浏览互联网。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2115"/> + <location filename="../UI/UserInterface.py" line="2089"/> <source>Start the eric6 Icon Editor</source> <translation>启动 eric6 图标编辑器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2117"/> + <location filename="../UI/UserInterface.py" line="2091"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation><b>图标编辑器</b><p>启动 eric6 图标编辑器来编辑简单的图标。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2203"/> + <location filename="../UI/UserInterface.py" line="2177"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> <translation><b>显示外部工具</b><p>打开一个对话框显示 eric6 使用的所有外部工具的路径和版本。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2602"/> + <location filename="../UI/UserInterface.py" line="2576"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.</p></source> <translation><b>Eric API 文档</b><p>显示 Eric API 文档。文档位置为 Eric6 安装文件夹下的文档或源代码子文件夹。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4644"/> + <location filename="../UI/UserInterface.py" line="4585"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt 版本3 不被 eric6 支持。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6771"/> + <location filename="../UI/UserInterface.py" line="6712"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>eric6 的 <b>{0}</b> 更新已经可用,位于 <b>{1}</b>。您是否希望下载它?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>Eric6 is up to date</source> <translation>Eric6 已是最新版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6784"/> + <location filename="../UI/UserInterface.py" line="6725"/> <source>You are using the latest version of eric6</source> <translation>您正在使用 eric6 的最新版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6866"/> + <location filename="../UI/UserInterface.py" line="6807"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>尚未配置 eric6。将打开配置对话框。</translation> </message> @@ -77579,87 +77579,87 @@ <translation>生成插件工具栏…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3651"/> + <location filename="../UI/UserInterface.py" line="3626"/> <source>&User Tools</source> <translation>用户工具(&U)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3723"/> + <location filename="../UI/UserInterface.py" line="3698"/> <source>No User Tools Configured</source> <translation>没有配置的用户工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6624"/> + <location filename="../UI/UserInterface.py" line="6565"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>因为当前处在 <b>离线</b> 状态,无法获取版本信息。请连线并再试一次。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>Hex Editor</source> <translation>十六进制编辑器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2078"/> + <location filename="../UI/UserInterface.py" line="2052"/> <source>&Hex Editor...</source> <translation>十六进制编辑器(&H)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2083"/> + <location filename="../UI/UserInterface.py" line="2057"/> <source>Start the eric6 Hex Editor</source> <translation>启动 eric6 十六进制编辑器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2085"/> + <location filename="../UI/UserInterface.py" line="2059"/> <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> <translation><b>十六进制编辑器</b><p>启动 eric6 十六进制编辑器来查看、修改二进制文件。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327"/> + <location filename="../UI/UserInterface.py" line="2301"/> <source>Clear private data</source> <translation type="unfinished">清空隐私数据</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2303"/> <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1376"/> + <location filename="../UI/UserInterface.py" line="1350"/> <source>Save session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1381"/> + <location filename="../UI/UserInterface.py" line="1355"/> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>Load session</source> <translation type="unfinished">载入会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1389"/> + <location filename="../UI/UserInterface.py" line="1363"/> <source>Load session...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1394"/> + <location filename="../UI/UserInterface.py" line="1368"/> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6190"/> + <location filename="../UI/UserInterface.py" line="6131"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6237"/> + <location filename="../UI/UserInterface.py" line="6178"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -77674,97 +77674,97 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6759"/> + <location filename="../UI/UserInterface.py" line="6700"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6690"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="953"/> + <location filename="../UI/UserInterface.py" line="938"/> <source>Code Documentation Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2485"/> + <location filename="../UI/UserInterface.py" line="2459"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2500"/> + <location filename="../UI/UserInterface.py" line="2474"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2517"/> + <location filename="../UI/UserInterface.py" line="2491"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2624"/> + <location filename="../UI/UserInterface.py" line="2598"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2639"/> + <location filename="../UI/UserInterface.py" line="2613"/> <source>PySide&2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2643"/> + <location filename="../UI/UserInterface.py" line="2617"/> <source>Open PySide2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2645"/> + <location filename="../UI/UserInterface.py" line="2619"/> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5492"/> + <location filename="../UI/UserInterface.py" line="5433"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2409"/> <source>Virtualenv Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2403"/> <source>&Virtualenv Manager...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2437"/> + <location filename="../UI/UserInterface.py" line="2411"/> <source><b>Virtualenv Manager</b><p>This opens a dialog to manage the defined Python virtual environments.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2426"/> <source>Virtualenv Configurator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Virtualenv &Configurator...</source> <translation type="unfinished"></translation> </message>