Wed, 24 Aug 2016 20:00:29 +0200
Added an action to clear the private data of the IDE.
--- a/APIs/Python3/eric6.api Tue Aug 23 19:02:43 2016 +0200 +++ b/APIs/Python3/eric6.api Wed Aug 24 20:00:29 2016 +0200 @@ -784,6 +784,7 @@ eric6.Debugger.DebugServer.DebugServer?1() eric6.Debugger.DebugServer.DebuggerInterfaces?7 eric6.Debugger.DebugUI.DebugUI.appendStdout?7 +eric6.Debugger.DebugUI.DebugUI.clearHistories?4() eric6.Debugger.DebugUI.DebugUI.clientStack?7 eric6.Debugger.DebugUI.DebugUI.compileForms?7 eric6.Debugger.DebugUI.DebugUI.compileResources?7 @@ -1588,6 +1589,7 @@ eric6.E5Gui.E5ToolBarManager.E5ToolBarManager.VersionMarker?7 eric6.E5Gui.E5ToolBarManager.E5ToolBarManager.actionById?4(aID) eric6.E5Gui.E5ToolBarManager.E5ToolBarManager.addAction?4(action, category) +eric6.E5Gui.E5ToolBarManager.E5ToolBarManager.addActions?4(actions, category) eric6.E5Gui.E5ToolBarManager.E5ToolBarManager.addToolBar?4(toolBar, category) eric6.E5Gui.E5ToolBarManager.E5ToolBarManager.categories?4() eric6.E5Gui.E5ToolBarManager.E5ToolBarManager.categoryActions?4(category) @@ -3806,6 +3808,7 @@ eric6.MultiProject.MultiProject.MultiProject.addProject?4(startdir=None) eric6.MultiProject.MultiProject.MultiProject.changeProjectProperties?4(pro) eric6.MultiProject.MultiProject.MultiProject.checkDirty?4() +eric6.MultiProject.MultiProject.MultiProject.clearRecent?4() eric6.MultiProject.MultiProject.MultiProject.closeMultiProject?4() eric6.MultiProject.MultiProject.MultiProject.dirty?7 eric6.MultiProject.MultiProject.MultiProject.getActions?4() @@ -7002,6 +7005,7 @@ eric6.Project.Project.Project.checkDirty?4() eric6.Project.Project.Project.checkLanguageFiles?4() eric6.Project.Project.Project.checkVCSStatus?4() +eric6.Project.Project.Project.clearRecent?4() eric6.Project.Project.Project.clearStatusMonitorCachedState?4(name) eric6.Project.Project.Project.closeProject?4(reopen=False, noSave=False) eric6.Project.Project.Project.completeRepopulateItem?7 @@ -8137,6 +8141,7 @@ eric6.QScintilla.SearchReplaceWidget.SearchReplaceWidget.updateSelectionCheckBox?4(editor) eric6.QScintilla.SearchReplaceWidget.SearchReplaceWidget?1(replace, vm, parent=None, sliding=False) eric6.QScintilla.Shell.Shell.clear?4() +eric6.QScintilla.Shell.Shell.clearAllHistories?4() eric6.QScintilla.Shell.Shell.closeShell?4() eric6.QScintilla.Shell.Shell.contextMenuEvent?4(ev) eric6.QScintilla.Shell.Shell.dragEnterEvent?4(event) @@ -8641,6 +8646,8 @@ eric6.UI.BrowserSortFilterProxyModel.BrowserSortFilterProxyModel.preferencesChanged?4() eric6.UI.BrowserSortFilterProxyModel.BrowserSortFilterProxyModel.sort?4(column, order) eric6.UI.BrowserSortFilterProxyModel.BrowserSortFilterProxyModel?1(parent=None) +eric6.UI.ClearPrivateDataDialog.ClearPrivateDataDialog.getData?4() +eric6.UI.ClearPrivateDataDialog.ClearPrivateDataDialog?1(parent=None) eric6.UI.CompareDialog.CompareDialog.compare?4(lines1, lines2, name1="", name2="") eric6.UI.CompareDialog.CompareDialog.on_buttonBox_clicked?4(button) eric6.UI.CompareDialog.CompareDialog.on_diffButton_clicked?4() @@ -9423,6 +9430,7 @@ eric6.ViewManager.ViewManager.ViewManager.checkActions?7 eric6.ViewManager.ViewManager.ViewManager.checkAllDirty?4() eric6.ViewManager.ViewManager.ViewManager.checkDirty?4(editor, autosave=False) +eric6.ViewManager.ViewManager.ViewManager.clearRecent?4() eric6.ViewManager.ViewManager.ViewManager.cloneEditor?4(caller, filetype, fn) eric6.ViewManager.ViewManager.ViewManager.closeAllWindows?4() eric6.ViewManager.ViewManager.ViewManager.closeCurrentWindow?4()
--- a/APIs/Python3/eric6.bas Tue Aug 23 19:02:43 2016 +0200 +++ b/APIs/Python3/eric6.bas Wed Aug 24 20:00:29 2016 +0200 @@ -70,6 +70,7 @@ ClassItem UMLItem ClassModel UMLModel ClbrBase _ClbrBase +ClearPrivateDataDialog QDialog Ui_ClearPrivateDataDialog ClickToFlash QWidget Ui_ClickToFlash ClickToFlashPlugin WebPluginInterface ClickToFlashWhitelistDialog QDialog Ui_ClickToFlashWhitelistDialog
--- a/Debugger/DebugUI.py Tue Aug 23 19:02:43 2016 +0200 +++ b/Debugger/DebugUI.py Wed Aug 24 20:00:29 2016 +0200 @@ -914,6 +914,21 @@ self.lastStartAction = 0 self.clientType = "" + def clearHistories(self): + """ + Public method to clear the various debug histories. + """ + self.argvHistory = [] + self.wdHistory = [] + self.envHistory = [] + + Preferences.Prefs.settings.setValue( + 'DebugInfo/ArgumentsHistory', self.argvHistory) + Preferences.Prefs.settings.setValue( + 'DebugInfo/WorkingDirectoryHistory', self.wdHistory) + Preferences.Prefs.settings.setValue( + 'DebugInfo/EnvironmentHistory', self.envHistory) + def shutdown(self): """ Public method to perform shutdown actions.
--- a/Documentation/Help/source.qhp Tue Aug 23 19:02:43 2016 +0200 +++ b/Documentation/Help/source.qhp Wed Aug 24 20:00:29 2016 +0200 @@ -997,6 +997,7 @@ <section title="eric6.UI.Browser" ref="eric6.UI.Browser.html" /> <section title="eric6.UI.BrowserModel" ref="eric6.UI.BrowserModel.html" /> <section title="eric6.UI.BrowserSortFilterProxyModel" ref="eric6.UI.BrowserSortFilterProxyModel.html" /> + <section title="eric6.UI.ClearPrivateDataDialog" ref="eric6.UI.ClearPrivateDataDialog.html" /> <section title="eric6.UI.CompareDialog" ref="eric6.UI.CompareDialog.html" /> <section title="eric6.UI.Config" ref="eric6.UI.Config.html" /> <section title="eric6.UI.DeleteFilesConfirmationDialog" ref="eric6.UI.DeleteFilesConfirmationDialog.html" /> @@ -2694,6 +2695,10 @@ <keyword name="ClbrVisibilityMixinBase.setPrivate" id="ClbrVisibilityMixinBase.setPrivate" ref="eric6.Utilities.ClassBrowsers.ClbrBaseClasses.html#ClbrVisibilityMixinBase.setPrivate" /> <keyword name="ClbrVisibilityMixinBase.setProtected" id="ClbrVisibilityMixinBase.setProtected" ref="eric6.Utilities.ClassBrowsers.ClbrBaseClasses.html#ClbrVisibilityMixinBase.setProtected" /> <keyword name="ClbrVisibilityMixinBase.setPublic" id="ClbrVisibilityMixinBase.setPublic" ref="eric6.Utilities.ClassBrowsers.ClbrBaseClasses.html#ClbrVisibilityMixinBase.setPublic" /> + <keyword name="ClearPrivateDataDialog" id="ClearPrivateDataDialog" ref="eric6.UI.ClearPrivateDataDialog.html#ClearPrivateDataDialog" /> + <keyword name="ClearPrivateDataDialog (Constructor)" id="ClearPrivateDataDialog (Constructor)" ref="eric6.UI.ClearPrivateDataDialog.html#ClearPrivateDataDialog.__init__" /> + <keyword name="ClearPrivateDataDialog (Module)" id="ClearPrivateDataDialog (Module)" ref="eric6.UI.ClearPrivateDataDialog.html" /> + <keyword name="ClearPrivateDataDialog.getData" id="ClearPrivateDataDialog.getData" ref="eric6.UI.ClearPrivateDataDialog.html#ClearPrivateDataDialog.getData" /> <keyword name="ClickToFlash" id="ClickToFlash" ref="eric6.Helpviewer.WebPlugins.ClickToFlash.ClickToFlash.html#ClickToFlash" /> <keyword name="ClickToFlash (Constructor)" id="ClickToFlash (Constructor)" ref="eric6.Helpviewer.WebPlugins.ClickToFlash.ClickToFlash.html#ClickToFlash.__init__" /> <keyword name="ClickToFlash (Module)" id="ClickToFlash (Module)" ref="eric6.Helpviewer.WebPlugins.ClickToFlash.ClickToFlash.html" /> @@ -3682,6 +3687,7 @@ <keyword name="DebugUI.__stepQuit" id="DebugUI.__stepQuit" ref="eric6.Debugger.DebugUI.html#DebugUI.__stepQuit" /> <keyword name="DebugUI.__stopScript" id="DebugUI.__stopScript" ref="eric6.Debugger.DebugUI.html#DebugUI.__stopScript" /> <keyword name="DebugUI.__toggleBreakpoint" id="DebugUI.__toggleBreakpoint" ref="eric6.Debugger.DebugUI.html#DebugUI.__toggleBreakpoint" /> + <keyword name="DebugUI.clearHistories" id="DebugUI.clearHistories" ref="eric6.Debugger.DebugUI.html#DebugUI.clearHistories" /> <keyword name="DebugUI.getActions" id="DebugUI.getActions" ref="eric6.Debugger.DebugUI.html#DebugUI.getActions" /> <keyword name="DebugUI.initActions" id="DebugUI.initActions" ref="eric6.Debugger.DebugUI.html#DebugUI.initActions" /> <keyword name="DebugUI.initMenus" id="DebugUI.initMenus" ref="eric6.Debugger.DebugUI.html#DebugUI.initMenus" /> @@ -4803,6 +4809,7 @@ <keyword name="E5ToolBarManager.__toolBarByName" id="E5ToolBarManager.__toolBarByName" ref="eric6.E5Gui.E5ToolBarManager.html#E5ToolBarManager.__toolBarByName" /> <keyword name="E5ToolBarManager.actionById" id="E5ToolBarManager.actionById" ref="eric6.E5Gui.E5ToolBarManager.html#E5ToolBarManager.actionById" /> <keyword name="E5ToolBarManager.addAction" id="E5ToolBarManager.addAction" ref="eric6.E5Gui.E5ToolBarManager.html#E5ToolBarManager.addAction" /> + <keyword name="E5ToolBarManager.addActions" id="E5ToolBarManager.addActions" ref="eric6.E5Gui.E5ToolBarManager.html#E5ToolBarManager.addActions" /> <keyword name="E5ToolBarManager.addToolBar" id="E5ToolBarManager.addToolBar" ref="eric6.E5Gui.E5ToolBarManager.html#E5ToolBarManager.addToolBar" /> <keyword name="E5ToolBarManager.categories" id="E5ToolBarManager.categories" ref="eric6.E5Gui.E5ToolBarManager.html#E5ToolBarManager.categories" /> <keyword name="E5ToolBarManager.categoryActions" id="E5ToolBarManager.categoryActions" ref="eric6.E5Gui.E5ToolBarManager.html#E5ToolBarManager.categoryActions" /> @@ -9674,7 +9681,6 @@ <keyword name="MultiProject (Module)" id="MultiProject (Module)" ref="eric6.MultiProject.MultiProject.html" /> <keyword name="MultiProject (Package)" id="MultiProject (Package)" ref="index-eric6.MultiProject.html" /> <keyword name="MultiProject.__checkFilesExist" id="MultiProject.__checkFilesExist" ref="eric6.MultiProject.MultiProject.html#MultiProject.__checkFilesExist" /> - <keyword name="MultiProject.__clearRecent" id="MultiProject.__clearRecent" ref="eric6.MultiProject.MultiProject.html#MultiProject.__clearRecent" /> <keyword name="MultiProject.__extractCategories" id="MultiProject.__extractCategories" ref="eric6.MultiProject.MultiProject.html#MultiProject.__extractCategories" /> <keyword name="MultiProject.__initData" id="MultiProject.__initData" ref="eric6.MultiProject.MultiProject.html#MultiProject.__initData" /> <keyword name="MultiProject.__loadRecent" id="MultiProject.__loadRecent" ref="eric6.MultiProject.MultiProject.html#MultiProject.__loadRecent" /> @@ -9692,6 +9698,7 @@ <keyword name="MultiProject.addProject" id="MultiProject.addProject" ref="eric6.MultiProject.MultiProject.html#MultiProject.addProject" /> <keyword name="MultiProject.changeProjectProperties" id="MultiProject.changeProjectProperties" ref="eric6.MultiProject.MultiProject.html#MultiProject.changeProjectProperties" /> <keyword name="MultiProject.checkDirty" id="MultiProject.checkDirty" ref="eric6.MultiProject.MultiProject.html#MultiProject.checkDirty" /> + <keyword name="MultiProject.clearRecent" id="MultiProject.clearRecent" ref="eric6.MultiProject.MultiProject.html#MultiProject.clearRecent" /> <keyword name="MultiProject.closeMultiProject" id="MultiProject.closeMultiProject" ref="eric6.MultiProject.MultiProject.html#MultiProject.closeMultiProject" /> <keyword name="MultiProject.getActions" id="MultiProject.getActions" ref="eric6.MultiProject.MultiProject.html#MultiProject.getActions" /> <keyword name="MultiProject.getCategories" id="MultiProject.getCategories" ref="eric6.MultiProject.MultiProject.html#MultiProject.getCategories" /> @@ -10786,7 +10793,6 @@ <keyword name="Project.__binaryTranslationFile" id="Project.__binaryTranslationFile" ref="eric6.Project.Project.html#Project.__binaryTranslationFile" /> <keyword name="Project.__checkFilesExist" id="Project.__checkFilesExist" ref="eric6.Project.Project.html#Project.__checkFilesExist" /> <keyword name="Project.__checkProjectFileGroup" id="Project.__checkProjectFileGroup" ref="eric6.Project.Project.html#Project.__checkProjectFileGroup" /> - <keyword name="Project.__clearRecent" id="Project.__clearRecent" ref="eric6.Project.Project.html#Project.__clearRecent" /> <keyword name="Project.__closeAllWindows" id="Project.__closeAllWindows" ref="eric6.Project.Project.html#Project.__closeAllWindows" /> <keyword name="Project.__createSnapshotSource" id="Project.__createSnapshotSource" ref="eric6.Project.Project.html#Project.__createSnapshotSource" /> <keyword name="Project.__createZipDirEntries" id="Project.__createZipDirEntries" ref="eric6.Project.Project.html#Project.__createZipDirEntries" /> @@ -10858,6 +10864,7 @@ <keyword name="Project.checkDirty" id="Project.checkDirty" ref="eric6.Project.Project.html#Project.checkDirty" /> <keyword name="Project.checkLanguageFiles" id="Project.checkLanguageFiles" ref="eric6.Project.Project.html#Project.checkLanguageFiles" /> <keyword name="Project.checkVCSStatus" id="Project.checkVCSStatus" ref="eric6.Project.Project.html#Project.checkVCSStatus" /> + <keyword name="Project.clearRecent" id="Project.clearRecent" ref="eric6.Project.Project.html#Project.clearRecent" /> <keyword name="Project.clearStatusMonitorCachedState" id="Project.clearStatusMonitorCachedState" ref="eric6.Project.Project.html#Project.clearStatusMonitorCachedState" /> <keyword name="Project.closeProject" id="Project.closeProject" ref="eric6.Project.Project.html#Project.closeProject" /> <keyword name="Project.copyDirectory" id="Project.copyDirectory" ref="eric6.Project.Project.html#Project.copyDirectory" /> @@ -12137,6 +12144,7 @@ <keyword name="Shell.__writeStdErr" id="Shell.__writeStdErr" ref="eric6.QScintilla.Shell.html#Shell.__writeStdErr" /> <keyword name="Shell.__writeStdOut" id="Shell.__writeStdOut" ref="eric6.QScintilla.Shell.html#Shell.__writeStdOut" /> <keyword name="Shell.clear" id="Shell.clear" ref="eric6.QScintilla.Shell.html#Shell.clear" /> + <keyword name="Shell.clearAllHistories" id="Shell.clearAllHistories" ref="eric6.QScintilla.Shell.html#Shell.clearAllHistories" /> <keyword name="Shell.closeShell" id="Shell.closeShell" ref="eric6.QScintilla.Shell.html#Shell.closeShell" /> <keyword name="Shell.contextMenuEvent" id="Shell.contextMenuEvent" ref="eric6.QScintilla.Shell.html#Shell.contextMenuEvent" /> <keyword name="Shell.dragEnterEvent" id="Shell.dragEnterEvent" ref="eric6.QScintilla.Shell.html#Shell.dragEnterEvent" /> @@ -14488,6 +14496,7 @@ <keyword name="UserInterface.__assistant4" id="UserInterface.__assistant4" ref="eric6.UI.UserInterface.html#UserInterface.__assistant4" /> <keyword name="UserInterface.__checkActions" id="UserInterface.__checkActions" ref="eric6.UI.UserInterface.html#UserInterface.__checkActions" /> <keyword name="UserInterface.__chmViewer" id="UserInterface.__chmViewer" ref="eric6.UI.UserInterface.html#UserInterface.__chmViewer" /> + <keyword name="UserInterface.__clearPrivateData" id="UserInterface.__clearPrivateData" ref="eric6.UI.UserInterface.html#UserInterface.__clearPrivateData" /> <keyword name="UserInterface.__compareFiles" id="UserInterface.__compareFiles" ref="eric6.UI.UserInterface.html#UserInterface.__compareFiles" /> <keyword name="UserInterface.__compareFilesSbs" id="UserInterface.__compareFilesSbs" ref="eric6.UI.UserInterface.html#UserInterface.__compareFilesSbs" /> <keyword name="UserInterface.__configShortcuts" id="UserInterface.__configShortcuts" ref="eric6.UI.UserInterface.html#UserInterface.__configShortcuts" /> @@ -14903,7 +14912,6 @@ <keyword name="ViewManager.__clearAllSyntaxErrors" id="ViewManager.__clearAllSyntaxErrors" ref="eric6.ViewManager.ViewManager.html#ViewManager.__clearAllSyntaxErrors" /> <keyword name="ViewManager.__clearAllWarnings" id="ViewManager.__clearAllWarnings" ref="eric6.ViewManager.ViewManager.html#ViewManager.__clearAllWarnings" /> <keyword name="ViewManager.__clearBookmarked" id="ViewManager.__clearBookmarked" ref="eric6.ViewManager.ViewManager.html#ViewManager.__clearBookmarked" /> - <keyword name="ViewManager.__clearRecent" id="ViewManager.__clearRecent" ref="eric6.ViewManager.ViewManager.html#ViewManager.__clearRecent" /> <keyword name="ViewManager.__connectEditor" id="ViewManager.__connectEditor" ref="eric6.ViewManager.ViewManager.html#ViewManager.__connectEditor" /> <keyword name="ViewManager.__convertEOL" id="ViewManager.__convertEOL" ref="eric6.ViewManager.ViewManager.html#ViewManager.__convertEOL" /> <keyword name="ViewManager.__coverageMarkersShown" id="ViewManager.__coverageMarkersShown" ref="eric6.ViewManager.ViewManager.html#ViewManager.__coverageMarkersShown" /> @@ -15057,6 +15065,7 @@ <keyword name="ViewManager.cascade" id="ViewManager.cascade" ref="eric6.ViewManager.ViewManager.html#ViewManager.cascade" /> <keyword name="ViewManager.checkAllDirty" id="ViewManager.checkAllDirty" ref="eric6.ViewManager.ViewManager.html#ViewManager.checkAllDirty" /> <keyword name="ViewManager.checkDirty" id="ViewManager.checkDirty" ref="eric6.ViewManager.ViewManager.html#ViewManager.checkDirty" /> + <keyword name="ViewManager.clearRecent" id="ViewManager.clearRecent" ref="eric6.ViewManager.ViewManager.html#ViewManager.clearRecent" /> <keyword name="ViewManager.cloneEditor" id="ViewManager.cloneEditor" ref="eric6.ViewManager.ViewManager.html#ViewManager.cloneEditor" /> <keyword name="ViewManager.closeAllWindows" id="ViewManager.closeAllWindows" ref="eric6.ViewManager.ViewManager.html#ViewManager.closeAllWindows" /> <keyword name="ViewManager.closeCurrentWindow" id="ViewManager.closeCurrentWindow" ref="eric6.ViewManager.ViewManager.html#ViewManager.closeCurrentWindow" /> @@ -17535,6 +17544,7 @@ <file>eric6.UI.Browser.html</file> <file>eric6.UI.BrowserModel.html</file> <file>eric6.UI.BrowserSortFilterProxyModel.html</file> + <file>eric6.UI.ClearPrivateDataDialog.html</file> <file>eric6.UI.CompareDialog.html</file> <file>eric6.UI.Config.html</file> <file>eric6.UI.DeleteFilesConfirmationDialog.html</file>
--- a/Documentation/Source/eric6.Debugger.DebugUI.html Tue Aug 23 19:02:43 2016 +0200 +++ b/Documentation/Source/eric6.Debugger.DebugUI.html Wed Aug 24 20:00:29 2016 +0200 @@ -259,6 +259,9 @@ <td><a href="#DebugUI.__toggleBreakpoint">__toggleBreakpoint</a></td> <td>Private slot to handle the 'Set/Reset breakpoint' action.</td> </tr><tr> +<td><a href="#DebugUI.clearHistories">clearHistories</a></td> +<td>Public method to clear the various debug histories.</td> +</tr><tr> <td><a href="#DebugUI.getActions">getActions</a></td> <td>Public method to get a list of all actions.</td> </tr><tr> @@ -779,6 +782,11 @@ <b>__toggleBreakpoint</b>(<i></i>) <p> Private slot to handle the 'Set/Reset breakpoint' action. +</p><a NAME="DebugUI.clearHistories" ID="DebugUI.clearHistories"></a> +<h4>DebugUI.clearHistories</h4> +<b>clearHistories</b>(<i></i>) +<p> + Public method to clear the various debug histories. </p><a NAME="DebugUI.getActions" ID="DebugUI.getActions"></a> <h4>DebugUI.getActions</h4> <b>getActions</b>(<i></i>)
--- a/Documentation/Source/eric6.E5Gui.E5ToolBarManager.html Tue Aug 23 19:02:43 2016 +0200 +++ b/Documentation/Source/eric6.E5Gui.E5ToolBarManager.html Wed Aug 24 20:00:29 2016 +0200 @@ -75,6 +75,9 @@ <td><a href="#E5ToolBarManager.addAction">addAction</a></td> <td>Public method to add an action to be managed.</td> </tr><tr> +<td><a href="#E5ToolBarManager.addActions">addActions</a></td> +<td>Public method to add actions to be managed.</td> +</tr><tr> <td><a href="#E5ToolBarManager.addToolBar">addToolBar</a></td> <td>Public method to add a toolbar to be managed.</td> </tr><tr> @@ -247,6 +250,19 @@ <dd> category for the toolbar (string) </dd> +</dl><a NAME="E5ToolBarManager.addActions" ID="E5ToolBarManager.addActions"></a> +<h4>E5ToolBarManager.addActions</h4> +<b>addActions</b>(<i>actions, category</i>) +<p> + Public method to add actions to be managed. +</p><dl> +<dt><i>actions</i> (list of QAction)</dt> +<dd> +list of actions to be managed +</dd><dt><i>category</i> (str)</dt> +<dd> +category for the toolbar +</dd> </dl><a NAME="E5ToolBarManager.addToolBar" ID="E5ToolBarManager.addToolBar"></a> <h4>E5ToolBarManager.addToolBar</h4> <b>addToolBar</b>(<i>toolBar, category</i>)
--- a/Documentation/Source/eric6.MultiProject.MultiProject.html Tue Aug 23 19:02:43 2016 +0200 +++ b/Documentation/Source/eric6.MultiProject.MultiProject.html Wed Aug 24 20:00:29 2016 +0200 @@ -101,9 +101,6 @@ <td><a href="#MultiProject.__checkFilesExist">__checkFilesExist</a></td> <td>Private method to check, if the files in a list exist.</td> </tr><tr> -<td><a href="#MultiProject.__clearRecent">__clearRecent</a></td> -<td>Private method to clear the recent multi projects menu.</td> -</tr><tr> <td><a href="#MultiProject.__extractCategories">__extractCategories</a></td> <td>Private slot to extract the categories used in the project definitions.</td> </tr><tr> @@ -155,6 +152,9 @@ <td><a href="#MultiProject.checkDirty">checkDirty</a></td> <td>Public method to check the dirty status and open a message window.</td> </tr><tr> +<td><a href="#MultiProject.clearRecent">clearRecent</a></td> +<td>Public method to clear the recent multi projects menu.</td> +</tr><tr> <td><a href="#MultiProject.closeMultiProject">closeMultiProject</a></td> <td>Public slot to close the current multi project.</td> </tr><tr> @@ -255,11 +255,6 @@ The project files are checked for existance in the filesystem. Non existant projects are removed from the list and the dirty state of the multi project is changed accordingly. -</p><a NAME="MultiProject.__clearRecent" ID="MultiProject.__clearRecent"></a> -<h4>MultiProject.__clearRecent</h4> -<b>__clearRecent</b>(<i></i>) -<p> - Private method to clear the recent multi projects menu. </p><a NAME="MultiProject.__extractCategories" ID="MultiProject.__extractCategories"></a> <h4>MultiProject.__extractCategories</h4> <b>__extractCategories</b>(<i></i>) @@ -405,7 +400,12 @@ <dd> flag indicating whether this operation was successful (boolean) </dd> -</dl><a NAME="MultiProject.closeMultiProject" ID="MultiProject.closeMultiProject"></a> +</dl><a NAME="MultiProject.clearRecent" ID="MultiProject.clearRecent"></a> +<h4>MultiProject.clearRecent</h4> +<b>clearRecent</b>(<i></i>) +<p> + Public method to clear the recent multi projects menu. +</p><a NAME="MultiProject.closeMultiProject" ID="MultiProject.closeMultiProject"></a> <h4>MultiProject.closeMultiProject</h4> <b>closeMultiProject</b>(<i></i>) <p>
--- a/Documentation/Source/eric6.Project.Project.html Tue Aug 23 19:02:43 2016 +0200 +++ b/Documentation/Source/eric6.Project.Project.html Wed Aug 24 20:00:29 2016 +0200 @@ -200,9 +200,6 @@ <td><a href="#Project.__checkProjectFileGroup">__checkProjectFileGroup</a></td> <td>Private method to check, if a file is in a specific file group of the project.</td> </tr><tr> -<td><a href="#Project.__clearRecent">__clearRecent</a></td> -<td>Private method to clear the recent projects menu.</td> -</tr><tr> <td><a href="#Project.__closeAllWindows">__closeAllWindows</a></td> <td>Private method to close all project related windows.</td> </tr><tr> @@ -416,6 +413,9 @@ <td><a href="#Project.checkVCSStatus">checkVCSStatus</a></td> <td>Public method to wake up the VCS status monitor thread.</td> </tr><tr> +<td><a href="#Project.clearRecent">clearRecent</a></td> +<td>Public method to clear the recent projects menu.</td> +</tr><tr> <td><a href="#Project.clearStatusMonitorCachedState">clearStatusMonitorCachedState</a></td> <td>Public method to clear the cached VCS state of a file/directory.</td> </tr><tr> @@ -801,12 +801,7 @@ <dd> flag indicating membership (boolean) </dd> -</dl><a NAME="Project.__clearRecent" ID="Project.__clearRecent"></a> -<h4>Project.__clearRecent</h4> -<b>__clearRecent</b>(<i></i>) -<p> - Private method to clear the recent projects menu. -</p><a NAME="Project.__closeAllWindows" ID="Project.__closeAllWindows"></a> +</dl><a NAME="Project.__closeAllWindows" ID="Project.__closeAllWindows"></a> <h4>Project.__closeAllWindows</h4> <b>__closeAllWindows</b>(<i></i>) <p> @@ -1356,6 +1351,11 @@ <b>checkVCSStatus</b>(<i></i>) <p> Public method to wake up the VCS status monitor thread. +</p><a NAME="Project.clearRecent" ID="Project.clearRecent"></a> +<h4>Project.clearRecent</h4> +<b>clearRecent</b>(<i></i>) +<p> + Public method to clear the recent projects menu. </p><a NAME="Project.clearStatusMonitorCachedState" ID="Project.clearStatusMonitorCachedState"></a> <h4>Project.clearStatusMonitorCachedState</h4> <b>clearStatusMonitorCachedState</b>(<i>name</i>)
--- a/Documentation/Source/eric6.QScintilla.Shell.html Tue Aug 23 19:02:43 2016 +0200 +++ b/Documentation/Source/eric6.QScintilla.Shell.html Wed Aug 24 20:00:29 2016 +0200 @@ -283,6 +283,9 @@ <td><a href="#Shell.clear">clear</a></td> <td>Public slot to clear the display.</td> </tr><tr> +<td><a href="#Shell.clearAllHistories">clearAllHistories</a></td> +<td>Public method to clear all available histories and sync them.</td> +</tr><tr> <td><a href="#Shell.closeShell">closeShell</a></td> <td>Public method to shutdown the shell.</td> </tr><tr> @@ -988,6 +991,11 @@ <b>clear</b>(<i></i>) <p> Public slot to clear the display. +</p><a NAME="Shell.clearAllHistories" ID="Shell.clearAllHistories"></a> +<h4>Shell.clearAllHistories</h4> +<b>clearAllHistories</b>(<i></i>) +<p> + Public method to clear all available histories and sync them. </p><a NAME="Shell.closeShell" ID="Shell.closeShell"></a> <h4>Shell.closeShell</h4> <b>closeShell</b>(<i></i>)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Documentation/Source/eric6.UI.ClearPrivateDataDialog.html Wed Aug 24 20:00:29 2016 +0200 @@ -0,0 +1,101 @@ +<!DOCTYPE html> +<html><head> +<title>eric6.UI.ClearPrivateDataDialog</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body><a NAME="top" ID="top"></a> +<h1>eric6.UI.ClearPrivateDataDialog</h1> +<p> +Module implementing a dialog to select which private data to clear. +</p> +<h3>Global Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Classes</h3> +<table> +<tr> +<td><a href="#ClearPrivateDataDialog">ClearPrivateDataDialog</a></td> +<td>Class implementing a dialog to select which private data to clear.</td> +</tr> +</table> +<h3>Functions</h3> +<table> +<tr><td>None</td></tr> +</table> +<hr /><hr /> +<a NAME="ClearPrivateDataDialog" ID="ClearPrivateDataDialog"></a> +<h2>ClearPrivateDataDialog</h2> +<p> + Class implementing a dialog to select which private data to clear. +</p> +<h3>Derived from</h3> +QDialog, Ui_ClearPrivateDataDialog +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#ClearPrivateDataDialog.__init__">ClearPrivateDataDialog</a></td> +<td>Constructor</td> +</tr><tr> +<td><a href="#ClearPrivateDataDialog.getData">getData</a></td> +<td>Public method to get the data from the dialog.</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="ClearPrivateDataDialog.__init__" ID="ClearPrivateDataDialog.__init__"></a> +<h4>ClearPrivateDataDialog (Constructor)</h4> +<b>ClearPrivateDataDialog</b>(<i>parent=None</i>) +<p> + Constructor +</p><dl> +<dt><i>parent</i> (QWidget)</dt> +<dd> +reference to the parent widget +</dd> +</dl><a NAME="ClearPrivateDataDialog.getData" ID="ClearPrivateDataDialog.getData"></a> +<h4>ClearPrivateDataDialog.getData</h4> +<b>getData</b>(<i></i>) +<p> + Public method to get the data from the dialog. +</p><dl> +<dt>Returns:</dt> +<dd> +flags indicating which data to clear + (recent files, recent projects, recent multi projects, + debug histories, shell histories) +</dd> +</dl><dl> +<dt>Return Type:</dt> +<dd> +tuple of bool +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- a/Documentation/Source/eric6.UI.UserInterface.html Tue Aug 23 19:02:43 2016 +0200 +++ b/Documentation/Source/eric6.UI.UserInterface.html Wed Aug 24 20:00:29 2016 +0200 @@ -249,6 +249,9 @@ <td><a href="#UserInterface.__chmViewer">__chmViewer</a></td> <td>Private slot to start the win help viewer to show *.chm files.</td> </tr><tr> +<td><a href="#UserInterface.__clearPrivateData">__clearPrivateData</a></td> +<td>Private slot to clear the private data lists.</td> +</tr><tr> <td><a href="#UserInterface.__compareFiles">__compareFiles</a></td> <td>Private slot to handle the Compare Files dialog.</td> </tr><tr> @@ -988,7 +991,12 @@ <dd> full pathname of a file to display (string) </dd> -</dl><a NAME="UserInterface.__compareFiles" ID="UserInterface.__compareFiles"></a> +</dl><a NAME="UserInterface.__clearPrivateData" ID="UserInterface.__clearPrivateData"></a> +<h4>UserInterface.__clearPrivateData</h4> +<b>__clearPrivateData</b>(<i></i>) +<p> + Private slot to clear the private data lists. +</p><a NAME="UserInterface.__compareFiles" ID="UserInterface.__compareFiles"></a> <h4>UserInterface.__compareFiles</h4> <b>__compareFiles</b>(<i></i>) <p>
--- a/Documentation/Source/eric6.ViewManager.ViewManager.html Tue Aug 23 19:02:43 2016 +0200 +++ b/Documentation/Source/eric6.ViewManager.ViewManager.html Wed Aug 24 20:00:29 2016 +0200 @@ -246,9 +246,6 @@ <td><a href="#ViewManager.__clearBookmarked">__clearBookmarked</a></td> <td>Private method to clear the bookmarked files menu.</td> </tr><tr> -<td><a href="#ViewManager.__clearRecent">__clearRecent</a></td> -<td>Private method to clear the recent files menu.</td> -</tr><tr> <td><a href="#ViewManager.__connectEditor">__connectEditor</a></td> <td>Private method to establish all editor connections.</td> </tr><tr> @@ -708,6 +705,9 @@ <td><a href="#ViewManager.checkDirty">checkDirty</a></td> <td>Public method to check dirty status and open a message window.</td> </tr><tr> +<td><a href="#ViewManager.clearRecent">clearRecent</a></td> +<td>Public method to clear the recent files menu.</td> +</tr><tr> <td><a href="#ViewManager.cloneEditor">cloneEditor</a></td> <td>Public method to clone an editor displaying the given document.</td> </tr><tr> @@ -1049,11 +1049,6 @@ <b>__clearBookmarked</b>(<i></i>) <p> Private method to clear the bookmarked files menu. -</p><a NAME="ViewManager.__clearRecent" ID="ViewManager.__clearRecent"></a> -<h4>ViewManager.__clearRecent</h4> -<b>__clearRecent</b>(<i></i>) -<p> - Private method to clear the recent files menu. </p><a NAME="ViewManager.__connectEditor" ID="ViewManager.__connectEditor"></a> <h4>ViewManager.__connectEditor</h4> <b>__connectEditor</b>(<i>editor</i>) @@ -2169,7 +2164,12 @@ <dd> flag indicating successful reset of the dirty flag (boolean) </dd> -</dl><a NAME="ViewManager.cloneEditor" ID="ViewManager.cloneEditor"></a> +</dl><a NAME="ViewManager.clearRecent" ID="ViewManager.clearRecent"></a> +<h4>ViewManager.clearRecent</h4> +<b>clearRecent</b>(<i></i>) +<p> + Public method to clear the recent files menu. +</p><a NAME="ViewManager.cloneEditor" ID="ViewManager.cloneEditor"></a> <h4>ViewManager.cloneEditor</h4> <b>cloneEditor</b>(<i>caller, filetype, fn</i>) <p>
--- a/Documentation/Source/index-eric6.UI.html Tue Aug 23 19:02:43 2016 +0200 +++ b/Documentation/Source/index-eric6.UI.html Wed Aug 24 20:00:29 2016 +0200 @@ -50,6 +50,9 @@ <td><a href="eric6.UI.BrowserSortFilterProxyModel.html">BrowserSortFilterProxyModel</a></td> <td>Module implementing the browser sort filter proxy model.</td> </tr><tr> +<td><a href="eric6.UI.ClearPrivateDataDialog.html">ClearPrivateDataDialog</a></td> +<td>Module implementing a dialog to select which private data to clear.</td> +</tr><tr> <td><a href="eric6.UI.CompareDialog.html">CompareDialog</a></td> <td>Module implementing a dialog to compare two files and show the result side by side.</td> </tr><tr>
--- a/E5Gui/E5ToolBarManager.py Tue Aug 23 19:02:43 2016 +0200 +++ b/E5Gui/E5ToolBarManager.py Wed Aug 24 20:00:29 2016 +0200 @@ -415,6 +415,18 @@ self.__actionToCategory[id(action)] = category self.__actionToToolBars[id(action)] = [] + def addActions(self, actions, category): + """ + Public method to add actions to be managed. + + @param actions list of actions to be managed + @type list of QAction + @param category category for the toolbar + @type str + """ + for action in actions: + self.addAction(action, category) + def removeAction(self, action): """ Public method to remove an action from the manager.
--- a/Helpviewer/HelpWindow.py Tue Aug 23 19:02:43 2016 +0200 +++ b/Helpviewer/HelpWindow.py Wed Aug 24 20:00:29 2016 +0200 @@ -1348,7 +1348,8 @@ self.clearPrivateDataAct = E5Action( self.tr('Clear private data'), - self.tr('&Clear private data'), + UI.PixmapCache.getIcon("clearPrivateData.png"), + self.tr('Clear private data'), 0, 0, self, 'help_clear_private_data') self.clearPrivateDataAct.setStatusTip(self.tr(
--- a/MultiProject/MultiProject.py Tue Aug 23 19:02:43 2016 +0200 +++ b/MultiProject/MultiProject.py Wed Aug 24 20:00:29 2016 +0200 @@ -821,7 +821,7 @@ idx += 1 self.recentMenu.addSeparator() - self.recentMenu.addAction(self.tr('&Clear'), self.__clearRecent) + self.recentMenu.addAction(self.tr('&Clear'), self.clearRecent) def __openRecent(self, act): """ @@ -834,11 +834,12 @@ if file: self.openMultiProject(file) - def __clearRecent(self): + def clearRecent(self): """ - Private method to clear the recent multi projects menu. + Public method to clear the recent multi projects menu. """ self.recent = [] + self.__saveRecent() def getActions(self): """
--- a/Project/Project.py Tue Aug 23 19:02:43 2016 +0200 +++ b/Project/Project.py Wed Aug 24 20:00:29 2016 +0200 @@ -4071,7 +4071,7 @@ idx += 1 self.recentMenu.addSeparator() - self.recentMenu.addAction(self.tr('&Clear'), self.__clearRecent) + self.recentMenu.addAction(self.tr('&Clear'), self.clearRecent) def __openRecent(self, act): """ @@ -4084,11 +4084,12 @@ if file: self.openProject(file) - def __clearRecent(self): - """ - Private method to clear the recent projects menu. + def clearRecent(self): + """ + Public method to clear the recent projects menu. """ self.recent = [] + self.__saveRecent() def __searchNewFiles(self): """
--- a/QScintilla/Shell.py Tue Aug 23 19:02:43 2016 +0200 +++ b/QScintilla/Shell.py Wed Aug 24 20:00:29 2016 +0200 @@ -178,6 +178,9 @@ self.maxHistoryEntries = Preferences.getShell("MaxHistoryEntries") self.history = [] self.histidx = -1 + # remove obsolete shell histories (Python and Ruby) + for clientType in ["Python", "Ruby"]: + Preferences.Prefs.settings.remove("Shell/Histories/" + clientType) self.clientType = '' @@ -302,8 +305,8 @@ """ Public method to shutdown the shell. """ - for key in list(self.historyLists.keys()): - self.saveHistory(key) + for clientType in self.historyLists: + self.saveHistory(clientType) def __bindLexer(self, language='Python3'): """ @@ -578,7 +581,12 @@ """ Private slot to clear the current history. """ - self.history = [] + if self.clientType: + self.historyLists[self.clientType] = [] + self.history = self.historyLists[self.clientType] + else: + self.history = [] + self.histidx = -1 def __selectHistory(self): """ @@ -605,6 +613,18 @@ self.history = self.historyLists[self.clientType] self.histidx = -1 + def clearAllHistories(self): + """ + Public method to clear all available histories and sync them. + """ + Preferences.Prefs.settings.beginGroup("Shell/Histories") + for clientType in Preferences.Prefs.settings.childKeys(): + self.historyLists[clientType] = [] + self.saveHistory(clientType) + Preferences.Prefs.settings.endGroup() + + self.__clearHistory() + def getClientType(self): """ Public slot to get the clients type.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/UI/ClearPrivateDataDialog.py Wed Aug 24 20:00:29 2016 +0200 @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2016 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implementing a dialog to select which private data to clear. +""" + +from __future__ import unicode_literals + +from PyQt5.QtWidgets import QDialog + +from .Ui_ClearPrivateDataDialog import Ui_ClearPrivateDataDialog + + +class ClearPrivateDataDialog(QDialog, Ui_ClearPrivateDataDialog): + """ + Class implementing a dialog to select which private data to clear. + """ + def __init__(self, parent=None): + """ + Constructor + + @param parent reference to the parent widget + @type QWidget + """ + super(ClearPrivateDataDialog, self).__init__(parent) + self.setupUi(self) + + msh = self.minimumSizeHint() + self.resize(max(self.width(), msh.width()), msh.height()) + + def getData(self): + """ + Public method to get the data from the dialog. + + @return flags indicating which data to clear + (recent files, recent projects, recent multi projects, + debug histories, shell histories) + @rtype tuple of bool + """ + return ( + self.filesCheckBox.isChecked(), + self.projectsCheckBox.isChecked(), + self.multiProjectsCheckBox.isChecked(), + self.debugCheckBox.isChecked(), + self.shellCheckBox.isChecked(), + )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/UI/ClearPrivateDataDialog.ui Wed Aug 24 20:00:29 2016 +0200 @@ -0,0 +1,132 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>ClearPrivateDataDialog</class> + <widget class="QDialog" name="ClearPrivateDataDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>400</width> + <height>196</height> + </rect> + </property> + <property name="windowTitle"> + <string>Clear Private Data</string> + </property> + <property name="sizeGripEnabled"> + <bool>true</bool> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QCheckBox" name="filesCheckBox"> + <property name="toolTip"> + <string>Select to clear the list of recently opened files</string> + </property> + <property name="text"> + <string>Recently opened files</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="projectsCheckBox"> + <property name="toolTip"> + <string>Select to clear the list of recently opened projects</string> + </property> + <property name="text"> + <string>Recently opened projects</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="multiProjectsCheckBox"> + <property name="toolTip"> + <string>Select to clear the list of recently opened multi projects</string> + </property> + <property name="text"> + <string>Recently opened multi projects</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="debugCheckBox"> + <property name="toolTip"> + <string>Select to clear the debug histories</string> + </property> + <property name="text"> + <string>Debug histories</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="shellCheckBox"> + <property name="toolTip"> + <string>Select to clear the shell histories</string> + </property> + <property name="text"> + <string>Shell histories</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QDialogButtonBox" name="buttonBox"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons"> + <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> + </property> + </widget> + </item> + </layout> + </widget> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>accepted()</signal> + <receiver>ClearPrivateDataDialog</receiver> + <slot>accept()</slot> + <hints> + <hint type="sourcelabel"> + <x>248</x> + <y>254</y> + </hint> + <hint type="destinationlabel"> + <x>157</x> + <y>274</y> + </hint> + </hints> + </connection> + <connection> + <sender>buttonBox</sender> + <signal>rejected()</signal> + <receiver>ClearPrivateDataDialog</receiver> + <slot>reject()</slot> + <hints> + <hint type="sourcelabel"> + <x>316</x> + <y>260</y> + </hint> + <hint type="destinationlabel"> + <x>286</x> + <y>274</y> + </hint> + </hints> + </connection> + </connections> +</ui>
--- a/UI/UserInterface.py Tue Aug 23 19:02:43 2016 +0200 +++ b/UI/UserInterface.py Wed Aug 24 20:00:29 2016 +0200 @@ -2174,6 +2174,23 @@ E5ErrorMessage.editMessageFilters) self.actions.append(self.editMessageFilterAct) + self.clearPrivateDataAct = E5Action( + self.tr('Clear private data'), + UI.PixmapCache.getIcon("clearPrivateData.png"), + self.tr('Clear private data'), + 0, 0, + self, 'clear_private_data') + self.clearPrivateDataAct.setStatusTip(self.tr( + 'Clear private data')) + self.clearPrivateDataAct.setWhatsThis(self.tr( + """<b>Clear private data</b>""" + """<p>Clears the private data like the various list of""" + """ recently opened files, projects or multi projects.</p>""" + )) + self.clearPrivateDataAct.triggered.connect( + self.__clearPrivateData) + self.actions.append(self.clearPrivateDataAct) + self.viewmanagerActivateAct = E5Action( self.tr('Activate current editor'), self.tr('Activate current editor'), @@ -2523,6 +2540,8 @@ self.__menus["settings"].addAction(self.certificatesAct) self.__menus["settings"].addSeparator() self.__menus["settings"].addAction(self.editMessageFilterAct) + self.__menus["settings"].addSeparator() + self.__menus["settings"].addAction(self.clearPrivateDataAct) self.__menus["window"] = QMenu(self.tr('&Window'), self) mb.addMenu(self.__menus["window"]) @@ -2700,10 +2719,18 @@ settingstb.addAction(self.shortcutsAct) settingstb.addAction(self.showExternalToolsAct) self.toolbarManager.addToolBar(settingstb, settingstb.windowTitle()) - self.toolbarManager.addAction( - self.exportShortcutsAct, settingstb.windowTitle()) - self.toolbarManager.addAction( - self.importShortcutsAct, settingstb.windowTitle()) + self.toolbarManager.addActions([ + self.exportShortcutsAct, + self.importShortcutsAct, + self.prefExportAct, + self.prefImportAct, + self.showExternalToolsAct, + self.editMessageFilterAct, + self.clearPrivateDataAct, + ], settingstb.windowTitle()) + if SSL_AVAILABLE: + self.toolbarManager.addAction( + self.certificatesAct, settingstb.windowTitle()) # setup the help toolbar helptb.addAction(self.whatsThisAct) @@ -5575,6 +5602,32 @@ dlg = E5SslCertificatesDialog(self) dlg.exec_() + def __clearPrivateData(self): + """ + Private slot to clear the private data lists. + """ + from .ClearPrivateDataDialog import ClearPrivateDataDialog + dlg = ClearPrivateDataDialog(self) + if dlg.exec_() == QDialog.Accepted: + # recent files, recent projects, recent multi projects, + # debug histories, shell histories + (files, projects, multiProjects, debug, shell) = dlg.getData() + if files: + # clear list of recently opened files + self.viewmanager.clearRecent() + if projects: + # clear list of recently opened projects + self.project.clearRecent() + if multiProjects: + # clear list of recently opened multi projects + self.multiProject.clearRecent() + if debug: + # clear the various debug histories + self.debuggerUI.clearHistories() + if shell: + # clear the shell histories + self.shell.clearAllHistories() + def __newProject(self): """ Private slot to handle the NewProject signal.
--- a/ViewManager/ViewManager.py Tue Aug 23 19:02:43 2016 +0200 +++ b/ViewManager/ViewManager.py Wed Aug 24 20:00:29 2016 +0200 @@ -5017,7 +5017,7 @@ self.recentMenu.addSeparator() self.recentMenu.addAction( QCoreApplication.translate('ViewManager', '&Clear'), - self.__clearRecent) + self.clearRecent) def __openSourceFile(self, act): """ @@ -5029,11 +5029,12 @@ if file: self.openSourceFile(file) - def __clearRecent(self): - """ - Private method to clear the recent files menu. + def clearRecent(self): + """ + Public method to clear the recent files menu. """ self.recent = [] + self.__saveRecent() def __showBookmarkedMenu(self): """
--- a/WebBrowser/WebBrowserWindow.py Tue Aug 23 19:02:43 2016 +0200 +++ b/WebBrowser/WebBrowserWindow.py Wed Aug 24 20:00:29 2016 +0200 @@ -1496,7 +1496,8 @@ self.clearPrivateDataAct = E5Action( self.tr('Clear private data'), - self.tr('&Clear private data'), + UI.PixmapCache.getIcon("clearPrivateData.png"), + self.tr('Clear private data'), 0, 0, self, 'webbrowser_clear_private_data') self.clearPrivateDataAct.setStatusTip(self.tr(
--- a/changelog Tue Aug 23 19:02:43 2016 +0200 +++ b/changelog Wed Aug 24 20:00:29 2016 +0200 @@ -4,6 +4,7 @@ - bug fixes - General -- added a status bar icon to show the online status to the main window + -- added an action to clear the private data of the IDE - Debugger -- added a debugger interface registry to allow debuggers being implemented as plug-ins
--- a/eric6.e4p Tue Aug 23 19:02:43 2016 +0200 +++ b/eric6.e4p Wed Aug 24 20:00:29 2016 +0200 @@ -1211,6 +1211,7 @@ <Source>UI/Browser.py</Source> <Source>UI/BrowserModel.py</Source> <Source>UI/BrowserSortFilterProxyModel.py</Source> + <Source>UI/ClearPrivateDataDialog.py</Source> <Source>UI/CompareDialog.py</Source> <Source>UI/Config.py</Source> <Source>UI/DeleteFilesConfirmationDialog.py</Source> @@ -1858,6 +1859,7 @@ <Form>Templates/TemplatePropertiesDialog.ui</Form> <Form>Templates/TemplateSingleVariableDialog.ui</Form> <Form>UI/AuthenticationDialog.ui</Form> + <Form>UI/ClearPrivateDataDialog.ui</Form> <Form>UI/CompareDialog.ui</Form> <Form>UI/DeleteFilesConfirmationDialog.ui</Form> <Form>UI/DiffDialog.ui</Form>
--- a/i18n/eric6_cs.ts Tue Aug 23 19:02:43 2016 +0200 +++ b/i18n/eric6_cs.ts Wed Aug 24 20:00:29 2016 +0200 @@ -2806,6 +2806,64 @@ </message> </context> <context> + <name>ClearPrivateDataDialog</name> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="14"/> + <source>Clear Private Data</source> + <translation type="unfinished">Smazat privátní data</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="23"/> + <source>Select to clear the list of recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="26"/> + <source>Recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="36"/> + <source>Select to clear the list of recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="39"/> + <source>Recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="49"/> + <source>Select to clear the list of recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="52"/> + <source>Recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="62"/> + <source>Select to clear the debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="65"/> + <source>Debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="75"/> + <source>Select to clear the shell histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="78"/> + <source>Shell histories</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>ClickToFlash</name> <message> <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.ui" line="43"/> @@ -5295,7 +5353,7 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1765"/> + <location filename="../Debugger/DebugUI.py" line="1780"/> <source>Run Script</source> <translation>Spustit skript</translation> </message> @@ -5315,7 +5373,7 @@ <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="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>Run Project</source> <translation>Spustit projekt</translation> </message> @@ -5415,7 +5473,7 @@ <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="1887"/> + <location filename="../Debugger/DebugUI.py" line="1902"/> <source>Debug Script</source> <translation>Debugovat skript</translation> </message> @@ -5435,7 +5493,7 @@ <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="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <source>Debug Project</source> <translation>Debugovat projekt</translation> </message> @@ -5580,7 +5638,7 @@ <translation><b>Stop</b><p>Stop běhu aktuální debug relace.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> <translation>Evaluate</translation> </message> @@ -5595,7 +5653,7 @@ <translation>Vyhodnotit aktuální kontext</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> <translation>Vykonat</translation> </message> @@ -5753,62 +5811,62 @@ <translation>Debug</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1073"/> + <location filename="../Debugger/DebugUI.py" line="1088"/> <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="1110"/> + <location filename="../Debugger/DebugUI.py" line="1125"/> <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="1230"/> + <location filename="../Debugger/DebugUI.py" line="1245"/> <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="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <source>Breakpoint Condition Error</source> <translation>Chyba v podmíněném breakpointu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1540"/> + <location filename="../Debugger/DebugUI.py" line="1555"/> <source>Coverage of Project</source> <translation>Pokrytí projektu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1527"/> + <location filename="../Debugger/DebugUI.py" line="1542"/> <source>Coverage of Script</source> <translation>Pokrytí skriptu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <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="1659"/> + <location filename="../Debugger/DebugUI.py" line="1674"/> <source>Profile of Project</source> <translation>Profilovat projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1646"/> + <location filename="../Debugger/DebugUI.py" line="1661"/> <source>Profile of Script</source> <translation>Profilovat skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <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> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> <translation>Zadejte příkaz pro vyhodnocení</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> <translation>Zadejte příkaz pro vykonání</translation> </message> @@ -5823,12 +5881,12 @@ <translation><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="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <source>Watch Expression Error</source> <translation>Chyba sledovacího bodu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1375"/> + <location filename="../Debugger/DebugUI.py" line="1390"/> <source>Watch expression already exists</source> <translation>Sledovací bod již existuje</translation> </message> @@ -5865,74 +5923,74 @@ <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1021"/> + <location filename="../Debugger/DebugUI.py" line="1036"/> <source><p>The program has terminated with an exit status of {0}.</p></source> <translation><p>Program byl ukončen s exit statusem {0}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1026"/> + <location filename="../Debugger/DebugUI.py" line="1041"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> <translation><p><b>{0}</b> byl ukončen s exit statusem {1}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1092"/> + <location filename="../Debugger/DebugUI.py" line="1107"/> <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="1151"/> - <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="1166"/> + <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="1181"/> <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="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <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="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <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="1365"/> + <location filename="../Debugger/DebugUI.py" line="1380"/> <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="1369"/> + <location filename="../Debugger/DebugUI.py" line="1384"/> <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="1047"/> + <location filename="../Debugger/DebugUI.py" line="1062"/> <source>The program has terminated with an exit status of {0}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1051"/> + <location filename="../Debugger/DebugUI.py" line="1066"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1057"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1035"/> + <location filename="../Debugger/DebugUI.py" line="1050"/> <source>The program has terminated with an exit status of {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1038"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>"{0}" has terminated with an exit status of {1}.</source> <translation type="unfinished"></translation> </message> @@ -5952,7 +6010,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1216"/> + <location filename="../Debugger/DebugUI.py" line="1231"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> @@ -18921,37 +18979,37 @@ <translation><b>Kopírovat</b><p>Kopírovat vybraný text do schránky.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1604"/> + <location filename="../Helpviewer/HelpWindow.py" line="1605"/> <source>&File</source> <translation>S&oubor</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1627"/> + <location filename="../Helpviewer/HelpWindow.py" line="1628"/> <source>&Edit</source> <translation>&Edit</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1635"/> + <location filename="../Helpviewer/HelpWindow.py" line="1636"/> <source>&View</source> <translation>Poh&led</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1652"/> + <location filename="../Helpviewer/HelpWindow.py" line="1653"/> <source>&Go</source> <translation>&Jít</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1667"/> + <location filename="../Helpviewer/HelpWindow.py" line="1668"/> <source>H&istory</source> <translation>H&istorie</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1675"/> + <location filename="../Helpviewer/HelpWindow.py" line="1676"/> <source>&Bookmarks</source> <translation>&Záložky</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1752"/> + <location filename="../Helpviewer/HelpWindow.py" line="1753"/> <source>&Help</source> <translation>&Nápověda</translation> </message> @@ -18966,42 +19024,42 @@ <translation>Tisk</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1763"/> + <location filename="../Helpviewer/HelpWindow.py" line="1764"/> <source>File</source> <translation>Soubor</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1789"/> + <location filename="../Helpviewer/HelpWindow.py" line="1790"/> <source>Edit</source> <translation>Editovat</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1794"/> + <location filename="../Helpviewer/HelpWindow.py" line="1795"/> <source>View</source> <translation>Pohled</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1803"/> + <location filename="../Helpviewer/HelpWindow.py" line="1804"/> <source>Find</source> <translation>Hledat</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1843"/> + <location filename="../Helpviewer/HelpWindow.py" line="1844"/> <source>Help</source> <translation>Nápověda</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1850"/> + <location filename="../Helpviewer/HelpWindow.py" line="1851"/> <source>Go</source> <translation>Jít</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Open File</source> <translation>Otevřít soubor</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Help soubory (*.html *.htm);;PDF soubory (*.pdf);;CHM soubory (*.chm);;Všechny soubory (*)</translation> </message> @@ -19238,17 +19296,17 @@ <translation></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear icons database</source> <translation>Vyčistit ikony databáze</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1372"/> + <location filename="../Helpviewer/HelpWindow.py" line="1373"/> <source>Clear the database of favicons</source> <translation>Vyčistit databázi favicons</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1374"/> + <location filename="../Helpviewer/HelpWindow.py" line="1375"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>Vyčistit databázi favicons</b><p>Vyčistit databázi favicons navštívených URL.</p></translation> </message> @@ -19328,22 +19386,22 @@ <translation><b>Uspořádat dokumenty QtNápovědy</b><p>Zobrazit dialog pro uspořádání QtNápovědy.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1741"/> + <location filename="../Helpviewer/HelpWindow.py" line="1742"/> <source>&Window</source> <translation>O&kno</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1811"/> + <location filename="../Helpviewer/HelpWindow.py" line="1812"/> <source>Filter</source> <translation>Filtr</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1816"/> + <location filename="../Helpviewer/HelpWindow.py" line="1817"/> <source>Filtered by: </source> <translation>Filtrováno: </translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2690"/> + <location filename="../Helpviewer/HelpWindow.py" line="2691"/> <source>Could not find an associated content.</source> <translation>Asociovaný obsah nelze nalézt.</translation> </message> @@ -19408,22 +19466,22 @@ <translation><b>Znovu indexovat dokumentaci</b><p>Přeindexuje dokumentaci.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2813"/> + <location filename="../Helpviewer/HelpWindow.py" line="2814"/> <source>Updating search index</source> <translation>Aktualizovat index pro hledání</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2883"/> + <location filename="../Helpviewer/HelpWindow.py" line="2884"/> <source>Looking for Documentation...</source> <translation>Vyhledat dokumentaci...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2918"/> + <location filename="../Helpviewer/HelpWindow.py" line="2919"/> <source>Unfiltered</source> <translation>Nefiltrováno</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2937"/> + <location filename="../Helpviewer/HelpWindow.py" line="2938"/> <source>Help Engine</source> <translation>Engine nápovědy</translation> </message> @@ -19443,7 +19501,7 @@ <translation><b>Mód soukromí</b><p>Zapne mód soukromí. V tomto módu není zaznamenávána historie stran.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2380"/> + <location filename="../Helpviewer/HelpWindow.py" line="2381"/> <source>Full Screen</source> <translation>Celá obrazovka</translation> </message> @@ -19473,37 +19531,37 @@ <translation>Přeinde&xovat dokumentaci</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1355"/> + <location filename="../Helpviewer/HelpWindow.py" line="1356"/> <source>Clear private data</source> <translation>Smazat soukromá data</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="1350"/> <source>&Clear private data</source> - <translation>Smazat &soukromá data</translation> - </message> - <message> - <location filename="../Helpviewer/HelpWindow.py" line="1357"/> + <translation type="obsolete">Smazat &soukromá data</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="1358"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Smazat soukromá data</b><p>Smaže soukromá data jako je historie prohlížení, vyhledávání a databáze favicon.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear &icons database</source> <translation>Smazat databázi &ikon</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1475"/> + <location filename="../Helpviewer/HelpWindow.py" line="1476"/> <source>Show the network monitor dialog</source> <translation>Zobrazit dialog monitoru sítě</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1690"/> + <location filename="../Helpviewer/HelpWindow.py" line="1691"/> <source>&Settings</source> <translation>Na&stavení</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1732"/> + <location filename="../Helpviewer/HelpWindow.py" line="1733"/> <source>&Tools</source> <translation>&Nástroje</translation> </message> @@ -19568,7 +19626,7 @@ <translation><b>Cookies</b><p>Nastavit ovládání cookies.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1823"/> + <location filename="../Helpviewer/HelpWindow.py" line="1824"/> <source>Settings</source> <translation>Nastavení</translation> </message> @@ -19751,7 +19809,7 @@ <translation><b>Vytvořit záložky pro všechny taby...</b><p>Otevřít dialog pro přidání nové složky záložek pro všechny otevřené taby.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2171"/> + <location filename="../Helpviewer/HelpWindow.py" line="2172"/> <source>Saved Tabs</source> <translation>Uložkt taby</translation> </message> @@ -19815,57 +19873,57 @@ <translation><b>Uložit jako...</b><p>Uložit aktuální stranu na disk.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search Engines</source> <translation>Konfigurovat vyhledávací enginy</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1388"/> + <location filename="../Helpviewer/HelpWindow.py" line="1389"/> <source>Configure the available search engines</source> <translation>Konfigurovat dostupné vyhledávací enginy</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1390"/> + <location filename="../Helpviewer/HelpWindow.py" line="1391"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation><b>Konfigurivat vyhledávací enginy...</b><p>Otevře dialog pro konfiguraci dostupných vyhledávacích enginů.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords</source> <translation>Spravovat uložená hesla</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords...</source> <translation>Spravovat uložená hesla...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1406"/> + <location filename="../Helpviewer/HelpWindow.py" line="1407"/> <source>Manage the saved passwords</source> <translation>Spravovat vaše uložená hesla</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1408"/> + <location filename="../Helpviewer/HelpWindow.py" line="1409"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation><b>Spravovat uložená hesla...</b><p>Otevře dialog pro spravování uložených hesel.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>Ad Block</source> <translation></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>&Ad Block...</source> <translation>&Ad Block...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1422"/> + <location filename="../Helpviewer/HelpWindow.py" line="1423"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Konfigurovat AdBlock odebírání a pravidla</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1424"/> + <location filename="../Helpviewer/HelpWindow.py" line="1425"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Otevře dialog pro konfiguraci AdBlock odebírání a pravidel.</p></translation> </message> @@ -19905,145 +19963,145 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search &Engines...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2410"/> + <location filename="../Helpviewer/HelpWindow.py" line="2411"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. HTML5 offline storage will be deactivated. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1646"/> + <location filename="../Helpviewer/HelpWindow.py" line="1647"/> <source>Text Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3452"/> - <source>ISO</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Helpviewer/HelpWindow.py" line="3453"/> - <source>Windows</source> + <source>ISO</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3454"/> - <source>ISCII</source> + <source>Windows</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3455"/> - <source>Unicode</source> + <source>ISCII</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3456"/> - <source>Other</source> + <source>Unicode</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3457"/> + <source>Other</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="3458"/> <source>IBM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3479"/> + <location filename="../Helpviewer/HelpWindow.py" line="3480"/> <source>Default Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1486"/> + <location filename="../Helpviewer/HelpWindow.py" line="1487"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1490"/> + <location filename="../Helpviewer/HelpWindow.py" line="1491"/> <source>Shows the downloads window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1492"/> + <location filename="../Helpviewer/HelpWindow.py" line="1493"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1903"/> + <location filename="../Helpviewer/HelpWindow.py" line="1904"/> <source>VirusTotal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1907"/> + <location filename="../Helpviewer/HelpWindow.py" line="1908"/> <source>Scan current site</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source>VirusTotal Scan</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1507"/> + <location filename="../Helpviewer/HelpWindow.py" line="1508"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1509"/> + <location filename="../Helpviewer/HelpWindow.py" line="1510"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1525"/> + <location filename="../Helpviewer/HelpWindow.py" line="1526"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1527"/> + <location filename="../Helpviewer/HelpWindow.py" line="1528"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1835"/> + <location filename="../Helpviewer/HelpWindow.py" line="1836"/> <source>Tools</source> <translation type="unfinished">Nástroje</translation> </message> @@ -20060,47 +20118,47 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>Network Monitor</source> <translation type="unfinished">Monitor sítě</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>&Network Monitor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1477"/> + <location filename="../Helpviewer/HelpWindow.py" line="1478"/> <source><b>Network Monitor...</b><p>Shows the network monitor dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2387"/> + <location filename="../Helpviewer/HelpWindow.py" line="2388"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1540"/> + <location filename="../Helpviewer/HelpWindow.py" line="1541"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1542"/> + <location filename="../Helpviewer/HelpWindow.py" line="1543"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1719"/> + <location filename="../Helpviewer/HelpWindow.py" line="1720"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> @@ -20130,42 +20188,42 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>Synchronize data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>&Synchronize Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1556"/> + <location filename="../Helpviewer/HelpWindow.py" line="1557"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1558"/> + <location filename="../Helpviewer/HelpWindow.py" line="1559"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>ClickToFlash</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>&ClickToFlash...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1439"/> + <location filename="../Helpviewer/HelpWindow.py" line="1440"/> <source>Configure ClickToFlash whitelist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1441"/> + <location filename="../Helpviewer/HelpWindow.py" line="1442"/> <source><b>ClickToFlash...</b><p>Opens a dialog to configure the ClickToFlash whitelist.</p></source> <translation type="unfinished"></translation> </message> @@ -20210,22 +20268,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1458"/> + <location filename="../Helpviewer/HelpWindow.py" line="1459"/> <source>Manage the saved SSL certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1460"/> + <location filename="../Helpviewer/HelpWindow.py" line="1461"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> @@ -20270,7 +20328,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2893"/> + <location filename="../Helpviewer/HelpWindow.py" line="2894"/> <source>eric6 Web Browser</source> <translation type="unfinished">eric5 web prohlížeč {6 ?}</translation> </message> @@ -20285,32 +20343,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2077"/> + <location filename="../Helpviewer/HelpWindow.py" line="2078"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3743"/> + <location filename="../Helpviewer/HelpWindow.py" line="3744"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> @@ -20355,22 +20413,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1574"/> + <location filename="../Helpviewer/HelpWindow.py" line="1575"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1576"/> + <location filename="../Helpviewer/HelpWindow.py" line="1577"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> @@ -39821,7 +39879,7 @@ <translation><b>Pokrytí kódu...</b><p>Zobrazí informace o pokrytí kódu ve všech python souborech projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Profile Data</source> <translation>Profilovat data</translation> </message> @@ -39841,7 +39899,7 @@ <translation><b>Profilovat data</b><p>Zobrazí se profilování dat projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Application Diagram</source> <translation>Diagram aplikace</translation> </message> @@ -39921,52 +39979,52 @@ <translation>&Vyčistit</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>Search New Files</source> <translation>Hledat nové soubory</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>There were no new files found to be added.</source> <translation>Nebyly nalezeny žádné soubory, které je možné přidat.</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source>Version Control System</source> <translation>Version Control System</translation> </message> <message> - <location filename="../Project/Project.py" line="4488"/> + <location filename="../Project/Project.py" line="4489"/> <source>Coverage Data</source> <translation>Datové pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="4538"/> + <location filename="../Project/Project.py" line="4539"/> <source>There is no main script defined for the current project. Aborting</source> <translation>V aktuálním projektu nebyl určen hlavní skript. Zrušeno</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Code Coverage</source> <translation>Pokrytí kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Please select a coverage file</source> <translation>Prosím, vyberte soubor pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source>Create Package List</source> <translation>Vytvořit seznam balíčků</translation> </message> @@ -39976,7 +40034,7 @@ <translation>Vytvořit seznam &balíčků</translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source>Create Plugin Archive</source> <translation>Vytvořit Plugin archiv</translation> </message> @@ -39986,17 +40044,17 @@ <translation>Vytvořit Plugin &archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="4733"/> + <location filename="../Project/Project.py" line="4734"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Soubor <b>PKGLIST</b> již existuje.</p><p>Přepsat jej?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4793"/> + <location filename="../Project/Project.py" line="4794"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation><p>Soubor <b>PKGLIST</b> neexistuje. Zrušeno...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4801"/> + <location filename="../Project/Project.py" line="4802"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Projekt nemá definován hlavní skript. Zrušeno...</translation> </message> @@ -40176,27 +40234,27 @@ <translation><p>Adresář projektu <b>{0}</b> nelze vytvořit.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Vybrané VCS <b>{0}</b> nebylo nalezeno.<br/>Kontrola verzí vypnuta.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Soubor <b>PKGLIST</b> nelze vytvořit.</p><p>Důvod: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> + <location filename="../Project/Project.py" line="4816"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation><p>Soubor <b>PKGLIST</b> nelze načíst.</p><p>Důvod: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4854"/> + <location filename="../Project/Project.py" line="4855"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nelze uložit do archivu. Ingorováno.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4923"/> + <location filename="../Project/Project.py" line="4924"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Plugin soubor <b>{0}</b> nelze přečíst.</p><p>Důvod: {1}</p></translation> </message> @@ -40271,12 +40329,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4358"/> + <location filename="../Project/Project.py" line="4359"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -40311,12 +40369,12 @@ <translation type="unfinished"><b>Vytvořit Plugin archiv (Snímek)</b><p>Vytvoří soubor s eric5 plugin archivem za použití seznamu souborů daných v PKGLIST souboru. Údaj o verzi hlavního skriptu je změněn v souladu se snímkem vydání.</p> {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4828"/> + <location filename="../Project/Project.py" line="4829"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"><p>Soubor s eric5 plugin archivem <b>{0}</b> nelze vytvořit. Zrušeno...</p><p>Důvod: {1}</p> {6 ?} {0}?} {1}?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4877"/> + <location filename="../Project/Project.py" line="4878"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation type="unfinished"><p>Soubor s eric5 plugin archivem <b>{0}</b> byl úspěšně vytvořen.</p> {6 ?} {0}?}</translation> </message> @@ -48616,47 +48674,47 @@ <translation></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="194"/> + <location filename="../QScintilla/Shell.py" line="197"/> <source>Passive >>> </source> <translation>Pasivní >>> </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="209"/> + <location filename="../QScintilla/Shell.py" line="212"/> <source>Start</source> <translation></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="222"/> + <location filename="../QScintilla/Shell.py" line="225"/> <source>Copy</source> <translation>Kopírovat</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="223"/> + <location filename="../QScintilla/Shell.py" line="226"/> <source>Paste</source> <translation>Vložit</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="228"/> + <location filename="../QScintilla/Shell.py" line="231"/> <source>Clear</source> <translation>Vyčistit</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="229"/> + <location filename="../QScintilla/Shell.py" line="232"/> <source>Reset</source> <translation>Reset</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="230"/> + <location filename="../QScintilla/Shell.py" line="233"/> <source>Reset and Clear</source> <translation>Reset a vyčistit</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="645"/> + <location filename="../QScintilla/Shell.py" line="665"/> <source>No.</source> <translation>Č.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> @@ -48666,84 +48724,84 @@ <translation><b>Okno Shellu</b><p>Toto je jednoduchý interpretr běžící v okně. Interpretr běží nezávisle na programu, který je debugován. To znamená, že můžete spustit jakýkoliv příkaz i během debugování.</p><p>Během vkládání příkazu můžete použít kurzorové klávesy. Je zde také historie příkazů, která se aktivuje klávesami up a down. Stisknutím up nebo down klávesy po textu, který byl zadán se spustí inkrementální vyhledávání.</p><p>Shell má několik speciálních příkazů. 'reset' zabije shell a spustí nový. 'clear' vyčistí obsah shell okna.'start' se používá pro přepnutí shell jazyka a musí za ním následovat jméno podporovaného jazyka. Podporované jazyky jsou zobrazeny v seznamu, který vrací příkaz 'languages'. Tyto příkazy (kromě 'languages') jsou také dostupné přes kontextové menu.</p><p>Stisknutím tab klávesy po nějakém vloženém textu se zobrazí seznam s nabídkou možných zakončení výrazu. Odpovídající zadání pak může být vybráno z tohoto listu. Pokud je existuje jen jedna možnost, je vložena automaticky.</p><p>Dokud se program neukončí, je shell v pasivním módu dostupný jen pokud se debugovaný program připojil k IDE. To je oznámeno odlišným promptem a dále v názvu titulku okna.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="642"/> + <location filename="../QScintilla/Shell.py" line="662"/> <source>Passive Debug Mode</source> <translation>Pasivní debug mód</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="214"/> + <location filename="../QScintilla/Shell.py" line="217"/> <source>History</source> <translation>Historie</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="215"/> + <location filename="../QScintilla/Shell.py" line="218"/> <source>Select entry</source> <translation>Vybrat vstupy</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="216"/> + <location filename="../QScintilla/Shell.py" line="219"/> <source>Show</source> <translation>Zobrazit</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select History</source> <translation>Vybrat historii</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Vybrat vstup historie pro vykonání (nejaktuálnější zobrazen poslední).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="643"/> + <location filename="../QScintilla/Shell.py" line="663"/> <source> Not connected</source> <translation>Nepřipojen</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="235"/> + <location filename="../QScintilla/Shell.py" line="238"/> <source>Configure...</source> <translation>Konfigurovat...</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="221"/> + <location filename="../QScintilla/Shell.py" line="224"/> <source>Cut</source> <translation>Vyjmout</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="647"/> + <location filename="../QScintilla/Shell.py" line="667"/> <source>{0} on {1}, {2}</source> <translation>{0} na {1}, {2}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="785"/> + <location filename="../QScintilla/Shell.py" line="805"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="793"/> + <location filename="../QScintilla/Shell.py" line="813"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1401"/> + <location filename="../QScintilla/Shell.py" line="1421"/> <source>Shell language "{0}" not supported. </source> <translation>Shell jazyk "{0}" není podporován.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> není soubor.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="226"/> + <location filename="../QScintilla/Shell.py" line="229"/> <source>Find</source> <translation type="unfinished">Hledat</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="686"/> + <location filename="../QScintilla/Shell.py" line="706"/> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -48751,26 +48809,26 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="718"/> + <location filename="../QScintilla/Shell.py" line="738"/> <source>Unspecified syntax error. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="696"/> + <location filename="../QScintilla/Shell.py" line="716"/> <source>Exception "{0}" {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="720"/> + <location filename="../QScintilla/Shell.py" line="740"/> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="743"/> + <location filename="../QScintilla/Shell.py" line="763"/> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished"></translation> @@ -58041,12 +58099,12 @@ <translation>Znovu vygene&rovat úlohy projektu</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Extracting project tasks...</source> <translation>Extrahovat úlohy projektu...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Abort</source> <translation>Přerušit</translation> </message> @@ -58061,7 +58119,7 @@ <translation>Konfigurovat...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="707"/> + <location filename="../Tasks/TaskViewer.py" line="706"/> <source>Extracting project tasks... {0}</source> <translation>Extrahování úloh projektu....{0}</translation> @@ -58087,12 +58145,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="702"/> + <location filename="../Tasks/TaskViewer.py" line="701"/> <source>Tasks</source> <translation type="unfinished">Úlohy</translation> </message> @@ -60734,7 +60792,7 @@ <translation>Zjistit akt&ualizace...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <source>Report Bug</source> <translation>Reportovat Bugy</translation> </message> @@ -60754,7 +60812,7 @@ <translation><b>Reportovat bug...</b><p>Otevře se dialog pro reportování bugu.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2657"/> + <location filename="../UI/UserInterface.py" line="2676"/> <source>Unittest</source> <translation></translation> </message> @@ -60814,7 +60872,7 @@ <translation><b>Unittest Script</b><p>Spustit unittest s aktuálním skriptem.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>Unittest Project</source> <translation>Unittest Projekt</translation> </message> @@ -60984,7 +61042,7 @@ <translation><b>Klávesové zkratky</b><p>Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5544"/> + <location filename="../UI/UserInterface.py" line="5571"/> <source>Export Keyboard Shortcuts</source> <translation>Exportovat klávesové zkratky</translation> </message> @@ -61004,7 +61062,7 @@ <translation><b>Export klávesových zkratek</b><p>Exportují se klávesové zkratky z aplikace.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Import Keyboard Shortcuts</source> <translation>Import klávesových zkratek</translation> </message> @@ -61024,72 +61082,72 @@ <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="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Activate current editor</source> <translation>Aktivovat aktuální editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Alt+Shift+E</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Shift+Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt4 Documentation</source> <translation>Qt4 dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt&4 Documentation</source> <translation>Qt&4 dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2294"/> + <location filename="../UI/UserInterface.py" line="2311"/> <source>Open Qt4 Documentation</source> <translation>Otevřít Qt4 dokumentaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt4 Documentation</source> <translation>PyQt4 dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2324"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Open PyQt4 Documentation</source> <translation>Otevřít PyQt4 dokumentaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>Eric API Documentation</source> <translation>Eric API dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>&Eric API Documentation</source> <translation>&Eric API dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2408"/> + <location filename="../UI/UserInterface.py" line="2425"/> <source>Open Eric API Documentation</source> <translation>Otevřít Eric API dokumentaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2472"/> - <source>&Unittest</source> - <translation>&Unittest</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2489"/> + <source>&Unittest</source> + <translation>&Unittest</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506"/> <source>E&xtras</source> <translation>E&xtra funkce</translation> </message> @@ -61099,142 +61157,142 @@ <translation type="obsolete">&Nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2502"/> + <location filename="../UI/UserInterface.py" line="2519"/> <source>Select Tool Group</source> <translation>Vybrat skupinu nástrojů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2510"/> + <location filename="../UI/UserInterface.py" line="2527"/> <source>Se&ttings</source> <translation>Nas&tavení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2533"/> + <location filename="../UI/UserInterface.py" line="2552"/> <source>&Window</source> <translation>O&kno</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2577"/> <source>&Toolbars</source> <translation>&Toolbary</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583"/> + <location filename="../UI/UserInterface.py" line="2602"/> <source>&Help</source> <translation>&Nápověda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2656"/> + <location filename="../UI/UserInterface.py" line="2675"/> <source>Tools</source> <translation>Nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2658"/> + <location filename="../UI/UserInterface.py" line="2677"/> <source>Settings</source> <translation>Nastavení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <source>Help</source> <translation>Nápověda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2660"/> + <location filename="../UI/UserInterface.py" line="2679"/> <source>Profiles</source> <translation>Profily</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3021"/> + <location filename="../UI/UserInterface.py" line="3048"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Čísla verzí</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360"/> + <location filename="../UI/UserInterface.py" line="6413"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <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="3435"/> + <location filename="../UI/UserInterface.py" line="3462"/> <source>Configure Tool Groups ...</source> <translation>Konfigurace Skupin nástrojů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3439"/> + <location filename="../UI/UserInterface.py" line="3466"/> <source>Configure current Tool Group ...</source> <translation>Konfigurace aktuální skupiny nástrojů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3390"/> + <location filename="../UI/UserInterface.py" line="3417"/> <source>&Builtin Tools</source> <translation>&Vestavěné nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <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="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <source>Problem</source> <translation>Problém</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <source>Process Generation Error</source> <translation>Chyba v procesu generování</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <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="4475"/> + <location filename="../UI/UserInterface.py" line="4502"/> <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="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <source>Documentation Missing</source> <translation>Dokumentace chybí</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source>Documentation</source> <translation>Dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5039"/> + <location filename="../UI/UserInterface.py" line="5066"/> <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="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <source>Save tasks</source> <translation>Uložit úlohy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <source>Read tasks</source> <translation>Načíst úlohy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Error during updates check</source> <translation>Chyba během zjišťování aktualizací</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <source>Update available</source> <translation>Byla nalezena aktualizace</translation> </message> @@ -61249,17 +61307,17 @@ <translation>Zobrazit externí nás&troje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Could not perform updates check.</source> <translation>Kontrolu updatů nelze provést.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>&Cancel</source> <translation>&Zrušit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>First time usage</source> <translation>Spuštěno poprvé</translation> </message> @@ -61269,62 +61327,62 @@ <translation>Inicializace Plugin manažera...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2569"/> + <location filename="../UI/UserInterface.py" line="2588"/> <source>P&lugins</source> <translation>P&luginy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2661"/> + <location filename="../UI/UserInterface.py" line="2680"/> <source>Plugins</source> <translation>Pluginy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>Plugin Infos</source> <translation>Plugin Infa</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2224"/> + <location filename="../UI/UserInterface.py" line="2241"/> <source>Show Plugin Infos</source> <translation>Zobrazit Plugin infa</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2225"/> + <location filename="../UI/UserInterface.py" line="2242"/> <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="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>&Plugin Infos...</source> <translation>&Plugin Infa...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3407"/> + <location filename="../UI/UserInterface.py" line="3434"/> <source>&Plugin Tools</source> <translation>&Plugin nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2268"/> <source>Uninstall Plugin</source> <translation>Odinstalovat plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2246"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>&Uninstall Plugin...</source> <translation>&Odinstalovat plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2252"/> + <location filename="../UI/UserInterface.py" line="2269"/> <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="3558"/> + <location filename="../UI/UserInterface.py" line="3585"/> <source>&Show all</source> <translation>&Zobrazit vše</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3560"/> + <location filename="../UI/UserInterface.py" line="3587"/> <source>&Hide all</source> <translation>&Skrýt vše</translation> </message> @@ -61334,7 +61392,7 @@ <translation>Aktivace pluginů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2494"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source>Wi&zards</source> <translation>&Průvodci</translation> </message> @@ -61354,42 +61412,42 @@ <translation>Zobrazit dostupné verze ke stažení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6346"/> + <location filename="../UI/UserInterface.py" line="6399"/> <source><h3>Available versions</h3><table></source> <translation><h3>Dostupné verze</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin Repository</source> <translation>Repozitář pluginů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin &Repository...</source> <translation>&Repozitář pluginů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2281"/> <source>Show Plugins available for download</source> <translation>Zobrazit pluginy dostupné ke stažení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2283"/> <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="2238"/> + <location filename="../UI/UserInterface.py" line="2255"/> <source>Install Plugins</source> <translation>Instalovat pluginy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2233"/> + <location filename="../UI/UserInterface.py" line="2250"/> <source>&Install Plugins...</source> <translation>&Instalovat pluginy...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239"/> + <location filename="../UI/UserInterface.py" line="2256"/> <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> @@ -61434,7 +61492,7 @@ <translation>Obnovit manažer nástrojových lišt...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>External Tools</source> <translation>Externí nástroje</translation> </message> @@ -61449,22 +61507,22 @@ <translation>Prohlížeč &multiprojektu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <source>Save session</source> <translation>Uložit relaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <source>Read session</source> <translation>Načíst relaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2821"/> + <location filename="../UI/UserInterface.py" line="2848"/> <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="2835"/> + <location filename="../UI/UserInterface.py" line="2862"/> <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> @@ -61489,17 +61547,17 @@ <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="2814"/> + <location filename="../UI/UserInterface.py" line="2841"/> <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="2842"/> + <location filename="../UI/UserInterface.py" line="2869"/> <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="2849"/> + <location filename="../UI/UserInterface.py" line="2876"/> <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> @@ -61524,12 +61582,12 @@ <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="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>Restart application</source> <translation>Restartovat aplikaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>The application needs to be restarted. Do it now?</source> <translation>Aplikace potřebuje restartovat. Má se provést nyní?</translation> </message> @@ -61539,22 +61597,22 @@ <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2597"/> <source>Configure...</source> <translation>Konfigurovat...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2828"/> + <location filename="../UI/UserInterface.py" line="2855"/> <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="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Switch between tabs</source> <translation>Přepnout mezi taby</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Ctrl+1</source> <translation></translation> </message> @@ -61599,12 +61657,12 @@ <translation><b>Import předvoleb</b><p>Import dříve exportované konfigurace.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Show next</source> <translation>Zobrazit další</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Show previous</source> <translation>Zobrazit předchozí</translation> </message> @@ -61684,27 +61742,27 @@ <translation>Editor &ikon...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt 3 support</source> <translation>Qt 3 podpora</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>PySide Documentation</source> <translation>PySide dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>Py&Side Documentation</source> <translation>Py&Side dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2446"/> <source>Open PySide Documentation</source> <translation>Otevřít PySide dokumentaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation><p>Počátek dokumentace PySide nebyl nastaven.</p></translation> </message> @@ -61724,111 +61782,111 @@ <translation>{0} - {1} - {2} - pasivní mód</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2924"/> + <location filename="../UI/UserInterface.py" line="2951"/> <source>External Tools/{0}</source> <translation>Externí nástroje/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <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="4295"/> + <location filename="../UI/UserInterface.py" line="4322"/> <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="4362"/> + <location filename="../UI/UserInterface.py" line="4389"/> <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="4413"/> + <location filename="../UI/UserInterface.py" line="4440"/> <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="4455"/> + <location filename="../UI/UserInterface.py" line="4482"/> <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="4523"/> + <location filename="../UI/UserInterface.py" line="4550"/> <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="4578"/> + <location filename="../UI/UserInterface.py" line="4605"/> <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="4599"/> + <location filename="../UI/UserInterface.py" line="4626"/> <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="4690"/> + <location filename="../UI/UserInterface.py" line="4717"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>No toolgroup entry '{0}' found.</source> <translation>Skupina nástrojů '{0}' nenalezena. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4738"/> + <location filename="../UI/UserInterface.py" line="4765"/> <source>Starting process '{0} {1}'. </source> <translation>Spouštím proces '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <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="4830"/> + <location filename="../UI/UserInterface.py" line="4857"/> <source>Process '{0}' has exited. </source> <translation>Proces '{0}' byl ukončen. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <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="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <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="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <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="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <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="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <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="6143"/> + <location filename="../UI/UserInterface.py" line="6196"/> <source>Trying host {0}</source> <translation>Zkouším host {0}</translation> </message> @@ -61863,67 +61921,67 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2383"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384"/> + <location filename="../UI/UserInterface.py" line="2401"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2403"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6205"/> + <location filename="../UI/UserInterface.py" line="6258"/> <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="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <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> @@ -62009,12 +62067,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4696"/> <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="6406"/> + <location filename="../UI/UserInterface.py" line="6459"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -62234,7 +62292,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2538"/> + <location filename="../UI/UserInterface.py" line="2557"/> <source>&Windows</source> <translation type="unfinished">&Windows</translation> </message> @@ -62309,22 +62367,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt5 Documentation</source> <translation type="unfinished">Qt4 dokumentace {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt&5 Documentation</source> <translation type="unfinished">Qt&4 dokumentace {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308"/> + <location filename="../UI/UserInterface.py" line="2325"/> <source>Open Qt5 Documentation</source> <translation type="unfinished">Otevřít Qt4 dokumentaci {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2860"/> + <location filename="../UI/UserInterface.py" line="2887"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> @@ -62369,62 +62427,62 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt5 Documentation</source> <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2343"/> + <location filename="../UI/UserInterface.py" line="2360"/> <source>Open PyQt5 Documentation</source> <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5105"/> + <location filename="../UI/UserInterface.py" line="5132"/> <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="2295"/> + <location filename="../UI/UserInterface.py" line="2312"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2326"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2325"/> + <location filename="../UI/UserInterface.py" line="2342"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345"/> + <location filename="../UI/UserInterface.py" line="2362"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368"/> + <location filename="../UI/UserInterface.py" line="2385"/> <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="2431"/> + <location filename="../UI/UserInterface.py" line="2448"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -62444,7 +62502,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6191"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -62509,32 +62567,32 @@ <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="2410"/> + <location filename="../UI/UserInterface.py" line="2427"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <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="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <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="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric5 je aktuální {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <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="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <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> @@ -62544,17 +62602,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3410"/> + <location filename="../UI/UserInterface.py" line="3437"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482"/> + <location filename="../UI/UserInterface.py" line="3509"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6154"/> + <location filename="../UI/UserInterface.py" line="6207"/> <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> @@ -62578,6 +62636,16 @@ <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="2189"/> + <source>Clear private data</source> + <translation type="unfinished">Smazat soukromá data</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <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> </context> <context> <name>UserPropertiesDialog</name> @@ -65678,17 +65746,17 @@ <translation>Soubor změněn</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065"/> + <location filename="../ViewManager/ViewManager.py" line="5066"/> <source>&Clear</source> <translation>&Vyčistit</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5059"/> + <location filename="../ViewManager/ViewManager.py" line="5060"/> <source>&Add</source> <translation>Přid&at</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5062"/> + <location filename="../ViewManager/ViewManager.py" line="5063"/> <source>&Edit...</source> <translation>&Edit...</translation> </message> @@ -66504,27 +66572,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>Edit Spelling Dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6242"/> + <location filename="../ViewManager/ViewManager.py" line="6243"/> <source>Editing {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6227"/> + <location filename="../ViewManager/ViewManager.py" line="6228"/> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6254"/> + <location filename="../ViewManager/ViewManager.py" line="6255"/> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished"></translation> </message> @@ -68560,7 +68628,7 @@ <context> <name>WebBrowserWindow</name> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3153"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3154"/> <source>eric6 Web Browser</source> <translation type="unfinished"></translation> </message> @@ -68580,7 +68648,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1714"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1715"/> <source>JavaScript Console</source> <translation type="unfinished"></translation> </message> @@ -68637,7 +68705,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>New Private Window</source> <translation type="unfinished"></translation> </message> @@ -68663,7 +68731,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>Open File</source> <translation type="unfinished">Otevřít soubor</translation> </message> @@ -69567,7 +69635,7 @@ <translation type="unfinished"><b>Zobrazit zdroj strany</b><p>Zobrazit zdroj strany v editoru.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2662"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2663"/> <source>Full Screen</source> <translation type="unfinished">Celá obrazovka</translation> </message> @@ -69882,409 +69950,409 @@ <translation type="unfinished"><b>Znovu indexovat dokumentaci</b><p>Přeindexuje dokumentaci.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1504"/> <source>Clear private data</source> <translation type="unfinished">Smazat soukromá data</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/> <source>&Clear private data</source> - <translation type="unfinished">Smazat &soukromá data</translation> - </message> - <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/> + <translation type="obsolete">Smazat &soukromá data</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1506"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"><b>Smazat soukromá data</b><p>Smaže soukromá data jako je historie prohlížení, vyhledávání a databáze favicon.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear icons database</source> <translation type="unfinished">Vyčistit ikony databáze</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear &icons database</source> <translation type="unfinished">Smazat databázi &ikon</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1521"/> <source>Clear the database of favicons</source> <translation type="unfinished">Vyčistit databázi favicons</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1522"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1523"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation type="unfinished"><b>Vyčistit databázi favicons</b><p>Vyčistit databázi favicons navštívených URL.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1532"/> <source>Manage saved Favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1538"/> <source>Show a dialog to manage the saved favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1539"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/> <source><b>Manage saved Favicons</b><p>This shows a dialog to manage the saved favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search Engines</source> <translation type="unfinished">Konfigurovat vyhledávací enginy</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search &Engines...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1553"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1554"/> <source>Configure the available search engines</source> <translation type="unfinished">Konfigurovat dostupné vyhledávací enginy</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1556"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation type="unfinished"><b>Konfigurivat vyhledávací enginy...</b><p>Otevře dialog pro konfiguraci dostupných vyhledávacích enginů.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords</source> <translation type="unfinished">Spravovat uložená hesla</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords...</source> <translation type="unfinished">Spravovat uložená hesla...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1572"/> <source>Manage the saved passwords</source> <translation type="unfinished">Spravovat vaše uložená hesla</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1573"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1574"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation type="unfinished"><b>Spravovat uložená hesla...</b><p>Otevře dialog pro spravování uložených hesel.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>Ad Block</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>&Ad Block...</source> <translation type="unfinished">&Ad Block...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1588"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished">Konfigurovat AdBlock odebírání a pravidla</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1589"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1590"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"><b>Ad Block...</b><p>Otevře dialog pro konfiguraci AdBlock odebírání a pravidel.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1604"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1605"/> <source>Manage the accepted SSL certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1606"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/> <source><b>Manage SSL Certificate Errors...</b><p>Opens a dialog to manage the accepted SSL certificate errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1616"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1617"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1620"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1621"/> <source>Shows the downloads window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1622"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1637"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1638"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1639"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1658"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1672"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>Synchronize data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>&Synchronize Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1686"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1689"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1705"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1706"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1718"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/> <source>Toggle the JavaScript console window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1720"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1721"/> <source><b>JavaScript Console</b><p>This toggles the JavaScript console window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1765"/> <source>&File</source> <translation type="unfinished">S&oubor</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1787"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1788"/> <source>&Edit</source> <translation type="unfinished">&Edit</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1804"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1805"/> <source>&View</source> <translation type="unfinished">Poh&led</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1812"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1813"/> <source>Text Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1818"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1819"/> <source>&Go</source> <translation type="unfinished">&Jít</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1833"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/> <source>H&istory</source> <translation type="unfinished">H&istorie</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1845"/> <source>&Bookmarks</source> <translation type="unfinished">&Záložky</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1861"/> <source>&Settings</source> <translation type="unfinished">Na&stavení</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1887"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1888"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1900"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1901"/> <source>&Tools</source> <translation type="unfinished">&Nástroje</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1907"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1908"/> <source>&Window</source> <translation type="unfinished">O&kno</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1920"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1921"/> <source>&Help</source> <translation type="unfinished">&Nápověda</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1931"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1932"/> <source>File</source> <translation type="unfinished">Soubor</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1959"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1960"/> <source>Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1971"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1972"/> <source>View</source> <translation type="unfinished">Pohled</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1980"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/> <source>Find</source> <translation type="unfinished">Hledat</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1988"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1989"/> <source>Filter</source> <translation type="unfinished">Filtr</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1993"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1994"/> <source>Filtered by: </source> <translation type="unfinished">Filtrováno: </translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2000"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2001"/> <source>Settings</source> <translation type="unfinished">Nastavení</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2011"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2012"/> <source>Tools</source> <translation type="unfinished">Nástroje</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2020"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2026"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2027"/> <source>Go</source> <translation type="unfinished">Jít</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2080"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/> <source>VirusTotal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2084"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2085"/> <source>Scan current site</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>OK</source> <translation type="unfinished">OK</translation> </message> @@ -70294,118 +70362,118 @@ <translation type="obsolete">Help soubory (*.html *.htm);;PDF soubory (*.pdf);;CHM soubory (*.chm);;Všechny soubory (*)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2305"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2306"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p><p>It is based on QtWebEngine {1} and Chrome {2}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2425"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2426"/> <source>Saved Tabs</source> <translation type="unfinished">Uložkt taby</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2669"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2670"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2970"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2971"/> <source>Could not find an associated content.</source> <translation type="unfinished">Asociovaný obsah nelze nalézt.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3073"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3074"/> <source>Updating search index</source> <translation type="unfinished">Aktualizovat index pro hledání</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3143"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3144"/> <source>Looking for Documentation...</source> <translation type="unfinished">Vyhledat dokumentaci...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3178"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3179"/> <source>Unfiltered</source> <translation type="unfinished">Nefiltrováno</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3197"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3198"/> <source>Help Engine</source> <translation type="unfinished">Engine nápovědy</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3724"/> - <source>ISO</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3725"/> - <source>Windows</source> + <source>ISO</source> <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3726"/> - <source>ISCII</source> + <source>Windows</source> <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3727"/> - <source>Unicode</source> + <source>ISCII</source> <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3728"/> - <source>Other</source> + <source>Unicode</source> <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3729"/> + <source>Other</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3730"/> <source>IBM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3751"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3752"/> <source>Default Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source>VirusTotal Scan</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4043"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4044"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1729"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1730"/> <source>Tab Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/> <source>Shows the tab manager window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1735"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/> <source><b>Tab Manager</b><p>Shows the tab manager window.</p></source> <translation type="unfinished"></translation> </message> @@ -70441,7 +70509,7 @@ <translation type="unfinished"><b>Uložit jako...</b><p>Uložit aktuální stranu na disk.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>HTML Files (*.html *.htm *.mhtml);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_de.ts Tue Aug 23 19:02:43 2016 +0200 +++ b/i18n/eric6_de.ts Wed Aug 24 20:00:29 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation>Lesezeichen hinzufügen</translation> </message> @@ -1707,7 +1707,7 @@ <translation>&Adresse editieren</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation>&Löschen</translation> </message> @@ -2404,12 +2404,12 @@ <translation>Drücken, um die Aufrufverfolgung in eine Textdatei zu speichern</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="99"/> <source>From</source> <translation>Von</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="104"/> <source>To</source> <translation>Nach</translation> </message> @@ -2565,7 +2565,7 @@ <translation>Drücken, um eine verteilte Änderungssitzung abzubrechen</translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation>Löschen</translation> </message> @@ -2739,6 +2739,64 @@ </message> </context> <context> + <name>ClearPrivateDataDialog</name> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="14"/> + <source>Clear Private Data</source> + <translation>Private Daten löschen</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="23"/> + <source>Select to clear the list of recently opened files</source> + <translation>Auswählen, um die Liste der zuletzt geöffneten Dateien zu löschen</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="26"/> + <source>Recently opened files</source> + <translation>Zuletzt geöffnete Dateien</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="36"/> + <source>Select to clear the list of recently opened projects</source> + <translation>Auswählen, um die Liste der zuletzt geöffneten Projekte zu löschen</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="39"/> + <source>Recently opened projects</source> + <translation>Zuletzt geöffnete Projekte</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="49"/> + <source>Select to clear the list of recently opened multi projects</source> + <translation>Auswählen, um die Liste der zuletzt geöffneten Mehrfachprojekte zu löschen</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="52"/> + <source>Recently opened multi projects</source> + <translation>Zuletzt geöffnete Mehrfachprojekte</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="62"/> + <source>Select to clear the debug histories</source> + <translation>Auswählen, um die Debug-Chroniken zu löschen</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="65"/> + <source>Debug histories</source> + <translation>Debug Chroniken</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="75"/> + <source>Select to clear the shell histories</source> + <translation>Auswählen, um die Shell-Chroniken zu löschen</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="78"/> + <source>Shell histories</source> + <translation>Shell Chroniken</translation> + </message> +</context> +<context> <name>ClickToFlash</name> <message> <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.ui" line="43"/> @@ -2804,7 +2862,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation>ClickToFlash Whitelist</translation> </message> @@ -4725,7 +4783,7 @@ <translation>Domain:</translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation><kein Cookie ausgewählt></translation> </message> @@ -5211,7 +5269,7 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1765"/> + <location filename="../Debugger/DebugUI.py" line="1780"/> <source>Run Script</source> <translation>Skript ausführen</translation> </message> @@ -5226,7 +5284,7 @@ <translation>Das aktuelle Skript ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>Run Project</source> <translation>Projekt ausführen</translation> </message> @@ -5346,47 +5404,47 @@ <translation><b>Einzelanweisung ausführen</b><p>Führe eine einzelne Anweisung im aktuellen Kontext des debuggten Programmes aus.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1073"/> + <location filename="../Debugger/DebugUI.py" line="1088"/> <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="1110"/> + <location filename="../Debugger/DebugUI.py" line="1125"/> <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="1230"/> + <location filename="../Debugger/DebugUI.py" line="1245"/> <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="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <source>Debug Project</source> <translation>Projekt debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <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="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> <translation>Auswerten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> <translation>Gebe die auszuwertende Anweisung ein</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> <translation>Einzelanweisung ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> <translation>Gebe die auszuführende Anweisung ein</translation> </message> @@ -5436,7 +5494,7 @@ <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="1887"/> + <location filename="../Debugger/DebugUI.py" line="1902"/> <source>Debug Script</source> <translation>Skript debuggen</translation> </message> @@ -5471,7 +5529,7 @@ <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="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <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> @@ -5521,12 +5579,12 @@ <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="1540"/> + <location filename="../Debugger/DebugUI.py" line="1555"/> <source>Coverage of Project</source> <translation>Abdeckung des Projektes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1527"/> + <location filename="../Debugger/DebugUI.py" line="1542"/> <source>Coverage of Script</source> <translation>Abdeckung des Skriptes</translation> </message> @@ -5571,12 +5629,12 @@ <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="1659"/> + <location filename="../Debugger/DebugUI.py" line="1674"/> <source>Profile of Project</source> <translation>Projektprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1646"/> + <location filename="../Debugger/DebugUI.py" line="1661"/> <source>Profile of Script</source> <translation>Skriptprofil</translation> </message> @@ -5681,27 +5739,27 @@ <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="1026"/> + <location filename="../Debugger/DebugUI.py" line="1041"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> <translation><p><b>{0}</b> wurde mit dem Status {1} beendet.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1166"/> + <location filename="../Debugger/DebugUI.py" line="1181"/> <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="1021"/> + <location filename="../Debugger/DebugUI.py" line="1036"/> <source><p>The program has terminated with an exit status of {0}.</p></source> <translation><p>Das Programm wurde mit dem Status {0} beendet.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <source>Breakpoint Condition Error</source> <translation>Fehler in Haltepunktbedingung</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <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> @@ -5744,12 +5802,12 @@ <translation>Debug</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1151"/> + <location filename="../Debugger/DebugUI.py" line="1166"/> <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="1092"/> + <location filename="../Debugger/DebugUI.py" line="1107"/> <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> @@ -5764,27 +5822,27 @@ <translation><b>Auswerten</b><p>Wertet einen Ausdruck im aktuellen Kontext des debuggten Programmes aus. Das Resultat wird im Shell-Fenster angezeigt.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <source>Watch Expression Error</source> <translation>Fehler in Beobachtungsausdruck</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <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="1365"/> + <location filename="../Debugger/DebugUI.py" line="1380"/> <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="1369"/> + <location filename="../Debugger/DebugUI.py" line="1384"/> <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="1375"/> + <location filename="../Debugger/DebugUI.py" line="1390"/> <source>Watch expression already exists</source> <translation>Beobachtungsausdruck existiert bereits</translation> </message> @@ -5826,31 +5884,31 @@ <translation>Haltepunkt bearbeiten …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1062"/> <source>The program has terminated with an exit status of {0}. </source> <translation>Das Programm wurde mit dem Status {0} beendet. </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1051"/> + <location filename="../Debugger/DebugUI.py" line="1066"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation>„{0}“ wurde mit dem Status {1} beendet. </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1057"/> <source>Program terminated</source> <translation>Programm beendet</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1035"/> + <location filename="../Debugger/DebugUI.py" line="1050"/> <source>The program has terminated with an exit status of {0}.</source> <translation>Das Programm wurde mit dem Status {0} beendet.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1038"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>"{0}" has terminated with an exit status of {1}.</source> <translation>„{0}“ wurde mit dem Status {1} beendet.</translation> </message> @@ -5870,7 +5928,7 @@ <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="1216"/> + <location filename="../Debugger/DebugUI.py" line="1231"/> <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> @@ -7309,7 +7367,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> + <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> <source>Downloads</source> <translation>Downloads</translation> </message> @@ -7756,92 +7814,92 @@ <translation>Standard Knöpfe</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> <source>Abort</source> <translation>Abbrechen (Abort)</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> <source>Apply</source> <translation>Anwenden</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> <source>Cancel</source> <translation>Abbrechen (Cancel)</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> <source>Discard</source> <translation>Verwerfen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> <source>Ignore</source> <translation>Ignorieren</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> <source>No</source> <translation>Nein</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> <source>No to all</source> <translation>Nein zu allen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> <source>Reset</source> <translation>Zurücksetzen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> <source>Restore defaults</source> <translation>Auf Standardwerte zurücksetzen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> <source>Retry</source> <translation>Wiederholen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> <source>Save all</source> <translation>Alles speichern</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> <source>Yes to all</source> <translation>Ja zu allen</translation> </message> @@ -9858,7 +9916,7 @@ <translation>Drücken, um eine API-Datei aus der Liste installierter API-Dateien zu wählen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> <source>Add from installed APIs</source> <translation>Von installierten APIs hinzufügen</translation> </message> @@ -9868,7 +9926,7 @@ <translation>Drücke, um die gewählte APIs Zusammenstellung zu übersetzen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> <source>Compile APIs</source> <translation>APIs übersetzen</translation> </message> @@ -9893,7 +9951,7 @@ <translation>Drücken, um eine API-Datei aus der Liste von API-Dateien, die von Plugins installierter wurden, zu wählen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> <source>Add from Plugin APIs</source> <translation>Von Plugin APIs hinzufügen</translation> </message> @@ -10897,7 +10955,7 @@ <translation>Wähle den Modus „Füllen bis zum Zeilenende“.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> <source>Fill to end of line</source> <translation>Füllen bis zum Zeilenende</translation> </message> @@ -10942,7 +11000,7 @@ <translation>Wähle die Schriftart aus.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> <source>Font</source> <translation>Schriftart</translation> </message> @@ -12368,7 +12426,7 @@ <translation>Modus:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> <source>Disabled</source> <translation>Ausgeschaltet</translation> </message> @@ -13152,7 +13210,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.py" line="339"/> + <location filename="../UI/EmailDialog.ui" line="13"/> <source>Send bug report</source> <translation>Sende Fehlerbericht</translation> </message> @@ -14555,12 +14613,12 @@ <translation>Benachrichtigungen</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> <source>Host</source> <translation>Rechner</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> <source>Permission</source> <translation>Berechtigung</translation> </message> @@ -14575,7 +14633,7 @@ <translation>Alle entfernen</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> <source>Geolocation</source> <translation>Geolokalisierung</translation> </message> @@ -15699,7 +15757,7 @@ <translation>Name:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> <source><no flash cookie selected></source> <translation><kein Flash Cookie ausgewählt></translation> </message> @@ -15709,7 +15767,7 @@ <translation>Größe:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> <source>Origin:</source> <translation>Ursprung:</translation> </message> @@ -15744,7 +15802,7 @@ <translation>Drücken, um ausgewählte Flash Cookies zu entfernen</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> <source>Remove Cookie</source> <translation>Cookie entfernen</translation> </message> @@ -16172,7 +16230,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> <source>GreaseMonkey Script Installation</source> <translation>GreaseMonkey-Skriptinstallation</translation> </message> @@ -18209,7 +18267,7 @@ <context> <name>HelpWindow</name> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Open File</source> <translation>Datei öffnen</translation> </message> @@ -18324,22 +18382,22 @@ <translation>Zeige Informationen über das Qt-Toolkit an</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1604"/> + <location filename="../Helpviewer/HelpWindow.py" line="1605"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1652"/> + <location filename="../Helpviewer/HelpWindow.py" line="1653"/> <source>&Go</source> <translation>&Gehe zu</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1675"/> + <location filename="../Helpviewer/HelpWindow.py" line="1676"/> <source>&Bookmarks</source> <translation>&Lesezeichen</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1752"/> + <location filename="../Helpviewer/HelpWindow.py" line="1753"/> <source>&Help</source> <translation>&Hilfe</translation> </message> @@ -18384,12 +18442,12 @@ <translation><b>Kopieren</b><p>Kopiert den ausgewählten Text in die Zwischenablage.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1627"/> + <location filename="../Helpviewer/HelpWindow.py" line="1628"/> <source>&Edit</source> <translation>&Bearbeiten</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1635"/> + <location filename="../Helpviewer/HelpWindow.py" line="1636"/> <source>&View</source> <translation>&Ansicht</translation> </message> @@ -18424,7 +18482,7 @@ <translation><b>Verkleinern</b><p>Den angezeigten Text verkleinern.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1667"/> + <location filename="../Helpviewer/HelpWindow.py" line="1668"/> <source>H&istory</source> <translation>&Chronik</translation> </message> @@ -18505,37 +18563,37 @@ <translation>Ctrl+C</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1763"/> + <location filename="../Helpviewer/HelpWindow.py" line="1764"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1789"/> + <location filename="../Helpviewer/HelpWindow.py" line="1790"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1794"/> + <location filename="../Helpviewer/HelpWindow.py" line="1795"/> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1803"/> + <location filename="../Helpviewer/HelpWindow.py" line="1804"/> <source>Find</source> <translation>Suchen</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1843"/> + <location filename="../Helpviewer/HelpWindow.py" line="1844"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1850"/> + <location filename="../Helpviewer/HelpWindow.py" line="1851"/> <source>Go</source> <translation>Gehe zu</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Hilfedateien (*.html *.htm);;PDF-Dateien (*.pdf);;CHM Dateien (*.chm);;Alle Dateien (*)</translation> </message> @@ -18849,17 +18907,17 @@ <translation>Ctrl+1</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear icons database</source> <translation>Icondatenbank löschen</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1372"/> + <location filename="../Helpviewer/HelpWindow.py" line="1373"/> <source>Clear the database of favicons</source> <translation>Löscht die Datenbank mit den Favicons</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1374"/> + <location filename="../Helpviewer/HelpWindow.py" line="1375"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>Icondatenbank löschen</b><p>Löscht die Datenbank mit den Favicons besuchter URLs.</p></translation> </message> @@ -18939,22 +18997,22 @@ <translation><b>QtHelp-Dokumente verwalten</b><p>Zeigt einen Dialog zur Verwaltung der QtHelp Dokumente.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1741"/> + <location filename="../Helpviewer/HelpWindow.py" line="1742"/> <source>&Window</source> <translation>&Fenster</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1811"/> + <location filename="../Helpviewer/HelpWindow.py" line="1812"/> <source>Filter</source> <translation>Filter</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1816"/> + <location filename="../Helpviewer/HelpWindow.py" line="1817"/> <source>Filtered by: </source> <translation>Filter: </translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2690"/> + <location filename="../Helpviewer/HelpWindow.py" line="2691"/> <source>Could not find an associated content.</source> <translation>Konnte keinen zugehörigen Inhalt finden.</translation> </message> @@ -19019,22 +19077,22 @@ <translation><b>Dokumentation reindizieren</b><p>Reindiziert die Dokumentation.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2813"/> + <location filename="../Helpviewer/HelpWindow.py" line="2814"/> <source>Updating search index</source> <translation>Aktualisiere Suchindex</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2883"/> + <location filename="../Helpviewer/HelpWindow.py" line="2884"/> <source>Looking for Documentation...</source> <translation>Suche nach Dokumentation...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2918"/> + <location filename="../Helpviewer/HelpWindow.py" line="2919"/> <source>Unfiltered</source> <translation>Ungefiltert</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2937"/> + <location filename="../Helpviewer/HelpWindow.py" line="2938"/> <source>Help Engine</source> <translation>Hilfe</translation> </message> @@ -19054,7 +19112,7 @@ <translation><b>Privates Browsen</b><p>Schaltet das private Browsen ein. In diesem Modus wird keine Chronik mehr aufgezeichnet.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2380"/> + <location filename="../Helpviewer/HelpWindow.py" line="2381"/> <source>Full Screen</source> <translation>Vollbild</translation> </message> @@ -19084,37 +19142,32 @@ <translation>Dokumentation &reindizieren</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1355"/> + <location filename="../Helpviewer/HelpWindow.py" line="1356"/> <source>Clear private data</source> <translation>Private Daten löschen</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1350"/> - <source>&Clear private data</source> - <translation>&Private Daten löschen</translation> - </message> - <message> - <location filename="../Helpviewer/HelpWindow.py" line="1357"/> + <location filename="../Helpviewer/HelpWindow.py" line="1358"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Private Daten löschen</b><p>Löscht private Daten wie die Web-Chronik, Such-Chronik oder die Icondatenbank.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear &icons database</source> <translation>Icondatenbank &löschen</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1475"/> + <location filename="../Helpviewer/HelpWindow.py" line="1476"/> <source>Show the network monitor dialog</source> <translation>Zeigt den Netzwerkmonitordialog an</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1690"/> + <location filename="../Helpviewer/HelpWindow.py" line="1691"/> <source>&Settings</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1732"/> + <location filename="../Helpviewer/HelpWindow.py" line="1733"/> <source>&Tools</source> <translation>&Werkzeuge</translation> </message> @@ -19179,7 +19232,7 @@ <translation><b>Cookies</b><p>Cookieverwaltung konfigurieren</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1823"/> + <location filename="../Helpviewer/HelpWindow.py" line="1824"/> <source>Settings</source> <translation>Einstellungen</translation> </message> @@ -19362,7 +19415,7 @@ <translation><b>Lesezeichen für alle Tabs...</b><p>Öffnet einen Dialog, um einen neuen Lesezeichenordner für alle offenen Tabs hinzuzufügen.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2171"/> + <location filename="../Helpviewer/HelpWindow.py" line="2172"/> <source>Saved Tabs</source> <translation>Gesicherte Tabs</translation> </message> @@ -19426,57 +19479,57 @@ <translation><b>Speichern unter</b><p>Dies speichert die aktuelle Seite in eine Datei.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search Engines</source> <translation>Suchmaschinen verwalten</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1388"/> + <location filename="../Helpviewer/HelpWindow.py" line="1389"/> <source>Configure the available search engines</source> <translation>Verwalte die verfügbaren Suchmaschinen</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1390"/> + <location filename="../Helpviewer/HelpWindow.py" line="1391"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation><b>Suchmaschinen verwalten...</b><p>Öffnet einen Dialog zur Verwaltung der verfügbaren Suchmaschinen.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords</source> <translation>Gespeicherte Passwörter verwalten</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords...</source> <translation>Gespeicherte Passwörter verwalten...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1406"/> + <location filename="../Helpviewer/HelpWindow.py" line="1407"/> <source>Manage the saved passwords</source> <translation>Verwalten gespeicherter Passwörter</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1408"/> + <location filename="../Helpviewer/HelpWindow.py" line="1409"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation><b>Gespeicherte Passwörter verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter Passwörter.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>Ad Block</source> <translation>Ad Block</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>&Ad Block...</source> <translation>&Ad Block...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1422"/> + <location filename="../Helpviewer/HelpWindow.py" line="1423"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Konfiguriert AdBlock Abonnements und Regeln</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1424"/> + <location filename="../Helpviewer/HelpWindow.py" line="1425"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Öffnet einen Dialog zum konfigurieren von AdBlock Abonnements und Regeln</p></translation> </message> @@ -19516,146 +19569,146 @@ <translation><b>Offline-Speicher</b><p>Öffnet einen Dialog zum Konfigurieren des Offline-Speichers.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search &Engines...</source> <translation>Such&maschinen verwalten...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2410"/> + <location filename="../Helpviewer/HelpWindow.py" line="2411"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. HTML5 offline storage will be deactivated. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation><b>Sind Sie sicher, dass Sie privates Browsen einschalten möchten?</b><p>Wenn das private Browsen eingeschaltet ist, werden keine Webseiten mehr zur Chronik hinzugefügt und Suchanfragen, Webseitenicons und Cookies werden nicht mehr gespeichert. HTML5-Offlinespeicher wird deaktiviert. Bis das Fenster geschlossen wird, können Sie jedoch weiterhin die Zurück- und Vorwärts-Knöpfe nutzen, um zu besuchten Webseiten zurückzukehren.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1646"/> + <location filename="../Helpviewer/HelpWindow.py" line="1647"/> <source>Text Encoding</source> <translation>Zeichenkodierung</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3452"/> - <source>ISO</source> - <translation>ISO</translation> - </message> - <message> <location filename="../Helpviewer/HelpWindow.py" line="3453"/> - <source>Windows</source> - <translation>Windows</translation> + <source>ISO</source> + <translation>ISO</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3454"/> - <source>ISCII</source> - <translation>ISCII</translation> + <source>Windows</source> + <translation>Windows</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3455"/> - <source>Unicode</source> - <translation>Unicode</translation> + <source>ISCII</source> + <translation>ISCII</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3456"/> - <source>Other</source> - <translation>Sonstige</translation> + <source>Unicode</source> + <translation>Unicode</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3457"/> + <source>Other</source> + <translation>Sonstige</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="3458"/> <source>IBM</source> <translation>IBM</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3479"/> + <location filename="../Helpviewer/HelpWindow.py" line="3480"/> <source>Default Encoding</source> <translation>Standardkodierung</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1486"/> + <location filename="../Helpviewer/HelpWindow.py" line="1487"/> <source>Downloads</source> <translation>Downloads</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1490"/> + <location filename="../Helpviewer/HelpWindow.py" line="1491"/> <source>Shows the downloads window</source> <translation>Zeig das Downloadsfenster an</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1492"/> + <location filename="../Helpviewer/HelpWindow.py" line="1493"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation><b>Downloads</b><p>Zeig das Downloadsfenster an.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1903"/> + <location filename="../Helpviewer/HelpWindow.py" line="1904"/> <source>VirusTotal</source> <translation>VirusTotal</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1907"/> + <location filename="../Helpviewer/HelpWindow.py" line="1908"/> <source>Scan current site</source> <translation>Aktuelle Seite prüfen</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source>VirusTotal Scan</source> <translation>VirusTotal-Prüfung</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation><p>Die VirusTotal-Prüfung konnte nicht beauftragt werden.<p> <p>Ursache: {0}</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>RSS Feeds Dialog</source> <translation>RSS-Feeds-Dialog</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>&RSS Feeds Dialog...</source> <translation>&RSS-Feeds-Dialog...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation>Ctrl+Shift+F</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1507"/> + <location filename="../Helpviewer/HelpWindow.py" line="1508"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation>Öffnet einen Dialog mit den konfigurierten RSS-Feeds.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1509"/> + <location filename="../Helpviewer/HelpWindow.py" line="1510"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation><b>RSS-Feeds-Dialog...</b><p>Dies öffnet einen Dialog zur Anzeige der konfigurierten RSS-Feeds. Er kann verwendet werden, um sie zu verwalten und ihren Inhalt anzuzeigen.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Siteinfo Dialog</source> <translation>Seiteninformationen</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>&Siteinfo Dialog...</source> <translation>&Seiteninformationen...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1525"/> + <location filename="../Helpviewer/HelpWindow.py" line="1526"/> <source>Open a dialog showing some information about the current site.</source> <translation>Öffnet einen Dialog zur Anzeige von Informationen über die aktuelle Site.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1527"/> + <location filename="../Helpviewer/HelpWindow.py" line="1528"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation><b>Site Informationen...</b><p>Öffnet einen Dialog zur Anzeige von Informationen über die aktuelle Site.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1835"/> + <location filename="../Helpviewer/HelpWindow.py" line="1836"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> @@ -19672,47 +19725,47 @@ <translation>Verkleinern</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>Network Monitor</source> <translation>Netzwerkmonitor</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>&Network Monitor...</source> <translation>&Netzwerkmonitor...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1477"/> + <location filename="../Helpviewer/HelpWindow.py" line="1478"/> <source><b>Network Monitor...</b><p>Shows the network monitor dialog.</p></source> <translation><b>Netzwerkmonitor...</b><p>Zeigt den Netzwerkmonitordialog an.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2387"/> + <location filename="../Helpviewer/HelpWindow.py" line="2388"/> <source>Restore Window</source> <translation>Fenster wiederherstellen</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage User Agent Settings</source> <translation>User-Agent-Einstellungen verwalten</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage &User Agent Settings</source> <translation>User-&Agent-Einstellungen verwalten</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1540"/> + <location filename="../Helpviewer/HelpWindow.py" line="1541"/> <source>Shows a dialog to manage the User Agent settings</source> <translation>Zeigt einen Dialog zum Verwalten der User-Agent-Einstellungen an</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1542"/> + <location filename="../Helpviewer/HelpWindow.py" line="1543"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation><b>User-Agent-Einstellungen verwalten</b><p>Zeigt einen Dialog zum Verwalten der User-Agent-Einstellungen an.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1719"/> + <location filename="../Helpviewer/HelpWindow.py" line="1720"/> <source>Global User Agent</source> <translation>Globaler User Agent</translation> </message> @@ -19742,42 +19795,42 @@ <translation><b>Bildschirmphoto speichern...</b><p>Dies speichert die aktuelle Seite als Bildschirmphoto.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>Synchronize data</source> <translation>Synchronisation</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>&Synchronize Data...</source> <translation>&Synchronisation...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1556"/> + <location filename="../Helpviewer/HelpWindow.py" line="1557"/> <source>Shows a dialog to synchronize data via the network</source> <translation>Zeigt einen Dialog zum Synchronisieren von Daten über das Netzwerk</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1558"/> + <location filename="../Helpviewer/HelpWindow.py" line="1559"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation><b>Synchronisation...</b><p>Dies zeigt einen Dialog zum Synchronisieren von Daten über das Netzwerk.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>ClickToFlash</source> <translation>ClickToFlash</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>&ClickToFlash...</source> <translation>&ClickToFlash...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1439"/> + <location filename="../Helpviewer/HelpWindow.py" line="1440"/> <source>Configure ClickToFlash whitelist</source> <translation>ClickToFlash Whitelist konfigurieren</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1441"/> + <location filename="../Helpviewer/HelpWindow.py" line="1442"/> <source><b>ClickToFlash...</b><p>Opens a dialog to configure the ClickToFlash whitelist.</p></source> <translation><b>ClickToFlash...</b><p>Dies öffnet einen Dialog zur Konfiguration der ClickToFlash Whitelist.</p></translation> </message> @@ -19822,22 +19875,22 @@ <translation><b>GreaseMonkey-Skripte...</b><p>Öffnet einen Dialog zur Konfiguration der verfügbaren GreaseMonkey-Skripte.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates</source> <translation>SSL Zertifikate verwalten</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates...</source> <translation>SSL Zertifikate verwalten...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1458"/> + <location filename="../Helpviewer/HelpWindow.py" line="1459"/> <source>Manage the saved SSL certificates</source> <translation>Verwalten der gespeicherten SSL Zertifikate</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1460"/> + <location filename="../Helpviewer/HelpWindow.py" line="1461"/> <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> @@ -19882,7 +19935,7 @@ <translation><b>Bildschirmphoto (sichtbarer Bereich) speichern...</b><p>Dies speichert den sichtbaren Bereich der aktuellen Seite als Bildschirmphoto.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2893"/> + <location filename="../Helpviewer/HelpWindow.py" line="2894"/> <source>eric6 Web Browser</source> <translation>eric6-Webbrowser</translation> </message> @@ -19897,32 +19950,32 @@ <translation><b>Beenden</b><p>Beendet den eric6-Webbrowser.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2077"/> + <location filename="../Helpviewer/HelpWindow.py" line="2078"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p></source> <translation><b>eric6-Webbrowser – {0}</b><p>Der eric6-Webbrowser ist eine kombinierte Anzeige für Hilfe- und HTML-Dateien. Er ist Bestandteil der eric6-Entwicklungsumgebung.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>IP Address Report</source> <translation>IP Adressenbericht</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Domain Report</source> <translation>Domänenbericht</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3743"/> + <location filename="../Helpviewer/HelpWindow.py" line="3744"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation>Gib eine gültige IPv4 Adresse in Vierpunktnotation ein:</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>The given IP address is not in dotted quad notation.</source> <translation>Die eingegebene IP Adresse ist nicht in Vierpunktnotation.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Enter a valid domain name:</source> <translation>Gib einen gültigen Domänennamen ein:</translation> </message> @@ -19967,22 +20020,22 @@ <translation><b>Flash Cookies</b><p>Zeigt einen Dialog zur Verwaltung der Flash Cookies.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values</source> <translation>Gespeicherte Zoomwerte verwalten</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values...</source> <translation>Gespeicherte Zoomwerte verwalten...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1574"/> + <location filename="../Helpviewer/HelpWindow.py" line="1575"/> <source>Manage the saved zoom values</source> <translation>Verwalten gespeicherter Zoomwerte</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1576"/> + <location filename="../Helpviewer/HelpWindow.py" line="1577"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation><b>Gespeicherte Zoomwerte verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter Zoomwerte.</p></translation> </message> @@ -21773,7 +21826,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> <source>Add Sub-repository</source> <translation>Unterrepository hinzufügen</translation> </message> @@ -22866,7 +22919,7 @@ <translation>Drücken, um die ausgewählten Einträge als 'aufgelöst' zu markieren</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> <source>Resolved</source> <translation>Aufgelöst</translation> </message> @@ -22876,7 +22929,7 @@ <translation>Drücken, um die ausgewählten Einträge als 'nicht aufgelöst' zu markieren</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> <source>Unresolved</source> <translation>Nicht Aufgelöst</translation> </message> @@ -23469,7 +23522,7 @@ <translation>Wähle die als Filter zu verwendende Kategorie</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> <source>Revision</source> <translation>Revision</translation> </message> @@ -23748,7 +23801,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> <source>Mercurial Log</source> <translation>Mercurial-Log</translation> </message> @@ -23778,17 +23831,17 @@ <translation>Wähle das als Filter zu verwendende Feld</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> <source>Revision</source> <translation>Revision</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> <source>Author</source> <translation>Autor</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> <source>Message</source> <translation>Nachricht</translation> </message> @@ -27642,7 +27695,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> <source>Mercurial Status</source> <translation>Mercurial-Status</translation> </message> @@ -27784,7 +27837,7 @@ <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> <source>Commit</source> <translation>Einpflegen</translation> </message> @@ -27904,7 +27957,7 @@ <translation>alle</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> <source>Differences</source> <translation>Unterschiede</translation> </message> @@ -28669,7 +28722,7 @@ <translation>Drücken, um die ausgwählten Einträge zu löschen</translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> + <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> <source>&Remove</source> <translation>&Entfernen</translation> </message> @@ -34488,92 +34541,92 @@ <translation>Standard Knöpfe</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> <source>Apply</source> <translation>Anwenden</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> <source>Abort</source> <translation>Abbrechen (Abort)</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> <source>Cancel</source> <translation>Abbrechen (Cancel)</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> <source>Ignore</source> <translation>Ignorieren</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> <source>Save all</source> <translation>Alles speichern</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> <source>Discard</source> <translation>Verwerfen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> <source>Yes to all</source> <translation>Ja zu allen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> <source>Reset</source> <translation>Zurücksetzen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> <source>No</source> <translation>Nein</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> <source>No to all</source> <translation>Nein zu allen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> <source>Retry</source> <translation>Wiederholen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> <source>Restore defaults</source> <translation>Auf Standardwerte zurücksetzen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> <source>Close</source> <translation>Schließen</translation> </message> @@ -36303,7 +36356,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> <source>Not Cached Hosts</source> <translation>Nicht Gecachte Hosts</translation> </message> @@ -36411,7 +36464,7 @@ <translation>Einschalten, um die Position visuell auszuwählen, ausschalten, um sie einzulesen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> <source>Visual Selection</source> <translation>Visuelle Auswahl</translation> </message> @@ -37084,7 +37137,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> <source>Saved Passwords</source> <translation>Gespeicherte Passwörter</translation> </message> @@ -38905,17 +38958,17 @@ <translation>Speichern &unter...</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source>Version Control System</source> <translation>Versionskontrollsystem</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>Search New Files</source> <translation>Neue Dateien suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>There were no new files found to be added.</source> <translation>Es wurden keine neuen Dateien gefunden.</translation> </message> @@ -39015,7 +39068,7 @@ <translation><b>Quelltext Abdeckung...</b><p>Dies zeigt die Quelltextabdeckung für alle Python-Dateien des Projektes an.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Profile Data</source> <translation>Profildaten</translation> </message> @@ -39040,12 +39093,12 @@ <translation>&Zeige</translation> </message> <message> - <location filename="../Project/Project.py" line="4538"/> + <location filename="../Project/Project.py" line="4539"/> <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="../Project/Project.py" line="4488"/> + <location filename="../Project/Project.py" line="4489"/> <source>Coverage Data</source> <translation>Quelltext Abdeckungsdaten</translation> </message> @@ -39055,7 +39108,7 @@ <translation>&Versionskontrolle</translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> @@ -39085,17 +39138,17 @@ <translation>Projektdatei speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Please select a coverage file</source> <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Please select a profile file</source> <translation>Bitte wählen Sie eine Datei mit Profildaten</translation> </message> @@ -39240,7 +39293,7 @@ <translation>Sonstige</translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> @@ -39538,7 +39591,7 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source>Create Package List</source> <translation>Erzeuge Paketliste</translation> </message> @@ -39548,7 +39601,7 @@ <translation>Erzeuge &Paketliste</translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source>Create Plugin Archive</source> <translation>Erzeuge Plugin Archiv</translation> </message> @@ -39558,27 +39611,27 @@ <translation>Erzeuge Plugin &Archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="4733"/> + <location filename="../Project/Project.py" line="4734"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Die Datei <b>PKGLIST</b> existiert bereits.</p><p>Überschreiben?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Die Datei <b>PKGLIST</b> konnte nicht erzeugt werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4793"/> + <location filename="../Project/Project.py" line="4794"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation><p>Die Datei <b>PKGLIST</b> existiert nicht. Abbruch...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4801"/> + <location filename="../Project/Project.py" line="4802"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Für das Projekt wurde kein Hauptskript angegeben. Abbruch...</translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> + <location filename="../Project/Project.py" line="4816"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation><p>Die Datei <b>PKGLIST</b> konnte nicht gelesen werden.</p><p>Ursache: {0}</p></translation> </message> @@ -39603,7 +39656,7 @@ <translation>Projekttyp Registrierung</translation> </message> <message> - <location filename="../Project/Project.py" line="4854"/> + <location filename="../Project/Project.py" line="4855"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht im Archiv gespeichert werde. Sie wird ignoriert.</p><p>Ursache: {1}</p></translation> </message> @@ -39618,7 +39671,7 @@ <translation>Erzeuge Plugin Archiv (&Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="4923"/> + <location filename="../Project/Project.py" line="4924"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Grund: {1}</p></translation> </message> @@ -39638,7 +39691,7 @@ <translation>Gib das Pfadmuster für Übersetzungsdateien ein (benutze „%language%“ anstelle des Sprachcodes):</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Versionskontrolle nicht möglich.</p><p>{1}</p></translation> </message> @@ -39748,12 +39801,12 @@ <translation>PyQt5 Kommandozeile</translation> </message> <message> - <location filename="../Project/Project.py" line="4358"/> + <location filename="../Project/Project.py" line="4359"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Ignoriere Übersteuerung.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Ursache: {1}</p></translation> </message> @@ -39788,12 +39841,12 @@ <translation><b>Erzeuge Pluginarchiv (Snapshot)</b><p>Dies erzeugt eine eric6-Pluginarchivdatei mit den Dateien, die in der PKGLIST-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4828"/> + <location filename="../Project/Project.py" line="4829"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Die eric6 Plugin Archivdatei <b>{0}</b> konnte nicht erzeugt werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4877"/> + <location filename="../Project/Project.py" line="4878"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation><p>Die eric6 Plugin Archivdatei <b>{0}</b> wurde erfolgreich erzeugt.</p></translation> </message> @@ -41848,7 +41901,7 @@ <translation>Ausgeführt</translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="349"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> <source>Coverage</source> <translation>Abdeckung</translation> </message> @@ -41898,7 +41951,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="345"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> <source>%v/%m Files</source> <translation>%v/%m Dateien</translation> </message> @@ -41921,7 +41974,7 @@ <translation>Lösche alle Informationen</translation> </message> <message> - <location filename="../DataViews/PyProfileDialog.py" line="233"/> + <location filename="../DataViews/PyProfileDialog.ui" line="20"/> <source>Profile Results</source> <translation>Profilergebnisse</translation> </message> @@ -46584,7 +46637,7 @@ <translation>Drücken, um die ausgewählten Filter zu löschen</translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> <source>Remove Filters</source> <translation>Filter löschen</translation> </message> @@ -46594,7 +46647,7 @@ <translation>Drücken, um die ausgewählten Attribute zu löschen</translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> <source>Remove Attributes</source> <translation>Attribute löschen</translation> </message> @@ -48100,7 +48153,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> <source>Send Referer Whitelist</source> <translation>Referer Whitelist</translation> </message> @@ -48153,12 +48206,12 @@ <translation>Shell</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="228"/> + <location filename="../QScintilla/Shell.py" line="231"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="229"/> + <location filename="../QScintilla/Shell.py" line="232"/> <source>Reset</source> <translation>Zurücksetzen</translation> </message> @@ -48168,47 +48221,47 @@ <translation>Shell – Passiv</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="194"/> + <location filename="../QScintilla/Shell.py" line="197"/> <source>Passive >>> </source> <translation>Passiv >>> </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="222"/> + <location filename="../QScintilla/Shell.py" line="225"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="223"/> + <location filename="../QScintilla/Shell.py" line="226"/> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="230"/> + <location filename="../QScintilla/Shell.py" line="233"/> <source>Reset and Clear</source> <translation>Zurücksetzen und Löschen</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="645"/> + <location filename="../QScintilla/Shell.py" line="665"/> <source>No.</source> <translation>Nr.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="209"/> + <location filename="../QScintilla/Shell.py" line="212"/> <source>Start</source> <translation>Starten</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="647"/> + <location filename="../QScintilla/Shell.py" line="667"/> <source>{0} on {1}, {2}</source> <translation>{0} auf {1}, {2}</translation> </message> @@ -48218,76 +48271,76 @@ <translation><b>Das Shell-Fenster</b><p>Dies ist ein Interpreter Ihres Systems. Es ist derjenige, der benutzt wird, um das zu untersuchende Programm auszuführen. Dies bedeutet, dass Sie jedes Pythonkommando ausführen können, auch während Ihr Programm läuft.</p><p>Benutzen Sie die Cursortasten während der Eingabe von Befehlen. Es existiert auch eine Chronik-Funktion, die mit den Cursortasten Hoch und Runter bedient wird. Eine inkrementelle Suche wird gestartet, indem die Cursortasten Hoch und Runter nach Eingabe von Text gedrückt werden.</p><p>Die Shell hat einige spezielle Kommandos. „reset“ beendet den Interpreter und startet einen neuen. „clear“ löscht die Anzeige des Shell-Fensters. „start“ wird benutzt, um die Sprache der Shell umzuschalten, und muss von einer unterstützten Sprache gefolgt werden. Unterstützte Sprachen werden durch „languages“ aufgelistet. Diese Befehle (Ausnahme „languages“) sind auch über das Kontextmenu verfügbar.</p><p>Nachdem Text eingegeben wurde, kann durch Drücken der Tab-Taste eine Liste möglicher Kommandozeilenvervollständigungen angezeigt werden. Der gewünschte Eintrag kann aus dieser Liste ausgewählt werden. Ist nur ein Eintrag vorhanden, so wird dieser automatisch eingefügt.</p><p>Im passiven Debugmodus ist die Shell nur dann verfügbar, wenn das zu debuggende Skript mit der IDE verbunden ist. Dies wird durch einen anderen Prompt und eine Anzeige im Fensterkopf dargestellt.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1401"/> + <location filename="../QScintilla/Shell.py" line="1421"/> <source>Shell language "{0}" not supported. </source> <translation>Die Shell-Sprache „{0}“ wird nicht unterstützt. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="642"/> + <location filename="../QScintilla/Shell.py" line="662"/> <source>Passive Debug Mode</source> <translation>Passiver Debugmodus</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="785"/> + <location filename="../QScintilla/Shell.py" line="805"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="793"/> + <location filename="../QScintilla/Shell.py" line="813"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="214"/> + <location filename="../QScintilla/Shell.py" line="217"/> <source>History</source> <translation>Historie</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="215"/> + <location filename="../QScintilla/Shell.py" line="218"/> <source>Select entry</source> <translation>Eintrag auswählen</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="216"/> + <location filename="../QScintilla/Shell.py" line="219"/> <source>Show</source> <translation>Zeige</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select History</source> <translation>Eintrag auswählen</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Wähle den auszuführenden Eintrag aus (aktuellster ist zuletzt dargestellt).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="643"/> + <location filename="../QScintilla/Shell.py" line="663"/> <source> Not connected</source> <translation> nicht verbunden</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="235"/> + <location filename="../QScintilla/Shell.py" line="238"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="221"/> + <location filename="../QScintilla/Shell.py" line="224"/> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="226"/> + <location filename="../QScintilla/Shell.py" line="229"/> <source>Find</source> <translation>Suchen</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="686"/> + <location filename="../QScintilla/Shell.py" line="706"/> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -48298,14 +48351,14 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="718"/> + <location filename="../QScintilla/Shell.py" line="738"/> <source>Unspecified syntax error. </source> <translation>Unspezifischer Syntaxfehler. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="696"/> + <location filename="../QScintilla/Shell.py" line="716"/> <source>Exception "{0}" {1} </source> @@ -48314,14 +48367,14 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="720"/> + <location filename="../QScintilla/Shell.py" line="740"/> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation>Syntaxfehler "{1}" in Datei {0}, Zeile {2}, Zeichen {3}. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="743"/> + <location filename="../QScintilla/Shell.py" line="763"/> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation>Signal "{0}" in der Datei {1} in Zeile {2} erzeugt. @@ -49312,7 +49365,7 @@ <translation>&Vorschau kopieren</translation> </message> <message> - <location filename="../Snapshot/SnapWidget.py" line="531"/> + <location filename="../Snapshot/SnapWidget.ui" line="20"/> <source>eric6 Snapshot</source> <translation>eric6-Bildschirmfoto</translation> </message> @@ -51793,7 +51846,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> <source>Subversion Diff</source> <translation>Subversion-Diff</translation> </message> @@ -52071,12 +52124,12 @@ <translation>Subversion-Log</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> <source>Revision</source> <translation>Revision</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> <source>Author</source> <translation>Autor</translation> </message> @@ -52086,7 +52139,7 @@ <translation>Datum</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> <source>Message</source> <translation>Nachricht</translation> </message> @@ -52564,7 +52617,7 @@ <translation>&Protokoll:</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -52665,7 +52718,7 @@ <translation>Wähle das Protokoll zum Zugriff auf das Repository</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -53935,7 +53988,7 @@ <translation>ignoriert</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> <source>Subversion Status</source> <translation>Subversion-Status</translation> </message> @@ -53945,7 +53998,7 @@ <translation>Änderungen einpflegen...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> <source>Commit</source> <translation>Einpflegen</translation> </message> @@ -57466,17 +57519,17 @@ <translation>Projektaufgaben &regenerieren</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Extracting project tasks...</source> <translation>Extrahiere Projektaufgaben...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Abort</source> <translation>Abbrechen</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="707"/> + <location filename="../Tasks/TaskViewer.py" line="706"/> <source>Extracting project tasks... {0}</source> <translation>Extrahiere Projektaufgaben... @@ -57513,12 +57566,12 @@ <translation>&Projektaufgaben</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>%v/%m Files</source> <translation>%v/%m Dateien</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="702"/> + <location filename="../Tasks/TaskViewer.py" line="701"/> <source>Tasks</source> <translation>Aufgaben</translation> </message> @@ -59379,7 +59432,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="400"/> + <location filename="../PyUnit/UnittestDialog.ui" line="14"/> <source>Unittest</source> <translation>Modultest</translation> </message> @@ -59870,7 +59923,7 @@ <translation>Öffnet das Hilfe-Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2657"/> + <location filename="../UI/UserInterface.py" line="2676"/> <source>Unittest</source> <translation>Modultests</translation> </message> @@ -59885,12 +59938,12 @@ <translation>Starte den Modultest Dialog</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2533"/> + <location filename="../UI/UserInterface.py" line="2552"/> <source>&Window</source> <translation>&Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583"/> + <location filename="../UI/UserInterface.py" line="2602"/> <source>&Help</source> <translation>&Hilfe</translation> </message> @@ -59925,22 +59978,22 @@ <translation>Beenden der Entwicklungsumgebung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2656"/> + <location filename="../UI/UserInterface.py" line="2675"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2577"/> <source>&Toolbars</source> <translation>&Werkzeugleisten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <source>Problem</source> <translation>Problem</translation> </message> @@ -59960,7 +60013,7 @@ <translation>&Was ist das?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> @@ -59980,7 +60033,7 @@ <translation>Ausgabefenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2658"/> + <location filename="../UI/UserInterface.py" line="2677"/> <source>Settings</source> <translation>Einstellungen</translation> </message> @@ -60025,12 +60078,12 @@ <translation><b>Tastaturkurzbefehle</b><p>Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2489"/> + <location filename="../UI/UserInterface.py" line="2506"/> <source>E&xtras</source> <translation>E&xtras</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <source>Report Bug</source> <translation>Fehler berichten</translation> </message> @@ -60050,7 +60103,7 @@ <translation><b>Fehler berichten...</b><p>Öffnet einen Dialog zum Senden eines Fehlerberichtes.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5544"/> + <location filename="../UI/UserInterface.py" line="5571"/> <source>Export Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle exportieren</translation> </message> @@ -60070,7 +60123,7 @@ <translation><b>Tastaturkurzbefehle exportieren</b><p>Exportiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Import Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle importieren</translation> </message> @@ -60160,7 +60213,7 @@ <translation><b>Modultest (Skript)</b><p>Modultest für aktuelles Skript ausführen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>Unittest Project</source> <translation>Modultest (Projekt)</translation> </message> @@ -60175,12 +60228,12 @@ <translation><b>Modultest (Projekt)</b><p>Modultest für aktuelles Projekt ausführen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2472"/> + <location filename="../UI/UserInterface.py" line="2489"/> <source>&Unittest</source> <translation>&Modultests</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <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> @@ -60230,7 +60283,7 @@ <translation><b>Dateien Seite an Seite vergleichen</b><p>Öffnet einen Dialog zum Vergleich zweier Dateien und zur Anzeige des Ergebnisse Seite an Seite.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source>Drop Error</source> <translation>Drop-Fehler</translation> </message> @@ -60300,32 +60353,32 @@ <translation><b>Ansichtenprofile</b><p>Ansichtenprofile konfigurieren. Mit diesem Dialog kann die Sichtbarkeit der verschiedenen Fenster für die vorbestimmten Ansichtenprofile eingestellt werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <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="4295"/> + <location filename="../UI/UserInterface.py" line="4322"/> <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="4362"/> + <location filename="../UI/UserInterface.py" line="4389"/> <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="4413"/> + <location filename="../UI/UserInterface.py" line="4440"/> <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="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> @@ -60350,7 +60403,7 @@ <translation><b>UI-Vorschau</b><p>Starte die UI-Vorschau.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4523"/> + <location filename="../UI/UserInterface.py" line="4550"/> <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> @@ -60375,7 +60428,7 @@ <translation><b>Übersetzungsvorschau</b><p>Dies startet das Programm zur Vorschau von Übersetzungen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4578"/> + <location filename="../UI/UserInterface.py" line="4605"/> <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> @@ -60415,47 +60468,47 @@ <translation>Aufgabenanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <source>Save tasks</source> <translation>Aufgaben speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <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="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <source>Read tasks</source> <translation>Aufgaben lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <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="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <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="4455"/> + <location filename="../UI/UserInterface.py" line="4482"/> <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="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <source>Documentation Missing</source> <translation>Dokumentation fehlt</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <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="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <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> @@ -60495,22 +60548,22 @@ <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Activate current editor</source> <translation>Aktiviere aktuellen Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> @@ -60520,37 +60573,37 @@ <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt4 Documentation</source> <translation>Qt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt&4 Documentation</source> <translation>Qt&4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2294"/> + <location filename="../UI/UserInterface.py" line="2311"/> <source>Open Qt4 Documentation</source> <translation>Öffne die Qt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>Eric API Documentation</source> <translation>Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>&Eric API Documentation</source> <translation>&Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2408"/> + <location filename="../UI/UserInterface.py" line="2425"/> <source>Open Eric API Documentation</source> <translation>Öffne die Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4475"/> + <location filename="../UI/UserInterface.py" line="4502"/> <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> @@ -60601,86 +60654,86 @@ <translation>Auf &Aktualisierungen prüfen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt4 Documentation</source> <translation>PyQt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2324"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Open PyQt4 Documentation</source> <translation>Öffne die PyQt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2502"/> + <location filename="../UI/UserInterface.py" line="2519"/> <source>Select Tool Group</source> <translation>Werkzeuggruppe wählen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2510"/> + <location filename="../UI/UserInterface.py" line="2527"/> <source>Se&ttings</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2660"/> + <location filename="../UI/UserInterface.py" line="2679"/> <source>Profiles</source> <translation>Profile</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3390"/> + <location filename="../UI/UserInterface.py" line="3417"/> <source>&Builtin Tools</source> <translation>&Eingebaute Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4738"/> + <location filename="../UI/UserInterface.py" line="4765"/> <source>Starting process '{0} {1}'. </source> <translation>Starte Prozess „{0} {1}“. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4830"/> + <location filename="../UI/UserInterface.py" line="4857"/> <source>Process '{0}' has exited. </source> <translation>Prozess „{0}“ ist beendet. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source>Documentation</source> <translation>Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5039"/> + <location filename="../UI/UserInterface.py" line="5066"/> <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="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Error during updates check</source> <translation>Fehler während der Aktualisierungsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <source>Update available</source> <translation>Aktualisierung verfügbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3021"/> + <location filename="../UI/UserInterface.py" line="3048"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Versionsnummern</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360"/> + <location filename="../UI/UserInterface.py" line="6413"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3435"/> + <location filename="../UI/UserInterface.py" line="3462"/> <source>Configure Tool Groups ...</source> <translation>Konfiguriere Werkzeuggruppen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3439"/> + <location filename="../UI/UserInterface.py" line="3466"/> <source>Configure current Tool Group ...</source> <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation> </message> @@ -60695,22 +60748,22 @@ <translation>Zeige externe &Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Could not perform updates check.</source> <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>&Cancel</source> <translation>&Abbrechen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6196"/> <source>Trying host {0}</source> <translation>Prüfe Host {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>First time usage</source> <translation>Erstmalige Nutzung</translation> </message> @@ -60720,62 +60773,62 @@ <translation>Initialisiere Plugin-Manager...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2569"/> + <location filename="../UI/UserInterface.py" line="2588"/> <source>P&lugins</source> <translation>Plugi&ns</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2661"/> + <location filename="../UI/UserInterface.py" line="2680"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>Plugin Infos</source> <translation>Plugininformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2224"/> + <location filename="../UI/UserInterface.py" line="2241"/> <source>Show Plugin Infos</source> <translation>Zeigt Plugininformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2225"/> + <location filename="../UI/UserInterface.py" line="2242"/> <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="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>&Plugin Infos...</source> <translation>&Plugininformationen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3407"/> + <location filename="../UI/UserInterface.py" line="3434"/> <source>&Plugin Tools</source> <translation>&Pluginwerkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2268"/> <source>Uninstall Plugin</source> <translation>Plugin deinstallieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2246"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>&Uninstall Plugin...</source> <translation>Plugin &deinstallieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2252"/> + <location filename="../UI/UserInterface.py" line="2269"/> <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="3558"/> + <location filename="../UI/UserInterface.py" line="3585"/> <source>&Show all</source> <translation>Alle an&zeigen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3560"/> + <location filename="../UI/UserInterface.py" line="3587"/> <source>&Hide all</source> <translation>Alle &ausblenden</translation> </message> @@ -60785,7 +60838,7 @@ <translation>Aktiviere Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2494"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source>Wi&zards</source> <translation>&Assistenten</translation> </message> @@ -60805,42 +60858,42 @@ <translation>Zeige die verfügbaren eric-Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6346"/> + <location filename="../UI/UserInterface.py" line="6399"/> <source><h3>Available versions</h3><table></source> <translation><h3>Verfügbare Versionen</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin Repository</source> <translation>Plugin-Repository</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin &Repository...</source> <translation>Plugin-&Repository...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2281"/> <source>Show Plugins available for download</source> <translation>Zeige zum Download verfügbare Plugins an</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2283"/> <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="2238"/> + <location filename="../UI/UserInterface.py" line="2255"/> <source>Install Plugins</source> <translation>Plugins installieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2233"/> + <location filename="../UI/UserInterface.py" line="2250"/> <source>&Install Plugins...</source> <translation>Plugins &installieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239"/> + <location filename="../UI/UserInterface.py" line="2256"/> <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> @@ -60885,22 +60938,22 @@ <translation>Lade Toolbarmanager...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2924"/> + <location filename="../UI/UserInterface.py" line="2951"/> <source>External Tools/{0}</source> <translation>Externe Werkzeuge/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>External Tools</source> <translation>Externe Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4717"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>No toolgroup entry '{0}' found.</source> <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation> </message> @@ -60915,32 +60968,32 @@ <translation>&Mehrfachprojektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <source>Save session</source> <translation>Session speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Die Sessiondatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <source>Read session</source> <translation>Session lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Sessiondatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2821"/> + <location filename="../UI/UserInterface.py" line="2848"/> <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="2835"/> + <location filename="../UI/UserInterface.py" line="2862"/> <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> @@ -60965,17 +61018,17 @@ <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="2814"/> + <location filename="../UI/UserInterface.py" line="2841"/> <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="2842"/> + <location filename="../UI/UserInterface.py" line="2869"/> <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="2849"/> + <location filename="../UI/UserInterface.py" line="2876"/> <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> @@ -61000,12 +61053,12 @@ <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="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>Restart application</source> <translation>Anwendung neu starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>The application needs to be restarted. Do it now?</source> <translation>Die Anwendung muss neu gestartet werden. Jetzt durchführen?</translation> </message> @@ -61015,22 +61068,22 @@ <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2597"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2828"/> + <location filename="../UI/UserInterface.py" line="2855"/> <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="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Switch between tabs</source> <translation>Zwischen Tabs umschalten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> @@ -61075,12 +61128,12 @@ <translation><b>Einstellungen importieren</b><p>Importiert eine zuvor exportierte Konfiguration.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Show next</source> <translation>Zeige nächste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Show previous</source> <translation>Zeige vorherige</translation> </message> @@ -61150,7 +61203,7 @@ <translation><b>SQL-Browser</b><p>Erforsche eine SQL-Datenbank.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4599"/> + <location filename="../UI/UserInterface.py" line="4626"/> <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> @@ -61165,27 +61218,27 @@ <translation>&Icon-Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt 3 support</source> <translation>Qt3-Unterstützung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation><p>Der PySide-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>PySide Documentation</source> <translation>PySide-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>Py&Side Documentation</source> <translation>Py&Side-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2446"/> <source>Open PySide Documentation</source> <translation>Öffne die PySide-Dokumentation</translation> </message> @@ -61220,67 +61273,67 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Tastaturkurzbefehlsdatei (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python 3 Documentation</source> <translation>Python 3-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python &3 Documentation</source> <translation>Python &3-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2383"/> <source>Open Python 3 Documentation</source> <translation>Öffne die Python 3-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python 2 Documentation</source> <translation>Python 2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python &2 Documentation</source> <translation>Python &2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384"/> + <location filename="../UI/UserInterface.py" line="2401"/> <source>Open Python 2 Documentation</source> <translation>Öffne die Python 2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2403"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <source>Error getting versions information</source> <translation>Fehler beim Herunterladen der Versionsinformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6205"/> + <location filename="../UI/UserInterface.py" line="6258"/> <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="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Open Browser</source> <translation>Browser starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Could not start a web browser</source> <translation>Der Systemwebbrowser konnte nicht gestartet werden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <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> @@ -61366,12 +61419,12 @@ <translation><b>Bildschirmfoto</b><p>Dies öffnet einen Dialog, um ein Bildschirmfoto aufzunehmen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4696"/> <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="6406"/> + <location filename="../UI/UserInterface.py" line="6459"/> <source>Select Workspace Directory</source> <translation>Wähle Arbeitsverzeichnis</translation> </message> @@ -61591,7 +61644,7 @@ <translation><b>Zahlenanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Zahlenanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2538"/> + <location filename="../UI/UserInterface.py" line="2557"/> <source>&Windows</source> <translation>&Fenster</translation> </message> @@ -61666,22 +61719,22 @@ <translation><b>Qt Linguist</b><p>Starte Qt Linguist (Übersetzungsprogramm).</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt5 Documentation</source> <translation>Qt5 Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt&5 Documentation</source> <translation>Qt&5 Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308"/> + <location filename="../UI/UserInterface.py" line="2325"/> <source>Open Qt5 Documentation</source> <translation>Öffne die Qt5 Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2860"/> + <location filename="../UI/UserInterface.py" line="2887"/> <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> @@ -61726,62 +61779,62 @@ <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="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt&4 Documentation</source> <translation>PyQt&4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt5 Documentation</source> <translation>PyQt5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt&5 Documentation</source> <translation>PyQt&5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2343"/> + <location filename="../UI/UserInterface.py" line="2360"/> <source>Open PyQt5 Documentation</source> <translation>Öffne die PyQt5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5105"/> + <location filename="../UI/UserInterface.py" line="5132"/> <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="2295"/> + <location filename="../UI/UserInterface.py" line="2312"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>Qt4-Dokumentation</b><p>Zeige die Qt4-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger, ein Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2326"/> <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, 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, ein Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2325"/> + <location filename="../UI/UserInterface.py" line="2342"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>PyQt4-Dokumentation</b><p>Zeige die PyQt4-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger, ein Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345"/> + <location filename="../UI/UserInterface.py" line="2362"/> <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, 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, ein Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368"/> + <location filename="../UI/UserInterface.py" line="2385"/> <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="2431"/> + <location filename="../UI/UserInterface.py" line="2448"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>PySide-Dokumentation</b><p>Zeige die PySide-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger, ein Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> @@ -61801,7 +61854,7 @@ <translation><b>Zeige Fehlerbericht...</b><p>Dies öffnet einen Dialog zur Anzeige des aktuellsten Fehlerberichtes.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6191"/> <source>Version Check</source> <translation>Versionsprüfung</translation> </message> @@ -61867,32 +61920,32 @@ <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="2410"/> + <location filename="../UI/UserInterface.py" line="2427"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <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="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <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="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>Eric6 is up to date</source> <translation>Eric6 ist aktuell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <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="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <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> @@ -61902,17 +61955,17 @@ <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3410"/> + <location filename="../UI/UserInterface.py" line="3437"/> <source>&User Tools</source> <translation>&Benutzerwerkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482"/> + <location filename="../UI/UserInterface.py" line="3509"/> <source>No User Tools Configured</source> <translation>Keine Benutzerwerkzeuge konfiguriert</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6154"/> + <location filename="../UI/UserInterface.py" line="6207"/> <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> @@ -61936,6 +61989,16 @@ <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="2189"/> + <source>Clear private data</source> + <translation>Private Daten löschen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <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> </context> <context> <name>UserPropertiesDialog</name> @@ -64270,17 +64333,17 @@ <translation>Ge&merkte Dateien</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065"/> + <location filename="../ViewManager/ViewManager.py" line="5066"/> <source>&Clear</source> <translation>&Löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5059"/> + <location filename="../ViewManager/ViewManager.py" line="5060"/> <source>&Add</source> <translation>&Hinzufügen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5062"/> + <location filename="../ViewManager/ViewManager.py" line="5063"/> <source>&Edit...</source> <translation>&Bearbeiten...</translation> </message> @@ -65776,27 +65839,27 @@ <translation>Nutzer-Ausnahmenliste</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>Edit Spelling Dictionary</source> <translation>Wörterbuch bearbeiten</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6242"/> + <location filename="../ViewManager/ViewManager.py" line="6243"/> <source>Editing {0}</source> <translation>Bearbeite {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6227"/> + <location filename="../ViewManager/ViewManager.py" line="6228"/> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Wörterbuchdatei <b>{0}</b> konnte nicht gelesen werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6254"/> + <location filename="../ViewManager/ViewManager.py" line="6255"/> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>Die Wörterbuchdatei <b>{0}</b> konnte nicht geschrieben werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>The spelling dictionary was saved successfully.</source> <translation>Das Wörterbuch wurde erfolgreich gespeichert.</translation> </message> @@ -67898,7 +67961,7 @@ <context> <name>WebBrowserWindow</name> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3153"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3154"/> <source>eric6 Web Browser</source> <translation>eric6 Web-Browser</translation> </message> @@ -67918,7 +67981,7 @@ <translation>Suchen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1714"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1715"/> <source>JavaScript Console</source> <translation>JavaScript-Konsole</translation> </message> @@ -67975,7 +68038,7 @@ <translation><b>Neues Fenster</b><p>Dies öffnet ein neues Web-Browser Fenster im aktuellen Privatsphärenmodus.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>New Private Window</source> <translation>Neues Privates Fenster</translation> </message> @@ -68001,7 +68064,7 @@ <translation><b>Neues Privates Fenster</b><p>Dies startet ein neues privates Web-Browser Fenster durch Starten einer neuen Web-Browser Instanz im Privatmodus.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>Open File</source> <translation>Datei öffnen</translation> </message> @@ -68905,7 +68968,7 @@ <translation><b>Seitenquelltext anzeigen</b><p>Zeige den Seitenquelltext in einem Editor.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2662"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2663"/> <source>Full Screen</source> <translation>Vollbild</translation> </message> @@ -69220,526 +69283,521 @@ <translation><b>Dokumentation reindizieren</b><p>Reindiziert die Dokumentation.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1504"/> <source>Clear private data</source> <translation>Private Daten löschen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/> - <source>&Clear private data</source> - <translation>&Private Daten löschen</translation> - </message> - <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1506"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Private Daten löschen</b><p>Löscht private Daten wie die Web-Chronik, Such-Chronik oder die Icondatenbank.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear icons database</source> <translation>Icondatenbank löschen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear &icons database</source> <translation>Icondatenbank &löschen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1521"/> <source>Clear the database of favicons</source> <translation>Löscht die Datenbank mit den Favicons</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1522"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1523"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>Icondatenbank löschen</b><p>Löscht die Datenbank mit den Favicons besuchter URLs.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1532"/> <source>Manage saved Favicons</source> <translation>Gespeicherte Favicons verwalten</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1538"/> <source>Show a dialog to manage the saved favicons</source> <translation>Zeigt einen Dialog zur Verwaltung der gespeicherten Favicons an</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1539"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/> <source><b>Manage saved Favicons</b><p>This shows a dialog to manage the saved favicons of previously visited URLs.</p></source> <translation><b>Gespeicherte Favicons verwalten</b><p>Dies zeigt einen Dialog zur Verwaltung der gespeicherten Favicons von besuchten Webseiten an.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search Engines</source> <translation>Suchmaschinen verwalten</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search &Engines...</source> <translation>Such&maschinen verwalten...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1553"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1554"/> <source>Configure the available search engines</source> <translation>Verwalte die verfügbaren Suchmaschinen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1556"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation><b>Suchmaschinen verwalten...</b><p>Öffnet einen Dialog zur Verwaltung der verfügbaren Suchmaschinen.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords</source> <translation>Gespeicherte Passwörter verwalten</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords...</source> <translation>Gespeicherte Passwörter verwalten...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1572"/> <source>Manage the saved passwords</source> <translation>Verwalten gespeicherter Passwörter</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1573"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1574"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation><b>Gespeicherte Passwörter verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter Passwörter.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>Ad Block</source> <translation>Ad Block</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>&Ad Block...</source> <translation>&Ad Block...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1588"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Konfiguriert AdBlock Abonnements und Regeln</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1589"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1590"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Öffnet einen Dialog zum konfigurieren von AdBlock Abonnements und Regeln</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors</source> <translation>SSL Zertifikatsfehler verwalten</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors...</source> <translation>SSL Zertifikatsfehler verwalten...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1604"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1605"/> <source>Manage the accepted SSL certificate Errors</source> <translation>Verwalte die akzeptierten SSL Zertifikatsfehler</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1606"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/> <source><b>Manage SSL Certificate Errors...</b><p>Opens a dialog to manage the accepted SSL certificate errors.</p></source> <translation><b>SSL Zertifikatsfehler verwalten</b><p>Dies öffnet einen Dialog zur Verwaltung der akzeptierten SSL Zertifikatsfehler.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1616"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1617"/> <source>Downloads</source> <translation>Downloads</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1620"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1621"/> <source>Shows the downloads window</source> <translation>Zeig das Downloadsfenster an</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1622"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation><b>Downloads</b><p>Zeig das Downloadsfenster an.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>RSS Feeds Dialog</source> <translation>RSS-Feeds-Dialog</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>&RSS Feeds Dialog...</source> <translation>&RSS-Feeds-Dialog...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation>Ctrl+Shift+F</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1637"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1638"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation>Öffnet einen Dialog mit den konfigurierten RSS-Feeds.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1639"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation><b>RSS-Feeds-Dialog...</b><p>Dies öffnet einen Dialog zur Anzeige der konfigurierten RSS-Feeds. Er kann verwendet werden, um sie zu verwalten und ihren Inhalt anzuzeigen.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Siteinfo Dialog</source> <translation>Seiteninformationen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>&Siteinfo Dialog...</source> <translation>&Seiteninformationen...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/> <source>Open a dialog showing some information about the current site.</source> <translation>Öffnet einen Dialog zur Anzeige von Informationen über die aktuelle Site.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1658"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation><b>Site Informationen...</b><p>Öffnet einen Dialog zur Anzeige von Informationen über die aktuelle Site.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage User Agent Settings</source> <translation>User-Agent-Einstellungen verwalten</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage &User Agent Settings</source> <translation>User-&Agent-Einstellungen verwalten</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/> <source>Shows a dialog to manage the User Agent settings</source> <translation>Zeigt einen Dialog zum Verwalten der User-Agent-Einstellungen an</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1672"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation><b>User-Agent-Einstellungen verwalten</b><p>Zeigt einen Dialog zum Verwalten der User-Agent-Einstellungen an.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>Synchronize data</source> <translation>Synchronisation</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>&Synchronize Data...</source> <translation>&Synchronisation...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1686"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/> <source>Shows a dialog to synchronize data via the network</source> <translation>Zeigt einen Dialog zum Synchronisieren von Daten über das Netzwerk</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1689"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation><b>Synchronisation...</b><p>Dies zeigt einen Dialog zum Synchronisieren von Daten über das Netzwerk.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values</source> <translation>Gespeicherte Zoomwerte verwalten</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values...</source> <translation>Gespeicherte Zoomwerte verwalten...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1705"/> <source>Manage the saved zoom values</source> <translation>Verwalten gespeicherter Zoomwerte</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1706"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation><b>Gespeicherte Zoomwerte verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter Zoomwerte.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1718"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/> <source>Toggle the JavaScript console window</source> <translation>Schalte die JavaScript-Konsole um</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1720"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1721"/> <source><b>JavaScript Console</b><p>This toggles the JavaScript console window.</p></source> <translation><b>JavaScript Konsole</b><p>Dies schaltet die Anzeige der JavaScript Konsole um.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1765"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1787"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1788"/> <source>&Edit</source> <translation>&Bearbeiten</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1804"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1805"/> <source>&View</source> <translation>&Ansicht</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1812"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1813"/> <source>Text Encoding</source> <translation>Zeichenkodierung</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1818"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1819"/> <source>&Go</source> <translation>&Gehe zu</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1833"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/> <source>H&istory</source> <translation>&Chronik</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1845"/> <source>&Bookmarks</source> <translation>&Lesezeichen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1861"/> <source>&Settings</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1887"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1888"/> <source>Global User Agent</source> <translation>Globaler User Agent</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1900"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1901"/> <source>&Tools</source> <translation>&Werkzeuge</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1907"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1908"/> <source>&Window</source> <translation>&Fenster</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1920"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1921"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1931"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1932"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1959"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1960"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1971"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1972"/> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1980"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/> <source>Find</source> <translation>Suchen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1988"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1989"/> <source>Filter</source> <translation>Filter</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1993"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1994"/> <source>Filtered by: </source> <translation>Filter: </translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2000"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2001"/> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2011"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2012"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2020"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2026"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2027"/> <source>Go</source> <translation>Gehe zu</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2080"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/> <source>VirusTotal</source> <translation>VirusTotal</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2084"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2085"/> <source>Scan current site</source> <translation>Aktuelle Seite prüfen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>IP Address Report</source> <translation>IP Adressenbericht</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Domain Report</source> <translation>Domänenbericht</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der Prozess konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>OK</source> <translation>OK</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2305"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2306"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p><p>It is based on QtWebEngine {1} and Chrome {2}.</p></source> <translation><b>eric6 Web-Browser – {0}</b><p>Der eric6 Web-Browser ist eine kombinierte Anzeige für Hilfe- und HTML-Dateien. Er ist Bestandteil der eric6-Entwicklungsumgebung.</p><p>Er basiert auf QtWebEngine {1} und Chrome {2}.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2425"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2426"/> <source>Saved Tabs</source> <translation>Gesicherte Tabs</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2669"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2670"/> <source>Restore Window</source> <translation>Fenster wiederherstellen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2970"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2971"/> <source>Could not find an associated content.</source> <translation>Konnte keinen zugehörigen Inhalt finden.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3073"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3074"/> <source>Updating search index</source> <translation>Aktualisiere Suchindex</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3143"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3144"/> <source>Looking for Documentation...</source> <translation>Suche nach Dokumentation...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3178"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3179"/> <source>Unfiltered</source> <translation>Ungefiltert</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3197"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3198"/> <source>Help Engine</source> <translation>Hilfe</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3724"/> - <source>ISO</source> - <translation>ISO</translation> - </message> - <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3725"/> - <source>Windows</source> - <translation>Windows</translation> + <source>ISO</source> + <translation>ISO</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3726"/> - <source>ISCII</source> - <translation>ISCII</translation> + <source>Windows</source> + <translation>Windows</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3727"/> - <source>Unicode</source> - <translation>Unicode</translation> + <source>ISCII</source> + <translation>ISCII</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3728"/> - <source>Other</source> - <translation>Sonstige</translation> + <source>Unicode</source> + <translation>Unicode</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3729"/> + <source>Other</source> + <translation>Sonstige</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3730"/> <source>IBM</source> <translation>IBM</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3751"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3752"/> <source>Default Encoding</source> <translation>Standardkodierung</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source>VirusTotal Scan</source> <translation>VirusTotal-Prüfung</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation><p>Die VirusTotal-Prüfung konnte nicht beauftragt werden.<p> <p>Ursache: {0}</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4043"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4044"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation>Gib eine gültige IPv4 Adresse in Vierpunktnotation ein:</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>The given IP address is not in dotted quad notation.</source> <translation>Die eingegebene IP Adresse ist nicht in Vierpunktnotation.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Enter a valid domain name:</source> <translation>Gib einen gültigen Domänennamen ein:</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1729"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1730"/> <source>Tab Manager</source> <translation>Registerverwaltung</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/> <source>Shows the tab manager window</source> <translation>Zeigt das Fenster der Registerverwaltung an</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1735"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/> <source><b>Tab Manager</b><p>Shows the tab manager window.</p></source> <translation><b>Registerverwaltung</b><p>Zeig das Fenster der Registerverwaltung an.</p></translation> </message> @@ -69775,7 +69833,7 @@ <translation><b>Speichern unter</b><p>Dies speichert die aktuelle Seite in eine Datei.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>HTML Files (*.html *.htm *.mhtml);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Hilfedateien (*.html *.htm *.mhtml);;PDF-Dateien (*.pdf);;CHM Dateien (*.chm);;Alle Dateien (*)</translation> </message>
--- a/i18n/eric6_en.ts Tue Aug 23 19:02:43 2016 +0200 +++ b/i18n/eric6_en.ts Wed Aug 24 20:00:29 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation type="unfinished"></translation> </message> @@ -1661,7 +1661,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation type="unfinished"></translation> </message> @@ -2379,12 +2379,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="99"/> <source>From</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="104"/> <source>To</source> <translation type="unfinished"></translation> </message> @@ -2482,7 +2482,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation type="unfinished"></translation> </message> @@ -2709,6 +2709,64 @@ </message> </context> <context> + <name>ClearPrivateDataDialog</name> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="14"/> + <source>Clear Private Data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="23"/> + <source>Select to clear the list of recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="26"/> + <source>Recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="36"/> + <source>Select to clear the list of recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="39"/> + <source>Recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="49"/> + <source>Select to clear the list of recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="52"/> + <source>Recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="62"/> + <source>Select to clear the debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="65"/> + <source>Debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="75"/> + <source>Select to clear the shell histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="78"/> + <source>Shell histories</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>ClickToFlash</name> <message> <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.ui" line="43"/> @@ -2774,7 +2832,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation type="unfinished"></translation> </message> @@ -4685,7 +4743,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation type="unfinished"></translation> </message> @@ -5166,7 +5224,7 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1765"/> + <location filename="../Debugger/DebugUI.py" line="1780"/> <source>Run Script</source> <translation type="unfinished"></translation> </message> @@ -5186,7 +5244,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>Run Project</source> <translation type="unfinished"></translation> </message> @@ -5286,7 +5344,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1887"/> + <location filename="../Debugger/DebugUI.py" line="1902"/> <source>Debug Script</source> <translation type="unfinished"></translation> </message> @@ -5306,7 +5364,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <source>Debug Project</source> <translation type="unfinished"></translation> </message> @@ -5456,7 +5514,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> <translation type="unfinished"></translation> </message> @@ -5476,7 +5534,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> <translation type="unfinished"></translation> </message> @@ -5666,144 +5724,144 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1021"/> + <location filename="../Debugger/DebugUI.py" line="1036"/> <source><p>The program has terminated with an exit status of {0}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1026"/> + <location filename="../Debugger/DebugUI.py" line="1041"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1073"/> + <location filename="../Debugger/DebugUI.py" line="1088"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1092"/> + <location filename="../Debugger/DebugUI.py" line="1107"/> <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="1110"/> + <location filename="../Debugger/DebugUI.py" line="1125"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1151"/> - <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="1166"/> + <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="1181"/> <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="1230"/> + <location filename="../Debugger/DebugUI.py" line="1245"/> <source>The program being debugged has terminated unexpectedly.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <source>Breakpoint Condition Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <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="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <source>Watch Expression Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <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="1365"/> + <location filename="../Debugger/DebugUI.py" line="1380"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1384"/> <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="1375"/> + <location filename="../Debugger/DebugUI.py" line="1390"/> <source>Watch expression already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1540"/> + <location filename="../Debugger/DebugUI.py" line="1555"/> <source>Coverage of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1527"/> + <location filename="../Debugger/DebugUI.py" line="1542"/> <source>Coverage of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <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="1659"/> + <location filename="../Debugger/DebugUI.py" line="1674"/> <source>Profile of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1646"/> + <location filename="../Debugger/DebugUI.py" line="1661"/> <source>Profile of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <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="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1062"/> <source>The program has terminated with an exit status of {0}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1051"/> + <location filename="../Debugger/DebugUI.py" line="1066"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1057"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1035"/> + <location filename="../Debugger/DebugUI.py" line="1050"/> <source>The program has terminated with an exit status of {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1038"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>"{0}" has terminated with an exit status of {1}.</source> <translation type="unfinished"></translation> </message> @@ -5823,7 +5881,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1216"/> + <location filename="../Debugger/DebugUI.py" line="1231"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> @@ -7244,7 +7302,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> + <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> @@ -7677,92 +7735,92 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> <source>Apply</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> <source>Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> <source>Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> <source>Discard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> <source>Ignore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> <source>No</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> <source>No to all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> <source>Ok</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> <source>Restore defaults</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> <source>Retry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> <source>Save all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> <source>Yes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> <source>Yes to all</source> <translation type="unfinished"></translation> </message> @@ -9777,7 +9835,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> <source>Add from installed APIs</source> <translation type="unfinished"></translation> </message> @@ -9787,7 +9845,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> <source>Add from Plugin APIs</source> <translation type="unfinished"></translation> </message> @@ -9797,7 +9855,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> <source>Compile APIs</source> <translation type="unfinished"></translation> </message> @@ -10840,7 +10898,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> <source>Font</source> <translation type="unfinished"></translation> </message> @@ -10850,7 +10908,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> <source>Fill to end of line</source> <translation type="unfinished"></translation> </message> @@ -12361,7 +12419,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> <source>Disabled</source> <translation type="unfinished"></translation> </message> @@ -13070,7 +13128,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.py" line="339"/> + <location filename="../UI/EmailDialog.ui" line="13"/> <source>Send bug report</source> <translation type="unfinished"></translation> </message> @@ -14463,12 +14521,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> <source>Host</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> <source>Permission</source> <translation type="unfinished"></translation> </message> @@ -14483,7 +14541,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> <source>Geolocation</source> <translation type="unfinished"></translation> </message> @@ -15605,7 +15663,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> <source><no flash cookie selected></source> <translation type="unfinished"></translation> </message> @@ -15615,7 +15673,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> <source>Origin:</source> <translation type="unfinished"></translation> </message> @@ -15650,7 +15708,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> <source>Remove Cookie</source> <translation type="unfinished"></translation> </message> @@ -16075,7 +16133,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> <source>GreaseMonkey Script Installation</source> <translation type="unfinished"></translation> </message> @@ -18174,7 +18232,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Open File</source> <translation type="unfinished"></translation> </message> @@ -18954,7 +19012,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2380"/> + <location filename="../Helpviewer/HelpWindow.py" line="2381"/> <source>Full Screen</source> <translation type="unfinished"></translation> </message> @@ -19189,370 +19247,365 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1355"/> + <location filename="../Helpviewer/HelpWindow.py" line="1356"/> <source>Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1350"/> - <source>&Clear private data</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Helpviewer/HelpWindow.py" line="1357"/> + <location filename="../Helpviewer/HelpWindow.py" line="1358"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear icons database</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear &icons database</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1372"/> + <location filename="../Helpviewer/HelpWindow.py" line="1373"/> <source>Clear the database of favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1374"/> + <location filename="../Helpviewer/HelpWindow.py" line="1375"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search Engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search &Engines...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1388"/> + <location filename="../Helpviewer/HelpWindow.py" line="1389"/> <source>Configure the available search engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1390"/> + <location filename="../Helpviewer/HelpWindow.py" line="1391"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1406"/> + <location filename="../Helpviewer/HelpWindow.py" line="1407"/> <source>Manage the saved passwords</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1408"/> + <location filename="../Helpviewer/HelpWindow.py" line="1409"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>Ad Block</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>&Ad Block...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1422"/> + <location filename="../Helpviewer/HelpWindow.py" line="1423"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1424"/> + <location filename="../Helpviewer/HelpWindow.py" line="1425"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1475"/> + <location filename="../Helpviewer/HelpWindow.py" line="1476"/> <source>Show the network monitor dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1604"/> + <location filename="../Helpviewer/HelpWindow.py" line="1605"/> <source>&File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1627"/> + <location filename="../Helpviewer/HelpWindow.py" line="1628"/> <source>&Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1635"/> + <location filename="../Helpviewer/HelpWindow.py" line="1636"/> <source>&View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1646"/> + <location filename="../Helpviewer/HelpWindow.py" line="1647"/> <source>Text Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1652"/> + <location filename="../Helpviewer/HelpWindow.py" line="1653"/> <source>&Go</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1667"/> + <location filename="../Helpviewer/HelpWindow.py" line="1668"/> <source>H&istory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1675"/> + <location filename="../Helpviewer/HelpWindow.py" line="1676"/> <source>&Bookmarks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1690"/> + <location filename="../Helpviewer/HelpWindow.py" line="1691"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1732"/> + <location filename="../Helpviewer/HelpWindow.py" line="1733"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1741"/> + <location filename="../Helpviewer/HelpWindow.py" line="1742"/> <source>&Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1752"/> + <location filename="../Helpviewer/HelpWindow.py" line="1753"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1763"/> + <location filename="../Helpviewer/HelpWindow.py" line="1764"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1789"/> + <location filename="../Helpviewer/HelpWindow.py" line="1790"/> <source>Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1794"/> + <location filename="../Helpviewer/HelpWindow.py" line="1795"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1803"/> + <location filename="../Helpviewer/HelpWindow.py" line="1804"/> <source>Find</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1811"/> + <location filename="../Helpviewer/HelpWindow.py" line="1812"/> <source>Filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1816"/> + <location filename="../Helpviewer/HelpWindow.py" line="1817"/> <source>Filtered by: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1823"/> + <location filename="../Helpviewer/HelpWindow.py" line="1824"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1843"/> + <location filename="../Helpviewer/HelpWindow.py" line="1844"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1850"/> + <location filename="../Helpviewer/HelpWindow.py" line="1851"/> <source>Go</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2171"/> + <location filename="../Helpviewer/HelpWindow.py" line="2172"/> <source>Saved Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2410"/> + <location filename="../Helpviewer/HelpWindow.py" line="2411"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. HTML5 offline storage will be deactivated. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2690"/> + <location filename="../Helpviewer/HelpWindow.py" line="2691"/> <source>Could not find an associated content.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2813"/> + <location filename="../Helpviewer/HelpWindow.py" line="2814"/> <source>Updating search index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2883"/> + <location filename="../Helpviewer/HelpWindow.py" line="2884"/> <source>Looking for Documentation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2918"/> + <location filename="../Helpviewer/HelpWindow.py" line="2919"/> <source>Unfiltered</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2937"/> + <location filename="../Helpviewer/HelpWindow.py" line="2938"/> <source>Help Engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3452"/> - <source>ISO</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Helpviewer/HelpWindow.py" line="3453"/> - <source>Windows</source> + <source>ISO</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3454"/> - <source>ISCII</source> + <source>Windows</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3455"/> - <source>Unicode</source> + <source>ISCII</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3456"/> - <source>Other</source> + <source>Unicode</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3457"/> + <source>Other</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="3458"/> <source>IBM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3479"/> + <location filename="../Helpviewer/HelpWindow.py" line="3480"/> <source>Default Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1486"/> + <location filename="../Helpviewer/HelpWindow.py" line="1487"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1490"/> + <location filename="../Helpviewer/HelpWindow.py" line="1491"/> <source>Shows the downloads window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1492"/> + <location filename="../Helpviewer/HelpWindow.py" line="1493"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1903"/> + <location filename="../Helpviewer/HelpWindow.py" line="1904"/> <source>VirusTotal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1907"/> + <location filename="../Helpviewer/HelpWindow.py" line="1908"/> <source>Scan current site</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source>VirusTotal Scan</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1507"/> + <location filename="../Helpviewer/HelpWindow.py" line="1508"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1509"/> + <location filename="../Helpviewer/HelpWindow.py" line="1510"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1525"/> + <location filename="../Helpviewer/HelpWindow.py" line="1526"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1527"/> + <location filename="../Helpviewer/HelpWindow.py" line="1528"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1835"/> + <location filename="../Helpviewer/HelpWindow.py" line="1836"/> <source>Tools</source> <translation type="unfinished"></translation> </message> @@ -19569,47 +19622,47 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>Network Monitor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>&Network Monitor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1477"/> + <location filename="../Helpviewer/HelpWindow.py" line="1478"/> <source><b>Network Monitor...</b><p>Shows the network monitor dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2387"/> + <location filename="../Helpviewer/HelpWindow.py" line="2388"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1540"/> + <location filename="../Helpviewer/HelpWindow.py" line="1541"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1542"/> + <location filename="../Helpviewer/HelpWindow.py" line="1543"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1719"/> + <location filename="../Helpviewer/HelpWindow.py" line="1720"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> @@ -19639,42 +19692,42 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>Synchronize data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>&Synchronize Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1556"/> + <location filename="../Helpviewer/HelpWindow.py" line="1557"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1558"/> + <location filename="../Helpviewer/HelpWindow.py" line="1559"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>ClickToFlash</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>&ClickToFlash...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1439"/> + <location filename="../Helpviewer/HelpWindow.py" line="1440"/> <source>Configure ClickToFlash whitelist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1441"/> + <location filename="../Helpviewer/HelpWindow.py" line="1442"/> <source><b>ClickToFlash...</b><p>Opens a dialog to configure the ClickToFlash whitelist.</p></source> <translation type="unfinished"></translation> </message> @@ -19719,22 +19772,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1458"/> + <location filename="../Helpviewer/HelpWindow.py" line="1459"/> <source>Manage the saved SSL certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1460"/> + <location filename="../Helpviewer/HelpWindow.py" line="1461"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> @@ -19779,7 +19832,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2893"/> + <location filename="../Helpviewer/HelpWindow.py" line="2894"/> <source>eric6 Web Browser</source> <translation type="unfinished"></translation> </message> @@ -19794,32 +19847,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2077"/> + <location filename="../Helpviewer/HelpWindow.py" line="2078"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3743"/> + <location filename="../Helpviewer/HelpWindow.py" line="3744"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> @@ -19864,22 +19917,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1574"/> + <location filename="../Helpviewer/HelpWindow.py" line="1575"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1576"/> + <location filename="../Helpviewer/HelpWindow.py" line="1577"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> @@ -21668,7 +21721,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> <source>Add Sub-repository</source> <translation type="unfinished"></translation> </message> @@ -22753,7 +22806,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> <source>Resolved</source> <translation type="unfinished"></translation> </message> @@ -22763,7 +22816,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> <source>Unresolved</source> <translation type="unfinished"></translation> </message> @@ -23340,7 +23393,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> <source>Revision</source> <translation type="unfinished"></translation> </message> @@ -23619,7 +23672,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> <source>Mercurial Log</source> <translation type="unfinished"></translation> </message> @@ -23659,17 +23712,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> <source>Revision</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> <source>Author</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> <source>Message</source> <translation type="unfinished"></translation> </message> @@ -27495,7 +27548,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> <source>Mercurial Status</source> <translation type="unfinished"></translation> </message> @@ -27636,7 +27689,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> <source>Commit</source> <translation type="unfinished"></translation> </message> @@ -27756,7 +27809,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> <source>Differences</source> <translation type="unfinished"></translation> </message> @@ -28516,7 +28569,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> + <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> @@ -34371,92 +34424,92 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> <source>Apply</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> <source>Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> <source>Ignore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> <source>Save all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> <source>Discard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> <source>Yes to all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> <source>Ok</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> <source>No</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> <source>No to all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> <source>Retry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> <source>Restore defaults</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> <source>Yes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> <source>Close</source> <translation type="unfinished"></translation> </message> @@ -36146,7 +36199,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> <source>Not Cached Hosts</source> <translation type="unfinished"></translation> </message> @@ -36254,7 +36307,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> <source>Visual Selection</source> <translation type="unfinished"></translation> </message> @@ -36924,7 +36977,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> <source>Saved Passwords</source> <translation type="unfinished"></translation> </message> @@ -39308,7 +39361,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> @@ -39328,7 +39381,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> @@ -39348,7 +39401,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source>Create Package List</source> <translation type="unfinished"></translation> </message> @@ -39358,7 +39411,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source>Create Plugin Archive</source> <translation type="unfinished"></translation> </message> @@ -39438,87 +39491,87 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>Search New Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>There were no new files found to be added.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source>Version Control System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4488"/> + <location filename="../Project/Project.py" line="4489"/> <source>Coverage Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4538"/> + <location filename="../Project/Project.py" line="4539"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Please select a profile file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Include module names?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4733"/> + <location filename="../Project/Project.py" line="4734"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4793"/> + <location filename="../Project/Project.py" line="4794"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4801"/> + <location filename="../Project/Project.py" line="4802"/> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> + <location filename="../Project/Project.py" line="4816"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4854"/> + <location filename="../Project/Project.py" line="4855"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4923"/> + <location filename="../Project/Project.py" line="4924"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -39583,12 +39636,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4358"/> + <location filename="../Project/Project.py" line="4359"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -39623,12 +39676,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4828"/> + <location filename="../Project/Project.py" line="4829"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4877"/> + <location filename="../Project/Project.py" line="4878"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation type="unfinished"></translation> </message> @@ -41639,7 +41692,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="349"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> <source>Coverage</source> <translation type="unfinished"></translation> </message> @@ -41718,7 +41771,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="345"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> @@ -41726,7 +41779,7 @@ <context> <name>PyProfileDialog</name> <message> - <location filename="../DataViews/PyProfileDialog.py" line="233"/> + <location filename="../DataViews/PyProfileDialog.ui" line="20"/> <source>Profile Results</source> <translation type="unfinished"></translation> </message> @@ -46230,7 +46283,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> <source>Remove Filters</source> <translation type="unfinished"></translation> </message> @@ -46240,7 +46293,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> <source>Remove Attributes</source> <translation type="unfinished"></translation> </message> @@ -47703,7 +47756,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> <source>Send Referer Whitelist</source> <translation type="unfinished"></translation> </message> @@ -47766,129 +47819,129 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="194"/> + <location filename="../QScintilla/Shell.py" line="197"/> <source>Passive >>> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="209"/> + <location filename="../QScintilla/Shell.py" line="212"/> <source>Start</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="214"/> + <location filename="../QScintilla/Shell.py" line="217"/> <source>History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="215"/> + <location filename="../QScintilla/Shell.py" line="218"/> <source>Select entry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="216"/> + <location filename="../QScintilla/Shell.py" line="219"/> <source>Show</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="228"/> + <location filename="../QScintilla/Shell.py" line="231"/> <source>Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="221"/> + <location filename="../QScintilla/Shell.py" line="224"/> <source>Cut</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="222"/> + <location filename="../QScintilla/Shell.py" line="225"/> <source>Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="223"/> + <location filename="../QScintilla/Shell.py" line="226"/> <source>Paste</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../QScintilla/Shell.py" line="232"/> + <source>Reset</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="233"/> + <source>Reset and Clear</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="238"/> + <source>Configure...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="599"/> + <source>Select History</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="599"/> + <source>Select the history entry to execute (most recent shown last).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="662"/> + <source>Passive Debug Mode</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="663"/> + <source> +Not connected</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="665"/> + <source>No.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="667"/> + <source>{0} on {1}, {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="805"/> + <source>StdOut: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="813"/> + <source>StdErr: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1421"/> + <source>Shell language "{0}" not supported. +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1706"/> + <source>Drop Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1706"/> + <source><p><b>{0}</b> is not a file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../QScintilla/Shell.py" line="229"/> - <source>Reset</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="230"/> - <source>Reset and Clear</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="235"/> - <source>Configure...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="591"/> - <source>Select History</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="591"/> - <source>Select the history entry to execute (most recent shown last).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="642"/> - <source>Passive Debug Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="643"/> - <source> -Not connected</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="645"/> - <source>No.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="647"/> - <source>{0} on {1}, {2}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="785"/> - <source>StdOut: {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="793"/> - <source>StdErr: {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="1401"/> - <source>Shell language "{0}" not supported. -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="1686"/> - <source>Drop Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="1686"/> - <source><p><b>{0}</b> is not a file.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="226"/> <source>Find</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="686"/> + <location filename="../QScintilla/Shell.py" line="706"/> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -47896,26 +47949,26 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="718"/> + <location filename="../QScintilla/Shell.py" line="738"/> <source>Unspecified syntax error. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="696"/> + <location filename="../QScintilla/Shell.py" line="716"/> <source>Exception "{0}" {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="720"/> + <location filename="../QScintilla/Shell.py" line="740"/> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="743"/> + <location filename="../QScintilla/Shell.py" line="763"/> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished"></translation> @@ -48903,7 +48956,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Snapshot/SnapWidget.py" line="531"/> + <location filename="../Snapshot/SnapWidget.ui" line="20"/> <source>eric6 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -51339,7 +51392,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> <source>Subversion Diff</source> <translation type="unfinished"></translation> </message> @@ -51641,17 +51694,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> <source>Revision</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> <source>Author</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> <source>Message</source> <translation type="unfinished"></translation> </message> @@ -52103,7 +52156,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation type="unfinished"></translation> </message> @@ -52195,7 +52248,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation type="unfinished"></translation> </message> @@ -53401,7 +53454,7 @@ <context> <name>SvnStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> <source>Subversion Status</source> <translation type="unfinished"></translation> </message> @@ -53677,7 +53730,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> <source>Commit</source> <translation type="unfinished"></translation> </message> @@ -56978,17 +57031,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Extracting project tasks...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="707"/> + <location filename="../Tasks/TaskViewer.py" line="706"/> <source>Extracting project tasks... {0}</source> <translation type="unfinished"></translation> @@ -57014,12 +57067,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="702"/> + <location filename="../Tasks/TaskViewer.py" line="701"/> <source>Tasks</source> <translation type="unfinished"></translation> </message> @@ -58858,7 +58911,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="400"/> + <location filename="../PyUnit/UnittestDialog.ui" line="14"/> <source>Unittest</source> <translation type="unfinished"></translation> </message> @@ -59722,7 +59775,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <source>Report Bug</source> <translation type="unfinished"></translation> </message> @@ -59762,7 +59815,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2657"/> + <location filename="../UI/UserInterface.py" line="2676"/> <source>Unittest</source> <translation type="unfinished"></translation> </message> @@ -59822,7 +59875,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>Unittest Project</source> <translation type="unfinished"></translation> </message> @@ -60107,7 +60160,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5544"/> + <location filename="../UI/UserInterface.py" line="5571"/> <source>Export Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -60127,7 +60180,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Import Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -60147,609 +60200,609 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Activate current editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Alt+Shift+E</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Show next</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Ctrl+Alt+Tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Show previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Shift+Ctrl+Alt+Tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Switch between tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Ctrl+1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>Plugin Infos</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>&Plugin Infos...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2224"/> + <location filename="../UI/UserInterface.py" line="2241"/> <source>Show Plugin Infos</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2225"/> + <location filename="../UI/UserInterface.py" line="2242"/> <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="2238"/> + <location filename="../UI/UserInterface.py" line="2255"/> <source>Install Plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2233"/> + <location filename="../UI/UserInterface.py" line="2250"/> <source>&Install Plugins...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239"/> + <location filename="../UI/UserInterface.py" line="2256"/> <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="2251"/> + <location filename="../UI/UserInterface.py" line="2268"/> <source>Uninstall Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2246"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>&Uninstall Plugin...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2252"/> + <location filename="../UI/UserInterface.py" line="2269"/> <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="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin Repository</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin &Repository...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2281"/> <source>Show Plugins available for download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2283"/> <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="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2294"/> + <location filename="../UI/UserInterface.py" line="2311"/> <source>Open Qt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2324"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Open PyQt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>Eric API Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>&Eric API Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2408"/> - <source>Open Eric API Documentation</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2425"/> + <source>Open Eric API Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2442"/> <source>PySide Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>Py&Side Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2446"/> <source>Open PySide Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2472"/> - <source>&Unittest</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2489"/> + <source>&Unittest</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506"/> <source>E&xtras</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2494"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source>Wi&zards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2502"/> + <location filename="../UI/UserInterface.py" line="2519"/> <source>Select Tool Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2510"/> + <location filename="../UI/UserInterface.py" line="2527"/> <source>Se&ttings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2533"/> + <location filename="../UI/UserInterface.py" line="2552"/> <source>&Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2577"/> <source>&Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2569"/> + <location filename="../UI/UserInterface.py" line="2588"/> <source>P&lugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2597"/> <source>Configure...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583"/> + <location filename="../UI/UserInterface.py" line="2602"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2656"/> + <location filename="../UI/UserInterface.py" line="2675"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2658"/> + <location filename="../UI/UserInterface.py" line="2677"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2660"/> + <location filename="../UI/UserInterface.py" line="2679"/> <source>Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2661"/> + <location filename="../UI/UserInterface.py" line="2680"/> <source>Plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2814"/> + <location filename="../UI/UserInterface.py" line="2841"/> <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="2821"/> + <location filename="../UI/UserInterface.py" line="2848"/> <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="2828"/> + <location filename="../UI/UserInterface.py" line="2855"/> <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="2835"/> + <location filename="../UI/UserInterface.py" line="2862"/> <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="2842"/> + <location filename="../UI/UserInterface.py" line="2869"/> <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="2849"/> + <location filename="../UI/UserInterface.py" line="2876"/> <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="2924"/> + <location filename="../UI/UserInterface.py" line="2951"/> <source>External Tools/{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3021"/> + <location filename="../UI/UserInterface.py" line="3048"/> <source><h3>Version Numbers</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360"/> + <location filename="../UI/UserInterface.py" line="6413"/> <source></table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <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="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>Restart application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>The application needs to be restarted. Do it now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3435"/> + <location filename="../UI/UserInterface.py" line="3462"/> <source>Configure Tool Groups ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3439"/> + <location filename="../UI/UserInterface.py" line="3466"/> <source>Configure current Tool Group ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3390"/> + <location filename="../UI/UserInterface.py" line="3417"/> <source>&Builtin Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3407"/> + <location filename="../UI/UserInterface.py" line="3434"/> <source>&Plugin Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3558"/> + <location filename="../UI/UserInterface.py" line="3585"/> <source>&Show all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3560"/> + <location filename="../UI/UserInterface.py" line="3587"/> <source>&Hide all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <source>Problem</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <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="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4295"/> + <location filename="../UI/UserInterface.py" line="4322"/> <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="4362"/> + <location filename="../UI/UserInterface.py" line="4389"/> <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="4413"/> + <location filename="../UI/UserInterface.py" line="4440"/> <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="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <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="4455"/> + <location filename="../UI/UserInterface.py" line="4482"/> <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="4475"/> + <location filename="../UI/UserInterface.py" line="4502"/> <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="4523"/> + <location filename="../UI/UserInterface.py" line="4550"/> <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="4578"/> + <location filename="../UI/UserInterface.py" line="4605"/> <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="4599"/> + <location filename="../UI/UserInterface.py" line="4626"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>External Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4717"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4738"/> + <location filename="../UI/UserInterface.py" line="4765"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <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="4830"/> + <location filename="../UI/UserInterface.py" line="4857"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <source>Documentation Missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <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="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source>Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5039"/> + <location filename="../UI/UserInterface.py" line="5066"/> <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="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <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="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <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="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <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="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <source>Read session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>&Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6196"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Error during updates check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Could not perform updates check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6346"/> + <location filename="../UI/UserInterface.py" line="6399"/> <source><h3>Available versions</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>First time usage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2383"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384"/> + <location filename="../UI/UserInterface.py" line="2401"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2403"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6205"/> + <location filename="../UI/UserInterface.py" line="6258"/> <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="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <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> @@ -60835,12 +60888,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4696"/> <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="6406"/> + <location filename="../UI/UserInterface.py" line="6459"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -61060,7 +61113,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2538"/> + <location filename="../UI/UserInterface.py" line="2557"/> <source>&Windows</source> <translation type="unfinished"></translation> </message> @@ -61135,22 +61188,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308"/> + <location filename="../UI/UserInterface.py" line="2325"/> <source>Open Qt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2860"/> + <location filename="../UI/UserInterface.py" line="2887"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> @@ -61195,62 +61248,62 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2343"/> + <location filename="../UI/UserInterface.py" line="2360"/> <source>Open PyQt5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5105"/> + <location filename="../UI/UserInterface.py" line="5132"/> <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="2295"/> + <location filename="../UI/UserInterface.py" line="2312"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2326"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2325"/> + <location filename="../UI/UserInterface.py" line="2342"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345"/> + <location filename="../UI/UserInterface.py" line="2362"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368"/> + <location filename="../UI/UserInterface.py" line="2385"/> <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="2431"/> + <location filename="../UI/UserInterface.py" line="2448"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -61270,7 +61323,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6191"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -61335,32 +61388,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2410"/> + <location filename="../UI/UserInterface.py" line="2427"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <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="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished"></translation> </message> @@ -61370,17 +61423,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3410"/> + <location filename="../UI/UserInterface.py" line="3437"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482"/> + <location filename="../UI/UserInterface.py" line="3509"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6154"/> + <location filename="../UI/UserInterface.py" line="6207"/> <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> @@ -61404,6 +61457,16 @@ <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="2189"/> + <source>Clear private data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <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> </context> <context> <name>UserPropertiesDialog</name> @@ -64655,17 +64718,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065"/> + <location filename="../ViewManager/ViewManager.py" line="5066"/> <source>&Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5059"/> + <location filename="../ViewManager/ViewManager.py" line="5060"/> <source>&Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5062"/> + <location filename="../ViewManager/ViewManager.py" line="5063"/> <source>&Edit...</source> <translation type="unfinished"></translation> </message> @@ -65227,27 +65290,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>Edit Spelling Dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6242"/> + <location filename="../ViewManager/ViewManager.py" line="6243"/> <source>Editing {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6227"/> + <location filename="../ViewManager/ViewManager.py" line="6228"/> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6254"/> + <location filename="../ViewManager/ViewManager.py" line="6255"/> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished"></translation> </message> @@ -67344,7 +67407,7 @@ <context> <name>WebBrowserWindow</name> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3153"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3154"/> <source>eric6 Web Browser</source> <translation type="unfinished"></translation> </message> @@ -67364,7 +67427,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1714"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1715"/> <source>JavaScript Console</source> <translation type="unfinished"></translation> </message> @@ -67421,7 +67484,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>New Private Window</source> <translation type="unfinished"></translation> </message> @@ -67447,7 +67510,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>Open File</source> <translation type="unfinished"></translation> </message> @@ -68351,7 +68414,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2662"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2663"/> <source>Full Screen</source> <translation type="unfinished"></translation> </message> @@ -68666,525 +68729,520 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1504"/> <source>Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/> - <source>&Clear private data</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1506"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear icons database</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear &icons database</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1521"/> <source>Clear the database of favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1522"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1523"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1532"/> <source>Manage saved Favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1538"/> <source>Show a dialog to manage the saved favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1539"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/> <source><b>Manage saved Favicons</b><p>This shows a dialog to manage the saved favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search Engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search &Engines...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1553"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1554"/> <source>Configure the available search engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1556"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1572"/> <source>Manage the saved passwords</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1573"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1574"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>Ad Block</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>&Ad Block...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1588"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1589"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1590"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1604"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1605"/> <source>Manage the accepted SSL certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1606"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/> <source><b>Manage SSL Certificate Errors...</b><p>Opens a dialog to manage the accepted SSL certificate errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1616"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1617"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1620"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1621"/> <source>Shows the downloads window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1622"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1637"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1638"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1639"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1658"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1672"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>Synchronize data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>&Synchronize Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1686"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1689"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1705"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1706"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1718"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/> <source>Toggle the JavaScript console window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1720"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1721"/> <source><b>JavaScript Console</b><p>This toggles the JavaScript console window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1765"/> <source>&File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1787"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1788"/> <source>&Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1804"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1805"/> <source>&View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1812"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1813"/> <source>Text Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1818"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1819"/> <source>&Go</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1833"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/> <source>H&istory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1845"/> <source>&Bookmarks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1861"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1887"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1888"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1900"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1901"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1907"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1908"/> <source>&Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1920"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1921"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1931"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1932"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1959"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1960"/> <source>Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1971"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1972"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1980"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/> <source>Find</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1988"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1989"/> <source>Filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1993"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1994"/> <source>Filtered by: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2000"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2001"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2011"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2012"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2020"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2026"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2027"/> <source>Go</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2080"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/> <source>VirusTotal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2084"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2085"/> <source>Scan current site</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>OK</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2305"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2306"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p><p>It is based on QtWebEngine {1} and Chrome {2}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2425"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2426"/> <source>Saved Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2669"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2670"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2970"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2971"/> <source>Could not find an associated content.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3073"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3074"/> <source>Updating search index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3143"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3144"/> <source>Looking for Documentation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3178"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3179"/> <source>Unfiltered</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3197"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3198"/> <source>Help Engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3724"/> - <source>ISO</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3725"/> - <source>Windows</source> + <source>ISO</source> <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3726"/> - <source>ISCII</source> + <source>Windows</source> <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3727"/> - <source>Unicode</source> + <source>ISCII</source> <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3728"/> - <source>Other</source> + <source>Unicode</source> <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3729"/> + <source>Other</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3730"/> <source>IBM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3751"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3752"/> <source>Default Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source>VirusTotal Scan</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4043"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4044"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1729"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1730"/> <source>Tab Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/> <source>Shows the tab manager window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1735"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/> <source><b>Tab Manager</b><p>Shows the tab manager window.</p></source> <translation type="unfinished"></translation> </message> @@ -69220,7 +69278,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>HTML Files (*.html *.htm *.mhtml);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_es.ts Tue Aug 23 19:02:43 2016 +0200 +++ b/i18n/eric6_es.ts Wed Aug 24 20:00:29 2016 +0200 @@ -2739,6 +2739,64 @@ </message> </context> <context> + <name>ClearPrivateDataDialog</name> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="14"/> + <source>Clear Private Data</source> + <translation type="unfinished">Limpiar Datos Privados</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="23"/> + <source>Select to clear the list of recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="26"/> + <source>Recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="36"/> + <source>Select to clear the list of recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="39"/> + <source>Recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="49"/> + <source>Select to clear the list of recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="52"/> + <source>Recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="62"/> + <source>Select to clear the debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="65"/> + <source>Debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="75"/> + <source>Select to clear the shell histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="78"/> + <source>Shell histories</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>ClickToFlash</name> <message> <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.ui" line="43"/> @@ -5207,7 +5265,7 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1765"/> + <location filename="../Debugger/DebugUI.py" line="1780"/> <source>Run Script</source> <translation>Ejecutar Script</translation> </message> @@ -5227,7 +5285,7 @@ <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="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>Run Project</source> <translation>Ejecutar Proyecto</translation> </message> @@ -5327,7 +5385,7 @@ <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="1887"/> + <location filename="../Debugger/DebugUI.py" line="1902"/> <source>Debug Script</source> <translation>Depurar Script</translation> </message> @@ -5347,7 +5405,7 @@ <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="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <source>Debug Project</source> <translation>Depurar proyecto</translation> </message> @@ -5497,7 +5555,7 @@ <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="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> <translation>Evaluar</translation> </message> @@ -5512,7 +5570,7 @@ <translation>Evaluar en el contexto actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> <translation>Ejecutar</translation> </message> @@ -5670,62 +5728,62 @@ <translation>Depurar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1073"/> + <location filename="../Debugger/DebugUI.py" line="1088"/> <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="1110"/> + <location filename="../Debugger/DebugUI.py" line="1125"/> <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="1230"/> + <location filename="../Debugger/DebugUI.py" line="1245"/> <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="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <source>Breakpoint Condition Error</source> <translation>Error en la condición del Breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1540"/> + <location filename="../Debugger/DebugUI.py" line="1555"/> <source>Coverage of Project</source> <translation>Cobertura del Proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1527"/> + <location filename="../Debugger/DebugUI.py" line="1542"/> <source>Coverage of Script</source> <translation>Cobertura del Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <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="1659"/> + <location filename="../Debugger/DebugUI.py" line="1674"/> <source>Profile of Project</source> <translation>Profiling del proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1646"/> + <location filename="../Debugger/DebugUI.py" line="1661"/> <source>Profile of Script</source> <translation>Profiling del script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <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="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> <translation>Introduzca la sentencia a evaluar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> <translation>Introduzca la sentencia a ejecutar</translation> </message> @@ -5735,12 +5793,12 @@ <translation><b>Evaluar</b><p>Evaluar una expresión en el contexto actual del programa en depuración. El resultado se muestra en la ventana de shell.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <source>Watch Expression Error</source> <translation>Error en la Expresión a Examinar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1375"/> + <location filename="../Debugger/DebugUI.py" line="1390"/> <source>Watch expression already exists</source> <translation>La expresión a Examinar ya existe</translation> </message> @@ -5777,76 +5835,76 @@ <translation>Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1021"/> + <location filename="../Debugger/DebugUI.py" line="1036"/> <source><p>The program has terminated with an exit status of {0}.</p></source> <translation><p>El programa ha terminado con un estado de salida {0}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1026"/> + <location filename="../Debugger/DebugUI.py" line="1041"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> <translation><p><b>{0}</b> ha terminado con un estado de salida {1}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1092"/> + <location filename="../Debugger/DebugUI.py" line="1107"/> <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="1151"/> - <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="1166"/> + <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="1181"/> <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="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <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="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <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="1365"/> + <location filename="../Debugger/DebugUI.py" line="1380"/> <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="1369"/> + <location filename="../Debugger/DebugUI.py" line="1384"/> <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="1047"/> + <location filename="../Debugger/DebugUI.py" line="1062"/> <source>The program has terminated with an exit status of {0}. </source> <translation>El programa ha terminado con un estado de salida {0}. </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1051"/> + <location filename="../Debugger/DebugUI.py" line="1066"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation>{0} ha terminado con un estado de salida {1}. </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1057"/> <source>Program terminated</source> <translation>Programa terminado</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1035"/> + <location filename="../Debugger/DebugUI.py" line="1050"/> <source>The program has terminated with an exit status of {0}.</source> <translation>El programa ha terminado con un estado de salida de {0}.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1038"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>"{0}" has terminated with an exit status of {1}.</source> <translation>"{0}" ha terminado con un estado de salida de {1}.</translation> </message> @@ -5866,7 +5924,7 @@ <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="1216"/> + <location filename="../Debugger/DebugUI.py" line="1231"/> <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> @@ -18261,7 +18319,7 @@ <translation><b>Nueva Ventana</b><p>Abre una nueva ventana del navegador de ayuda.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Open File</source> <translation>Abrir archivo</translation> </message> @@ -18714,72 +18772,72 @@ <translation><b>Disminuir Zoom</b><p>Disminuir el zoom en el texto. Esto provoca que el texto sea menor.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1604"/> + <location filename="../Helpviewer/HelpWindow.py" line="1605"/> <source>&File</source> <translation>&Archivo</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1627"/> + <location filename="../Helpviewer/HelpWindow.py" line="1628"/> <source>&Edit</source> <translation>&Edición</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1635"/> + <location filename="../Helpviewer/HelpWindow.py" line="1636"/> <source>&View</source> <translation>&Ver</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1652"/> + <location filename="../Helpviewer/HelpWindow.py" line="1653"/> <source>&Go</source> <translation>&Ir</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1667"/> + <location filename="../Helpviewer/HelpWindow.py" line="1668"/> <source>H&istory</source> <translation>&Historial</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1675"/> + <location filename="../Helpviewer/HelpWindow.py" line="1676"/> <source>&Bookmarks</source> <translation>&Marcadores</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1752"/> + <location filename="../Helpviewer/HelpWindow.py" line="1753"/> <source>&Help</source> <translation>A&yuda</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1763"/> + <location filename="../Helpviewer/HelpWindow.py" line="1764"/> <source>File</source> <translation>Archivo</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1789"/> + <location filename="../Helpviewer/HelpWindow.py" line="1790"/> <source>Edit</source> <translation>Edición</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1794"/> + <location filename="../Helpviewer/HelpWindow.py" line="1795"/> <source>View</source> <translation>Ver</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1803"/> + <location filename="../Helpviewer/HelpWindow.py" line="1804"/> <source>Find</source> <translation>Buscar</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1843"/> + <location filename="../Helpviewer/HelpWindow.py" line="1844"/> <source>Help</source> <translation>Ayuda</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1850"/> + <location filename="../Helpviewer/HelpWindow.py" line="1851"/> <source>Go</source> <translation>Ir a</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Archivos de Ayuda (*.html *.htm);;Archivos PDF (*.pdf);;Archivos CHM (*.chm);;Todos los Archivos (*)</translation> </message> @@ -18849,17 +18907,17 @@ <translation>Ctrl+1</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear icons database</source> <translation>Limpiar base de datos de iconos</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1372"/> + <location filename="../Helpviewer/HelpWindow.py" line="1373"/> <source>Clear the database of favicons</source> <translation>Limpiar base de datos de favicons</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1374"/> + <location filename="../Helpviewer/HelpWindow.py" line="1375"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>Limpiar base de datos de iconos</b><p>Limpia la base de datos de favicons de URLs previamente visitadas.</p></translation> </message> @@ -18939,22 +18997,22 @@ <translation><b>Gestionar Documentos de QtHelp</b><p>Muestra un diálogo para gestionar el conjunto de documentación de QtHelp.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1741"/> + <location filename="../Helpviewer/HelpWindow.py" line="1742"/> <source>&Window</source> <translation>&Ventana</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1811"/> + <location filename="../Helpviewer/HelpWindow.py" line="1812"/> <source>Filter</source> <translation>Filtro</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1816"/> + <location filename="../Helpviewer/HelpWindow.py" line="1817"/> <source>Filtered by: </source> <translation>Filtrado por:</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2690"/> + <location filename="../Helpviewer/HelpWindow.py" line="2691"/> <source>Could not find an associated content.</source> <translation>No se ha podido encontrar un contenido asociado.</translation> </message> @@ -19019,22 +19077,22 @@ <translation><b>Reindexar Documentación</b><p>Reindexa el conjunto de documentación.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2813"/> + <location filename="../Helpviewer/HelpWindow.py" line="2814"/> <source>Updating search index</source> <translation>Actualizando índice de búsqueda</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2883"/> + <location filename="../Helpviewer/HelpWindow.py" line="2884"/> <source>Looking for Documentation...</source> <translation>Buscando Documentación...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2918"/> + <location filename="../Helpviewer/HelpWindow.py" line="2919"/> <source>Unfiltered</source> <translation>Sin filtrar</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2937"/> + <location filename="../Helpviewer/HelpWindow.py" line="2938"/> <source>Help Engine</source> <translation>Motor de Ayuda</translation> </message> @@ -19054,7 +19112,7 @@ <translation><b>Navegación Privada</b><p>Habilita navegación privada. En este modo, el historial no queda registrado.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2380"/> + <location filename="../Helpviewer/HelpWindow.py" line="2381"/> <source>Full Screen</source> <translation>Pantalla Completa</translation> </message> @@ -19084,37 +19142,37 @@ <translation>&Reindexar Documentación</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1355"/> + <location filename="../Helpviewer/HelpWindow.py" line="1356"/> <source>Clear private data</source> <translation>Limpiar Datos Privados</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="1350"/> <source>&Clear private data</source> - <translation>Li&mpiar Datos Privados</translation> - </message> - <message> - <location filename="../Helpviewer/HelpWindow.py" line="1357"/> + <translation type="obsolete">Li&mpiar Datos Privados</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="1358"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Limpiar datos privados</b><p>Limpia los datos privados como historial de navegación, de búsqueda o base de datos de favicons.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear &icons database</source> <translation>Limpiar base de datos de &iconos</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1475"/> + <location filename="../Helpviewer/HelpWindow.py" line="1476"/> <source>Show the network monitor dialog</source> <translation>Muestra el diálogo de monitor de red</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1690"/> + <location filename="../Helpviewer/HelpWindow.py" line="1691"/> <source>&Settings</source> <translation>Con&figuración</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1732"/> + <location filename="../Helpviewer/HelpWindow.py" line="1733"/> <source>&Tools</source> <translation>&Herramientas</translation> </message> @@ -19179,7 +19237,7 @@ <translation><b>Cookies</b><p>Configurar manejo de cookies.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1823"/> + <location filename="../Helpviewer/HelpWindow.py" line="1824"/> <source>Settings</source> <translation>Configuración</translation> </message> @@ -19362,7 +19420,7 @@ <translation><b>Todas las Pestañas a Marcadores...</b><p>Abrir un diálogo para añadir una nueva carpeta de marcadores para todas las pestañas abiertas.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2171"/> + <location filename="../Helpviewer/HelpWindow.py" line="2172"/> <source>Saved Tabs</source> <translation>Pestañas Guardadas</translation> </message> @@ -19426,57 +19484,57 @@ <translation><b>Guardar Como...</b><p>Guarda la página actual en disco.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search Engines</source> <translation>Configurar Motores de Búsqueda</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1388"/> + <location filename="../Helpviewer/HelpWindow.py" line="1389"/> <source>Configure the available search engines</source> <translation>Configurar los motores de búsqueda disponibles</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1390"/> + <location filename="../Helpviewer/HelpWindow.py" line="1391"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation><b>Configurar Motores de Búsqueda...</b><p>Abre un diálogo para configurar los motores de búsqueda disponibles.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords</source> <translation>Gestionar Contraseñas Almacenadas</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords...</source> <translation>Gestionar Contraseñas Almacenadas...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1406"/> + <location filename="../Helpviewer/HelpWindow.py" line="1407"/> <source>Manage the saved passwords</source> <translation>Gestionar las contraseñas almacenadas</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1408"/> + <location filename="../Helpviewer/HelpWindow.py" line="1409"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation><b>Gestionar Contraseñas Almacenadas</b><p>Abre un diálogo para gestionar las contraseñas almacenadas.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>Ad Block</source> <translation>Ad Block</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>&Ad Block...</source> <translation>&Ad Block...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1422"/> + <location filename="../Helpviewer/HelpWindow.py" line="1423"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Configurar las suscripciones y reglas de AdBlock</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1424"/> + <location filename="../Helpviewer/HelpWindow.py" line="1425"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Abre un diálogo para configurar las suscripciones y reglas de AdBlock</p></translation> </message> @@ -19516,146 +19574,146 @@ <translation><b>Almacenamiento Offline</b><p>Abre un diálogo para configurar el almacenamiento offline (sin conexión).</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search &Engines...</source> <translation>Configurar Motor&es de Búsqueda...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2410"/> + <location filename="../Helpviewer/HelpWindow.py" line="2411"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. HTML5 offline storage will be deactivated. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation><b>¿Está seguro de que desea activar la navegación privada?</b><p>Cuando la navegación privada ha sido activada, las páginas web no se añaden al historial, las búsquedas no se añaden a la lista de búsquedas recientes, y los iconos de website y las cookies no son almacenados. El almacenamiento offline de HTML5 tambien es desactivado. Hasta que la ventana sea cerrada, todavía se pueden utilizar los botones de Atrás y Adelante para retornar a las páginas web que hayan sido navegadas.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1646"/> + <location filename="../Helpviewer/HelpWindow.py" line="1647"/> <source>Text Encoding</source> <translation>Codificación de Texto</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3452"/> - <source>ISO</source> - <translation>ISO</translation> - </message> - <message> <location filename="../Helpviewer/HelpWindow.py" line="3453"/> - <source>Windows</source> - <translation>Windows</translation> + <source>ISO</source> + <translation>ISO</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3454"/> - <source>ISCII</source> - <translation>ISCII</translation> + <source>Windows</source> + <translation>Windows</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3455"/> - <source>Unicode</source> - <translation>Unicode</translation> + <source>ISCII</source> + <translation>ISCII</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3456"/> - <source>Other</source> - <translation>Otro</translation> + <source>Unicode</source> + <translation>Unicode</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3457"/> + <source>Other</source> + <translation>Otro</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="3458"/> <source>IBM</source> <translation>IBM</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3479"/> + <location filename="../Helpviewer/HelpWindow.py" line="3480"/> <source>Default Encoding</source> <translation>Codificación por Defecto</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1486"/> + <location filename="../Helpviewer/HelpWindow.py" line="1487"/> <source>Downloads</source> <translation>Descargas</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1490"/> + <location filename="../Helpviewer/HelpWindow.py" line="1491"/> <source>Shows the downloads window</source> <translation>Muestra la ventana de descargas</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1492"/> + <location filename="../Helpviewer/HelpWindow.py" line="1493"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation><b>Descargas</b><p>Muestra la ventana de descargas.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1903"/> + <location filename="../Helpviewer/HelpWindow.py" line="1904"/> <source>VirusTotal</source> <translation>VirusTotal</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1907"/> + <location filename="../Helpviewer/HelpWindow.py" line="1908"/> <source>Scan current site</source> <translation>Analizar sitio actual</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source>VirusTotal Scan</source> <translation>Análisis con VirusTotal</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation><p>El análisis con VirusTotal no se ha podido programar.<p> <p>Razón: {0}</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>RSS Feeds Dialog</source> <translation>Diálogo de RSS Feeds</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>&RSS Feeds Dialog...</source> <translation>Diálogo de &RSS Feeds...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation>Ctrl+Shift+F</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1507"/> + <location filename="../Helpviewer/HelpWindow.py" line="1508"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation>Abrir un diálogo mostrando los RSS feeds configurados.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1509"/> + <location filename="../Helpviewer/HelpWindow.py" line="1510"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation><b>Diálogo de RSS Feeds ...</b><p>Abrir un diálogo para mostrar todos los RSS feeds configurados. Puede utilizarse para gestionar los feeds y cómo mostrar sus contenidos.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Siteinfo Dialog</source> <translation>Diálogo Siteinfo</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>&Siteinfo Dialog...</source> <translation>Diálogo &Siteinfo...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1525"/> + <location filename="../Helpviewer/HelpWindow.py" line="1526"/> <source>Open a dialog showing some information about the current site.</source> <translation>Abrir un diálogo para mostrar información acerca del site actual.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1527"/> + <location filename="../Helpviewer/HelpWindow.py" line="1528"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation><b>Diálogo Siteinfo...</b><p>Abre un diálogo que muestra información acerca del site actual.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1835"/> + <location filename="../Helpviewer/HelpWindow.py" line="1836"/> <source>Tools</source> <translation>Herramientas</translation> </message> @@ -19672,47 +19730,47 @@ <translation>Disminuir Zoom</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>Network Monitor</source> <translation>Monitor de Red</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>&Network Monitor...</source> <translation>Mo&nitor de Red...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1477"/> + <location filename="../Helpviewer/HelpWindow.py" line="1478"/> <source><b>Network Monitor...</b><p>Shows the network monitor dialog.</p></source> <translation><b>Monitor de Red...</b><p>Muestra el diálogo de monitor de red.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2387"/> + <location filename="../Helpviewer/HelpWindow.py" line="2388"/> <source>Restore Window</source> <translation>Restaurar Ventana</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage User Agent Settings</source> <translation>Gestionar Ajustes de Agente de Usuario</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage &User Agent Settings</source> <translation>Gestionar Ajustes de Agente de &Usuario</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1540"/> + <location filename="../Helpviewer/HelpWindow.py" line="1541"/> <source>Shows a dialog to manage the User Agent settings</source> <translation>Muestra un diálogo para gestionar los ajustes de Agente de Usuario</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1542"/> + <location filename="../Helpviewer/HelpWindow.py" line="1543"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation><b>Gestionar Ajustes de Agente de Usuario</b><p>Muestra un diálogo para gestionar los ajustes de Agente de Usuario.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1719"/> + <location filename="../Helpviewer/HelpWindow.py" line="1720"/> <source>Global User Agent</source> <translation>Agente de Usuario Global</translation> </message> @@ -19742,42 +19800,42 @@ <translation><b>Guardar Pantalla de Página...</b><p>Guarda la página actual como una captura de pantalla.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>Synchronize data</source> <translation>Sincronizar datos</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>&Synchronize Data...</source> <translation>&Sincronizar Datos...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1556"/> + <location filename="../Helpviewer/HelpWindow.py" line="1557"/> <source>Shows a dialog to synchronize data via the network</source> <translation>Muestra un diálogo para sincronizar datos a través de la red</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1558"/> + <location filename="../Helpviewer/HelpWindow.py" line="1559"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation><b>Sincronizar Datos...</b><p>Muestra un diálogo para sincronizar datos a través de la red.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>ClickToFlash</source> <translation>ClickToFlash</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>&ClickToFlash...</source> <translation>&ClickToFlash...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1439"/> + <location filename="../Helpviewer/HelpWindow.py" line="1440"/> <source>Configure ClickToFlash whitelist</source> <translation>Configurar lista blanca de ClickToFlash</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1441"/> + <location filename="../Helpviewer/HelpWindow.py" line="1442"/> <source><b>ClickToFlash...</b><p>Opens a dialog to configure the ClickToFlash whitelist.</p></source> <translation><b>ClickToFlash...</b><p>Abre un diálogo para configurar la lista blanca de ClickToFlash.</p></translation> </message> @@ -19822,22 +19880,22 @@ <translation><b>Scripts de GreaseMonkey...</b><p>Abre un diálogo para configurar los Scripts de GreaseMonkey disponibles.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates</source> <translation>Gestionar Certificados SSL</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates...</source> <translation>Gestionar Certificados SSL...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1458"/> + <location filename="../Helpviewer/HelpWindow.py" line="1459"/> <source>Manage the saved SSL certificates</source> <translation>Gestionar los certificados SSL almacenados</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1460"/> + <location filename="../Helpviewer/HelpWindow.py" line="1461"/> <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 almacenados.</p></translation> </message> @@ -19882,7 +19940,7 @@ <translation><b>Guardar Captura de Pantalla de la parte Visible de la Página...</b><p>Guarda la parte visible de la página actual como una captura de pantalla.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2893"/> + <location filename="../Helpviewer/HelpWindow.py" line="2894"/> <source>eric6 Web Browser</source> <translation>Navegador Web de eric6</translation> </message> @@ -19897,32 +19955,32 @@ <translation><b>Salir</b><p>Salir del Navegador Web de eric6.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2077"/> + <location filename="../Helpviewer/HelpWindow.py" line="2078"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p></source> <translation><b>Navegador Web de eric6- {0}</b><p>El Navegador Web de eric6 is una combinación de navegador de archivos de ayuda y de HTML. Es parte del conjunto de herramientas de desarrollo de eric6.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>IP Address Report</source> <translation>Reportar Dirección IP</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Domain Report</source> <translation>Reportar Dominio</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3743"/> + <location filename="../Helpviewer/HelpWindow.py" line="3744"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation>Introducir una dirección IPv4 válida en notación decimal punteada:</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>The given IP address is not in dotted quad notation.</source> <translation>La dirección IP no se ha proporcionado en notación decimal punteada.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Enter a valid domain name:</source> <translation>Introducir un nombre de dominio válido:</translation> </message> @@ -19967,22 +20025,22 @@ <translation><b>Editar Permisos de Características HTML5</b><p>Abre un diálogo para editar los permisos de características HTML5 recordados.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values</source> <translation>Gestionar Valores de Zoom Guardados</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values...</source> <translation>Gestionar Valores de Zoom Guardados...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1574"/> + <location filename="../Helpviewer/HelpWindow.py" line="1575"/> <source>Manage the saved zoom values</source> <translation>Gestionar los valores de zoom guardados</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1576"/> + <location filename="../Helpviewer/HelpWindow.py" line="1577"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation><b>Gestionar los Valores de Zoom Guardados...</b><p>Abre un diálogo para gestionar los valores de zoom almacenados.</p></translation> </message> @@ -39314,7 +39372,7 @@ <translation><b>Cobertura de Código...</b><p>Muestra la información de cobertura de código para todos los archivos Python en el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Profile Data</source> <translation>Datos de perfil</translation> </message> @@ -39334,7 +39392,7 @@ <translation><b>Datos de Profiling...</b><p>Muestra datos de profiling para el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Application Diagram</source> <translation>Diagrama de Aplicación</translation> </message> @@ -39354,7 +39412,7 @@ <translation><b>Diagrama de Aplicación...</b><p>Muestra un diagrama del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source>Create Package List</source> <translation>Crear Lista del Paquete</translation> </message> @@ -39364,7 +39422,7 @@ <translation>Crear Lista del &Paquete</translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source>Create Plugin Archive</source> <translation>Crear Archivo de Plugin</translation> </message> @@ -39434,62 +39492,62 @@ <translation>&Borrar</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>Search New Files</source> <translation>Buscar nuevos archivos</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>There were no new files found to be added.</source> <translation>No se han encontrado nuevos archivos para ser añadidos.</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source>Version Control System</source> <translation>Sistema de control de versiones</translation> </message> <message> - <location filename="../Project/Project.py" line="4488"/> + <location filename="../Project/Project.py" line="4489"/> <source>Coverage Data</source> <translation>Datos de Cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="4538"/> + <location filename="../Project/Project.py" line="4539"/> <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="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Code Coverage</source> <translation>Cobertura de codigo</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Please select a coverage file</source> <translation>Por favor seleccione un archivo de cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Please select a profile file</source> <translation>Por favor seleccione un archivo de profiling</translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Include module names?</source> <translation>¿Incluir nombres de módulos?</translation> </message> <message> - <location filename="../Project/Project.py" line="4733"/> + <location filename="../Project/Project.py" line="4734"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>El archivo <b>PKGLIST</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4793"/> + <location filename="../Project/Project.py" line="4794"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation><p>El archivo <b>PKGLIST</b> no existe. Abortando...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4801"/> + <location filename="../Project/Project.py" line="4802"/> <source>The project does not have a main script defined. Aborting...</source> <translation>No hay script principal definido para el proyecto actual. Abortando...</translation> </message> @@ -39654,27 +39712,27 @@ <translation><p>El directorio de proyecto <b>{0}</b> no pudo ser creado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Deshabilitando control de versiones.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>El archivo <b>PKGLIST</b> no puede ser creado.</p><p>Causa: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> + <location filename="../Project/Project.py" line="4816"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation><p>El archivo <b>PKGLIST</b> no puede ser leido.</p><p>Causa: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4854"/> + <location filename="../Project/Project.py" line="4855"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>El fichero<b>{0}</b> no ha podido ser almacenado en el archivo. Va a ser ignorado.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4923"/> + <location filename="../Project/Project.py" line="4924"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo de plugin<b>{0}</b> no puede ser leido.</p><p>Causa: {1}</p></translation> </message> @@ -39749,12 +39807,12 @@ <translation>Consola PyQt5</translation> </message> <message> - <location filename="../Project/Project.py" line="4358"/> + <location filename="../Project/Project.py" line="4359"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Revirtiendo sobreescritura.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>El archivo de plugin<b>{0}</b> no puede ser leido.</p><p>Causa: {1}</p></translation> </message> @@ -39789,12 +39847,12 @@ <translation><b>Crear un archivo de plugin (Snapshot)</b><p>Crea un archivo de plugin utilizando la lista de archivos proporcionada en el archivo PKGLIST. El nombre del archivo se determina por el nombre del script principal. La entrada para la versión del script proncipal se modifica para reflejar una versión snapshot.</p> </translation> </message> <message> - <location filename="../Project/Project.py" line="4828"/> + <location filename="../Project/Project.py" line="4829"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>El archivo de plugin de eric6 <b>{0}</b> no ha podido ser creado. Abortando...</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4877"/> + <location filename="../Project/Project.py" line="4878"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation><p>El archivo de plugin de eric6 <b>{0}</b> se ha creado satisfactoriamente.</p></translation> </message> @@ -48132,130 +48190,130 @@ <translation><b>Ventana de Shell</b><p>Es implemente un intérprete ejecutándose en una ventana. El intérprete es el que se usa para ejecutar el programa en depuración. Esto significa que puede ejecutar cualquier comando mientras se ejecuta el programa en depuración</p><p>Puede utilizar las teclas del cursor para entrar comandos. Tambien hay un historial de comandos que pueden ser re-invocados utilizando las teclas de cursor arriba y abajo. Presionando las teclas de arriba o abajo despues de que se ha introducido un texto comenzará una búsqueda incremental.</p><p>La shell tiene algunos comandos especiales. 'reset' mata la shell y comienza una nueva. 'clear' limpia la pantalla de la ventana de shell. 'start' se utiliza para cambiar el lenguaje de shell y debe estar seguido por un lenguaje soportado. Los lenguajes soportados se listan utilizando el comando 'lenguages'. Estos comandos, excepto 'lenguages', están tambien disponibles a traves del menú de contexto.</p><p>Presionando la tecla Tab despues de haber introducido texto mostrará una lista de los posibles 'completados' de la línea de comandos. La entrada relevante puede ser seleccionada de esta lista. Si sólamente hay disponible una entrada, se inserta automáticamente.</p><p>En modo pasivo de depuración la shell sólamente está disponible despues de que el programa en depuración ha conectado con la IDE, y hasta que termina. Esto se indica con un 'prompt' distinto y con una indicación en la leyenda de la ventana.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="194"/> + <location filename="../QScintilla/Shell.py" line="197"/> <source>Passive >>> </source> <translation>Pasivo >>> </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="209"/> + <location filename="../QScintilla/Shell.py" line="212"/> <source>Start</source> <translation>Comienzo</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="222"/> + <location filename="../QScintilla/Shell.py" line="225"/> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="223"/> + <location filename="../QScintilla/Shell.py" line="226"/> <source>Paste</source> <translation>Pegar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="228"/> + <location filename="../QScintilla/Shell.py" line="231"/> <source>Clear</source> <translation>Borrar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="229"/> + <location filename="../QScintilla/Shell.py" line="232"/> <source>Reset</source> <translation>Restaurar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="230"/> + <location filename="../QScintilla/Shell.py" line="233"/> <source>Reset and Clear</source> <translation>Restaurar y borrar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="642"/> + <location filename="../QScintilla/Shell.py" line="662"/> <source>Passive Debug Mode</source> <translation>Modo de depuración pasiva</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="645"/> + <location filename="../QScintilla/Shell.py" line="665"/> <source>No.</source> <translation>No.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source>Drop Error</source> <translation>Error al soltar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="214"/> + <location filename="../QScintilla/Shell.py" line="217"/> <source>History</source> <translation>Historial</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="215"/> + <location filename="../QScintilla/Shell.py" line="218"/> <source>Select entry</source> <translation>Seleccionar entrada</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="216"/> + <location filename="../QScintilla/Shell.py" line="219"/> <source>Show</source> <translation>Mostrar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select History</source> <translation>Seleccionar historial</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Seleccionar la entrada del historial a ejecutar (las más recientes mostradas en último lugar).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="643"/> + <location filename="../QScintilla/Shell.py" line="663"/> <source> Not connected</source> <translation>No conectado</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="235"/> + <location filename="../QScintilla/Shell.py" line="238"/> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="221"/> + <location filename="../QScintilla/Shell.py" line="224"/> <source>Cut</source> <translation>Cortar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="647"/> + <location filename="../QScintilla/Shell.py" line="667"/> <source>{0} on {1}, {2}</source> <translation>{0} en {1}, {2}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="785"/> + <location filename="../QScintilla/Shell.py" line="805"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="793"/> + <location filename="../QScintilla/Shell.py" line="813"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1401"/> + <location filename="../QScintilla/Shell.py" line="1421"/> <source>Shell language "{0}" not supported. </source> <translation>Lenguaje de Shell "{0}" no soportado. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> no es un archivo.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="226"/> + <location filename="../QScintilla/Shell.py" line="229"/> <source>Find</source> <translation>Buscar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="686"/> + <location filename="../QScintilla/Shell.py" line="706"/> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -48266,13 +48324,13 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="718"/> + <location filename="../QScintilla/Shell.py" line="738"/> <source>Unspecified syntax error. </source> <translation>Error de sintaxis sin especificar.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="696"/> + <location filename="../QScintilla/Shell.py" line="716"/> <source>Exception "{0}" {1} </source> @@ -48281,14 +48339,14 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="720"/> + <location filename="../QScintilla/Shell.py" line="740"/> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation>Error de sintaxis "{1}" en archivo {0} en la línea {2}, carácter {3}. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="743"/> + <location filename="../QScintilla/Shell.py" line="763"/> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation>Señal "{0}" generada en el archivo {1} y línea {2}. @@ -57419,12 +57477,12 @@ <translation>El filtro de tareas no tiene ningún filtro activo. ¿Desea configurar las propiedades del filtro?</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Extracting project tasks...</source> <translation>Extrayendo tareas del proyecto...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Abort</source> <translation>Abortar</translation> </message> @@ -57439,7 +57497,7 @@ <translation>Configurar...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="707"/> + <location filename="../Tasks/TaskViewer.py" line="706"/> <source>Extracting project tasks... {0}</source> <translation>Extrayendo tareas del proyecto... @@ -57466,12 +57524,12 @@ <translation>Tareas de P&royecto</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>%v/%m Files</source> <translation>%v/%m Archivos</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="702"/> + <location filename="../Tasks/TaskViewer.py" line="701"/> <source>Tasks</source> <translation>Tareas</translation> </message> @@ -60074,7 +60132,7 @@ <translation>Mostrar las versiones disponibles para descarga</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <source>Report Bug</source> <translation>Enviar informe de bugs</translation> </message> @@ -60094,7 +60152,7 @@ <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="2657"/> + <location filename="../UI/UserInterface.py" line="2676"/> <source>Unittest</source> <translation>Test Unitario</translation> </message> @@ -60154,7 +60212,7 @@ <translation><b>Test Unitario de Script</b><p>Ejecuta un test unitario con el script actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>Unittest Project</source> <translation>Test Unitario de Proyecto</translation> </message> @@ -60334,7 +60392,7 @@ <translation><b>Atajos de Teclado</b><p>Establezca los atajos de teclado para la aplicación con sus valores preferidos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5544"/> + <location filename="../UI/UserInterface.py" line="5571"/> <source>Export Keyboard Shortcuts</source> <translation>Exportar Atajos de Teclado</translation> </message> @@ -60354,7 +60412,7 @@ <translation><b>Exportar Atajos de Teclado</b><p>Exporte los atajos de teclado de la aplicación.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Import Keyboard Shortcuts</source> <translation>Importar Atajos de Teclado</translation> </message> @@ -60374,317 +60432,317 @@ <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="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Activate current editor</source> <translation>Activar editor actual</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>Plugin Infos</source> <translation>Información sobre Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>&Plugin Infos...</source> <translation>Información sobre &Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2224"/> + <location filename="../UI/UserInterface.py" line="2241"/> <source>Show Plugin Infos</source> <translation>Mostrar Información sobre Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2225"/> + <location filename="../UI/UserInterface.py" line="2242"/> <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="2251"/> + <location filename="../UI/UserInterface.py" line="2268"/> <source>Uninstall Plugin</source> <translation>Desinstalar Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2246"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>&Uninstall Plugin...</source> <translation>Desinstalar Pl&ugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2252"/> + <location filename="../UI/UserInterface.py" line="2269"/> <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="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin Repository</source> <translation>Repositorio de Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin &Repository...</source> <translation>&Repositorio de Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2281"/> <source>Show Plugins available for download</source> <translation>Mostrar Plugins disponibles para descarga</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2283"/> <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="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt4 Documentation</source> <translation>Documentación de Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt&4 Documentation</source> <translation>Documentación de Qt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2294"/> + <location filename="../UI/UserInterface.py" line="2311"/> <source>Open Qt4 Documentation</source> <translation>Abrir Documentación de Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt4 Documentation</source> <translation>Documentación de PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2324"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Open PyQt4 Documentation</source> <translation>Abrir Documentación de PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>Eric API Documentation</source> <translation>Documentación de API de Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>&Eric API Documentation</source> <translation>Documentación de API de &Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2408"/> + <location filename="../UI/UserInterface.py" line="2425"/> <source>Open Eric API Documentation</source> <translation>Abrir Documentación de API de Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2472"/> - <source>&Unittest</source> - <translation>Te&st Unitario</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2489"/> + <source>&Unittest</source> + <translation>Te&st Unitario</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506"/> <source>E&xtras</source> <translation>E&xtras</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2494"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source>Wi&zards</source> <translation>Asis&tentes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2502"/> + <location filename="../UI/UserInterface.py" line="2519"/> <source>Select Tool Group</source> <translation>Seleccionar Grupo de Herramientas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2510"/> + <location filename="../UI/UserInterface.py" line="2527"/> <source>Se&ttings</source> <translation>Con&figuración</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2533"/> + <location filename="../UI/UserInterface.py" line="2552"/> <source>&Window</source> <translation>Ven&tana</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2577"/> <source>&Toolbars</source> <translation>&Barra de Herramientas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2569"/> + <location filename="../UI/UserInterface.py" line="2588"/> <source>P&lugins</source> <translation>P&lugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583"/> + <location filename="../UI/UserInterface.py" line="2602"/> <source>&Help</source> <translation>Ay&uda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2656"/> + <location filename="../UI/UserInterface.py" line="2675"/> <source>Tools</source> <translation>Herramientas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2658"/> + <location filename="../UI/UserInterface.py" line="2677"/> <source>Settings</source> <translation>Ajustes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <source>Help</source> <translation>Ayuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2660"/> + <location filename="../UI/UserInterface.py" line="2679"/> <source>Profiles</source> <translation>Perfiles</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2661"/> + <location filename="../UI/UserInterface.py" line="2680"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3021"/> + <location filename="../UI/UserInterface.py" line="3048"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Números de Versiones</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360"/> + <location filename="../UI/UserInterface.py" line="6413"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <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="3435"/> + <location filename="../UI/UserInterface.py" line="3462"/> <source>Configure Tool Groups ...</source> <translation>Configurar Grupos de Herramientas ...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3439"/> + <location filename="../UI/UserInterface.py" line="3466"/> <source>Configure current Tool Group ...</source> <translation>Configurar Grupo de Herramientas actual ...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3390"/> + <location filename="../UI/UserInterface.py" line="3417"/> <source>&Builtin Tools</source> <translation>Herramientas de serie (&builtin)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3407"/> + <location filename="../UI/UserInterface.py" line="3434"/> <source>&Plugin Tools</source> <translation>Herramientas de Extensión (&Plugin)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3558"/> + <location filename="../UI/UserInterface.py" line="3585"/> <source>&Show all</source> <translation>&Ver todo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3560"/> + <location filename="../UI/UserInterface.py" line="3587"/> <source>&Hide all</source> <translation>&Ocultar todo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <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="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <source>Process Generation Error</source> <translation>Error de Generación de Proceso</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <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="4475"/> + <location filename="../UI/UserInterface.py" line="4502"/> <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="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <source>Documentation Missing</source> <translation>Falta documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source>Documentation</source> <translation>Documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5039"/> + <location filename="../UI/UserInterface.py" line="5066"/> <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="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <source>Save tasks</source> <translation>Guardar tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <source>Read tasks</source> <translation>Leer tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source>Drop Error</source> <translation>Error de volcado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Error during updates check</source> <translation>Error durante la verificación de actualización</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>&Cancel</source> <translation>&Cancelar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <source>Update available</source> <translation>Actualizaciones disponibles</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <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="6346"/> + <location filename="../UI/UserInterface.py" line="6399"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versiones disponibles</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>First time usage</source> <translation>Usado por primera vez</translation> </message> @@ -60704,17 +60762,17 @@ <translation><b>Mini Editor</b><p>Abre un diálogo con un editor simple.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2238"/> + <location filename="../UI/UserInterface.py" line="2255"/> <source>Install Plugins</source> <translation>Instalar Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2233"/> + <location filename="../UI/UserInterface.py" line="2250"/> <source>&Install Plugins...</source> <translation>&Instalar Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239"/> + <location filename="../UI/UserInterface.py" line="2256"/> <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> @@ -60744,7 +60802,7 @@ <translation>Restaurando Gestor de Barras de Herramientas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>External Tools</source> <translation>Herramientas Externas</translation> </message> @@ -60759,22 +60817,22 @@ <translation>Visor de &Multiproyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <source>Save session</source> <translation>Guardar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <source>Read session</source> <translation>Cargar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2821"/> + <location filename="../UI/UserInterface.py" line="2848"/> <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="2835"/> + <location filename="../UI/UserInterface.py" line="2862"/> <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> @@ -60799,17 +60857,17 @@ <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="2814"/> + <location filename="../UI/UserInterface.py" line="2841"/> <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="2842"/> + <location filename="../UI/UserInterface.py" line="2869"/> <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="2849"/> + <location filename="../UI/UserInterface.py" line="2876"/> <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> @@ -60839,32 +60897,32 @@ <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="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>Restart application</source> <translation>Reiniciar aplicación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <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="2578"/> + <location filename="../UI/UserInterface.py" line="2597"/> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2828"/> + <location filename="../UI/UserInterface.py" line="2855"/> <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="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Switch between tabs</source> <translation>Alternar entre pestañas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> @@ -60909,12 +60967,12 @@ <translation><b>Importar Preferencias</b><p>Importar una configuración previamente exportada.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Show next</source> <translation>Mostrar siguente</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Show previous</source> <translation>Mostrar anterior</translation> </message> @@ -60994,27 +61052,27 @@ <translation>Editor de &Iconos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt 3 support</source> <translation>Soporte para Qt 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PySide no ha sido configurado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>PySide Documentation</source> <translation>Documentación de PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>Py&Side Documentation</source> <translation>Documentación de Py&Side</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2446"/> <source>Open PySide Documentation</source> <translation>Abrir Documentación de PySide</translation> </message> @@ -61034,110 +61092,110 @@ <translation>{0} - {1} - {2} - Modo Pasivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2924"/> + <location filename="../UI/UserInterface.py" line="2951"/> <source>External Tools/{0}</source> <translation>Herramientas Externas/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <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="4295"/> + <location filename="../UI/UserInterface.py" line="4322"/> <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="4362"/> + <location filename="../UI/UserInterface.py" line="4389"/> <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="4413"/> + <location filename="../UI/UserInterface.py" line="4440"/> <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="4455"/> + <location filename="../UI/UserInterface.py" line="4482"/> <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="4523"/> + <location filename="../UI/UserInterface.py" line="4550"/> <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="4578"/> + <location filename="../UI/UserInterface.py" line="4605"/> <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="4599"/> + <location filename="../UI/UserInterface.py" line="4626"/> <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="4690"/> + <location filename="../UI/UserInterface.py" line="4717"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <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="4738"/> + <location filename="../UI/UserInterface.py" line="4765"/> <source>Starting process '{0} {1}'. </source> <translation>Comenzando proceso '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <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="4830"/> + <location filename="../UI/UserInterface.py" line="4857"/> <source>Process '{0}' has exited. </source> <translation>El proceso '{0}' ha finalizado.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <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="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <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="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <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="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <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="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <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="6143"/> + <location filename="../UI/UserInterface.py" line="6196"/> <source>Trying host {0}</source> <translation>Probando host {0}</translation> </message> @@ -61172,67 +61230,67 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Archivo de atajos de teclado (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python 3 Documentation</source> <translation>Documentación de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python &3 Documentation</source> <translation>Documentación de Python &3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2383"/> <source>Open Python 3 Documentation</source> <translation>Abrir Documentación de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python 2 Documentation</source> <translation>Documentación de Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python &2 Documentation</source> <translation>Documentación de Python &2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384"/> + <location filename="../UI/UserInterface.py" line="2401"/> <source>Open Python 2 Documentation</source> <translation>Abrir Documentación de Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2403"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <source>Error getting versions information</source> <translation>Error al obtener información de versiones</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6205"/> + <location filename="../UI/UserInterface.py" line="6258"/> <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="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <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> @@ -61318,12 +61376,12 @@ <translation><b>Captura de Pantalla</b><p>Abre un diálogo para tomar capturas de pantalla de una región de la pantalla.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4696"/> <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="6406"/> + <location filename="../UI/UserInterface.py" line="6459"/> <source>Select Workspace Directory</source> <translation>Seleccionar Directorio para el Espacio de Trabajo</translation> </message> @@ -61543,7 +61601,7 @@ <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="2538"/> + <location filename="../UI/UserInterface.py" line="2557"/> <source>&Windows</source> <translation>&Ventanas</translation> </message> @@ -61618,22 +61676,22 @@ <translation><b>Qt-Linguist</b><p>Iniciar Qt-Linguist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt5 Documentation</source> <translation>Documentación de Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt&5 Documentation</source> <translation>Documentación de Qt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308"/> + <location filename="../UI/UserInterface.py" line="2325"/> <source>Open Qt5 Documentation</source> <translation>Abrir Documentación de Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2860"/> + <location filename="../UI/UserInterface.py" line="2887"/> <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> @@ -61678,62 +61736,62 @@ <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="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt&4 Documentation</source> <translation>Documentación de PyQt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt5 Documentation</source> <translation>Documentación de PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt&5 Documentation</source> <translation>Documentación de PyQt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2343"/> + <location filename="../UI/UserInterface.py" line="2360"/> <source>Open PyQt5 Documentation</source> <translation>Abrir Documentación de PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5105"/> + <location filename="../UI/UserInterface.py" line="5132"/> <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="2295"/> + <location filename="../UI/UserInterface.py" line="2312"/> <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, 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,en un navegador web, o se ejecutará Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2326"/> <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, 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,en un navegador web, o se ejecutará Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2325"/> + <location filename="../UI/UserInterface.py" line="2342"/> <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, 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,en un navegador web, o se ejecutará Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345"/> + <location filename="../UI/UserInterface.py" line="2362"/> <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, 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,en un navegador web, o se ejecutará Qt Assistant.</p> </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368"/> + <location filename="../UI/UserInterface.py" line="2385"/> <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="2431"/> + <location filename="../UI/UserInterface.py" line="2448"/> <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, 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,en un navegador web, o se ejecutará Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> @@ -61753,7 +61811,7 @@ <translation><b>Mostrar registro de errores...</b><p>Abre un diálogo mostrando el registro más reciente de errores.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6191"/> <source>Version Check</source> <translation>Verificación de Versión</translation> </message> @@ -61818,32 +61876,32 @@ <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="2410"/> + <location filename="../UI/UserInterface.py" line="2427"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <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="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <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="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>Eric6 is up to date</source> <translation>Eric6 está actualizado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <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="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <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> @@ -61853,17 +61911,17 @@ <translation>Generando Barras de Herramientas para Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3410"/> + <location filename="../UI/UserInterface.py" line="3437"/> <source>&User Tools</source> <translation>Herramientas de &Usuario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482"/> + <location filename="../UI/UserInterface.py" line="3509"/> <source>No User Tools Configured</source> <translation>No se han Configurado Herramientas de Usuario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6154"/> + <location filename="../UI/UserInterface.py" line="6207"/> <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> @@ -61887,6 +61945,16 @@ <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="2189"/> + <source>Clear private data</source> + <translation type="unfinished">Limpiar Datos Privados</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <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> </context> <context> <name>UserPropertiesDialog</name> @@ -64921,17 +64989,17 @@ <translation>Archivo Modificado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065"/> + <location filename="../ViewManager/ViewManager.py" line="5066"/> <source>&Clear</source> <translation>&Limpiar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5059"/> + <location filename="../ViewManager/ViewManager.py" line="5060"/> <source>&Add</source> <translation>&Agregar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5062"/> + <location filename="../ViewManager/ViewManager.py" line="5063"/> <source>&Edit...</source> <translation>&Editar...</translation> </message> @@ -65727,27 +65795,27 @@ <translation>Lista de Excepciones del Usuario</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>Edit Spelling Dictionary</source> <translation>Editar Diccionario Ortográfico</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6242"/> + <location filename="../ViewManager/ViewManager.py" line="6243"/> <source>Editing {0}</source> <translation>Editando {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6227"/> + <location filename="../ViewManager/ViewManager.py" line="6228"/> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo de diccionario ortográfico <b>{0}</b> no se puede leer.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6254"/> + <location filename="../ViewManager/ViewManager.py" line="6255"/> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>El archivo de diccionario ortográfico <b>{0}</b> no se puede escribir.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>The spelling dictionary was saved successfully.</source> <translation>El diccionario ortográfico se ha guardado con éxito.</translation> </message> @@ -67849,7 +67917,7 @@ <context> <name>WebBrowserWindow</name> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3153"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3154"/> <source>eric6 Web Browser</source> <translation>Navegador Web de eric6</translation> </message> @@ -67869,7 +67937,7 @@ <translation>Buscar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1714"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1715"/> <source>JavaScript Console</source> <translation>Consola de Javascript</translation> </message> @@ -67926,7 +67994,7 @@ <translation><b>Nueva Ventana</b><p>Abre una nueva ventana de navegador web en el modo de privacidad actual.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>New Private Window</source> <translation>Nueva Ventana Privada</translation> </message> @@ -67952,7 +68020,7 @@ <translation><b>Nueva Ventana Privada</b><p>Abre una nueva ventana privada de navegador web iniciando una nueva instancia del navegador en web en modo privado.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>Open File</source> <translation>Abrir archivo</translation> </message> @@ -68856,7 +68924,7 @@ <translation><b>Mostrar codigo fuente</b><p>Muestra el código fuente en un editor.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2662"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2663"/> <source>Full Screen</source> <translation>Pantalla Completa</translation> </message> @@ -69171,526 +69239,526 @@ <translation><b>Reindexar Documentación</b><p>Reindexa el conjunto de documentación.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1504"/> <source>Clear private data</source> <translation>Limpiar Datos Privados</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/> <source>&Clear private data</source> - <translation>Li&mpiar Datos Privados</translation> - </message> - <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/> + <translation type="obsolete">Li&mpiar Datos Privados</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1506"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Limpiar datos privados</b><p>Limpia los datos privados como historial de navegación, de búsqueda o base de datos de favicons.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear icons database</source> <translation>Limpiar base de datos de iconos</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear &icons database</source> <translation>Limpiar base de datos de &iconos</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1521"/> <source>Clear the database of favicons</source> <translation>Limpiar base de datos de favicons</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1522"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1523"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>Limpiar base de datos de iconos</b><p>Limpia la base de datos de favicons de URLs previamente visitadas.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1532"/> <source>Manage saved Favicons</source> <translation>Gestionar Iconos de páginas web Guardados</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1538"/> <source>Show a dialog to manage the saved favicons</source> <translation>Muestra un diálogo para gestionar los iconos de páginas web almacenados</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1539"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/> <source><b>Manage saved Favicons</b><p>This shows a dialog to manage the saved favicons of previously visited URLs.</p></source> <translation><b>Gestionar Iconos de páginas web Almacenados</b><p>Muestra un diálogo para gestionar los iconos de páginas web almacenados de URLs visitadas anteriormente.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search Engines</source> <translation>Configurar Motores de Búsqueda</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search &Engines...</source> <translation>Configurar Motor&es de Búsqueda...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1553"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1554"/> <source>Configure the available search engines</source> <translation>Configurar los motores de búsqueda disponibles</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1556"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation><b>Configurar Motores de Búsqueda...</b><p>Abre un diálogo para configurar los motores de búsqueda disponibles.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords</source> <translation>Gestionar Contraseñas Almacenadas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords...</source> <translation>Gestionar Contraseñas Almacenadas...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1572"/> <source>Manage the saved passwords</source> <translation>Gestionar las contraseñas almacenadas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1573"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1574"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation><b>Gestionar Contraseñas Almacenadas</b><p>Abre un diálogo para gestionar las contraseñas almacenadas.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>Ad Block</source> <translation>Ad Block</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>&Ad Block...</source> <translation>&Ad Block...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1588"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Configurar las suscripciones y reglas de AdBlock</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1589"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1590"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Abre un diálogo para configurar las suscripciones y reglas de AdBlock</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors</source> <translation>Gestionar Errores de Certificados SSL</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors...</source> <translation>Gestionar Errores de Certificados SSL...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1604"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1605"/> <source>Manage the accepted SSL certificate Errors</source> <translation>Gestionar los Errores de certificados SSL aceptados</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1606"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/> <source><b>Manage SSL Certificate Errors...</b><p>Opens a dialog to manage the accepted SSL certificate errors.</p></source> <translation><b>Gestionar Errores de Certificados SSL</b><p>Abre un diálogo para gestionar los errores de certificados SSL aceptados.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1616"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1617"/> <source>Downloads</source> <translation>Descargas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1620"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1621"/> <source>Shows the downloads window</source> <translation>Muestra la ventana de descargas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1622"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation><b>Descargas</b><p>Muestra la ventana de descargas.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>RSS Feeds Dialog</source> <translation>Diálogo de RSS Feeds</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>&RSS Feeds Dialog...</source> <translation>Diálogo de &RSS Feeds...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation>Ctrl+Shift+F</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1637"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1638"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation>Abrir un diálogo mostrando los RSS feeds configurados.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1639"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation><b>Diálogo de RSS Feeds ...</b><p>Abrir un diálogo para mostrar todos los RSS feeds configurados. Puede utilizarse para gestionar los feeds y cómo mostrar sus contenidos.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Siteinfo Dialog</source> <translation>Diálogo Siteinfo</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>&Siteinfo Dialog...</source> <translation>Diálogo &Siteinfo...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/> <source>Open a dialog showing some information about the current site.</source> <translation>Abrir un diálogo para mostrar información acerca del site actual.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1658"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation><b>Diálogo Siteinfo...</b><p>Abre un diálogo que muestra información acerca del site actual.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage User Agent Settings</source> <translation>Gestionar Ajustes de Agente de Usuario</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage &User Agent Settings</source> <translation>Gestionar Ajustes de Agente de &Usuario</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/> <source>Shows a dialog to manage the User Agent settings</source> <translation>Muestra un diálogo para gestionar los ajustes de Agente de Usuario</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1672"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation><b>Gestionar Ajustes de Agente de Usuario</b><p>Muestra un diálogo para gestionar los ajustes de Agente de Usuario.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>Synchronize data</source> <translation>Sincronizar datos</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>&Synchronize Data...</source> <translation>&Sincronizar Datos...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1686"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/> <source>Shows a dialog to synchronize data via the network</source> <translation>Muestra un diálogo para sincronizar datos a través de la red</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1689"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation><b>Sincronizar Datos...</b><p>Muestra un diálogo para sincronizar datos a través de la red.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values</source> <translation>Gestionar Valores de Zoom Guardados</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values...</source> <translation>Gestionar Valores de Zoom Guardados...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1705"/> <source>Manage the saved zoom values</source> <translation>Gestionar los valores de zoom guardados</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1706"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation><b>Gestionar los Valores de Zoom Guardados...</b><p>Abre un diálogo para gestionar los valores de zoom almacenados.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1718"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/> <source>Toggle the JavaScript console window</source> <translation>Conmutar la ventana de consola de JavaScript</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1720"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1721"/> <source><b>JavaScript Console</b><p>This toggles the JavaScript console window.</p></source> <translation><b>Consola de JavaScript</b><p>Conmuta la ventana de consola de JavaScript.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1765"/> <source>&File</source> <translation>&Archivo</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1787"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1788"/> <source>&Edit</source> <translation>&Editar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1804"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1805"/> <source>&View</source> <translation>&Ver</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1812"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1813"/> <source>Text Encoding</source> <translation>Codificación de Texto</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1818"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1819"/> <source>&Go</source> <translation>&Ir</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1833"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/> <source>H&istory</source> <translation>&Historial</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1845"/> <source>&Bookmarks</source> <translation>&Marcadores</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1861"/> <source>&Settings</source> <translation>Con&figuración</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1887"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1888"/> <source>Global User Agent</source> <translation>Agente de Usuario Global</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1900"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1901"/> <source>&Tools</source> <translation>&Herramientas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1907"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1908"/> <source>&Window</source> <translation>&Ventana</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1920"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1921"/> <source>&Help</source> <translation>A&yuda</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1931"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1932"/> <source>File</source> <translation>Archivo</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1959"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1960"/> <source>Edit</source> <translation>Editar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1971"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1972"/> <source>View</source> <translation>Ver</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1980"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/> <source>Find</source> <translation>Buscar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1988"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1989"/> <source>Filter</source> <translation>Filtro</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1993"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1994"/> <source>Filtered by: </source> <translation>Filtrado por:</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2000"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2001"/> <source>Settings</source> <translation>Ajustes</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2011"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2012"/> <source>Tools</source> <translation>Herramientas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2020"/> <source>Help</source> <translation>Ayuda</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2026"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2027"/> <source>Go</source> <translation>Ir a</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2080"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/> <source>VirusTotal</source> <translation>VirusTotal</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2084"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2085"/> <source>Scan current site</source> <translation>Analizar sitio actual</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>IP Address Report</source> <translation>Informe de Dirección IP</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Domain Report</source> <translation>Informe de Dominio</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el proceso.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>OK</source> <translation>OK</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2305"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2306"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p><p>It is based on QtWebEngine {1} and Chrome {2}.</p></source> <translation><b>Navegador Web de eric6- {0}</b><p>El Navegador Web de eric6 is una combinación de navegador de archivos de ayuda y de HTML. Es parte del conjunto de herramientas de desarrollo de eric6.</p><p>Está basado en QtWebEngine {1} y Chrome {2}.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2425"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2426"/> <source>Saved Tabs</source> <translation>Pestañas Guardadas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2669"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2670"/> <source>Restore Window</source> <translation>Restaurar Ventana</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2970"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2971"/> <source>Could not find an associated content.</source> <translation>No se ha podido encontrar un contenido asociado.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3073"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3074"/> <source>Updating search index</source> <translation>Actualizando índice de búsqueda</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3143"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3144"/> <source>Looking for Documentation...</source> <translation>Buscando Documentación...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3178"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3179"/> <source>Unfiltered</source> <translation>Sin filtrar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3197"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3198"/> <source>Help Engine</source> <translation>Motor de Ayuda</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3724"/> - <source>ISO</source> - <translation>ISO</translation> - </message> - <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3725"/> - <source>Windows</source> - <translation>Windows</translation> + <source>ISO</source> + <translation>ISO</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3726"/> - <source>ISCII</source> - <translation>ISCII</translation> + <source>Windows</source> + <translation>Windows</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3727"/> - <source>Unicode</source> - <translation>Unicode</translation> + <source>ISCII</source> + <translation>ISCII</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3728"/> - <source>Other</source> - <translation>Otro</translation> + <source>Unicode</source> + <translation>Unicode</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3729"/> + <source>Other</source> + <translation>Otro</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3730"/> <source>IBM</source> <translation>IBM</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3751"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3752"/> <source>Default Encoding</source> <translation>Codificación por Defecto</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source>VirusTotal Scan</source> <translation>Análisis con VirusTotal</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation><p>El análisis con VirusTotal no se ha podido programar.<p> <p>Razón: {0}</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4043"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4044"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation>Introducir una dirección IPv4 válida en notación decimal punteada:</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>The given IP address is not in dotted quad notation.</source> <translation>La dirección IP no se ha proporcionado en notación decimal punteada.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Enter a valid domain name:</source> <translation>Introducir un nombre de dominio válido:</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1729"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1730"/> <source>Tab Manager</source> <translation>Gestor de Pestañas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/> <source>Shows the tab manager window</source> <translation>Muestra la ventana de gestor de pestañas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1735"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/> <source><b>Tab Manager</b><p>Shows the tab manager window.</p></source> <translation><b>Gestor de Pestañas</b><p>Muestra la ventana del gestor de pestañas.</p></translation> </message> @@ -69726,7 +69794,7 @@ <translation><b>Guardar Como...</b><p>Guarda la página actual en disco.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>HTML Files (*.html *.htm *.mhtml);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Archivos HTML (*.html *.htm *.mhtml);;Archivos PDF (*.pdf);;Todos los Archivos(*)</translation> </message>
--- a/i18n/eric6_fr.ts Tue Aug 23 19:02:43 2016 +0200 +++ b/i18n/eric6_fr.ts Wed Aug 24 20:00:29 2016 +0200 @@ -2822,6 +2822,64 @@ </message> </context> <context> + <name>ClearPrivateDataDialog</name> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="14"/> + <source>Clear Private Data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="23"/> + <source>Select to clear the list of recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="26"/> + <source>Recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="36"/> + <source>Select to clear the list of recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="39"/> + <source>Recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="49"/> + <source>Select to clear the list of recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="52"/> + <source>Recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="62"/> + <source>Select to clear the debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="65"/> + <source>Debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="75"/> + <source>Select to clear the shell histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="78"/> + <source>Shell histories</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>ClickToFlash</name> <message> <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.ui" line="43"/> @@ -5303,7 +5361,7 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1765"/> + <location filename="../Debugger/DebugUI.py" line="1780"/> <source>Run Script</source> <translation>Lancer le script</translation> </message> @@ -5323,7 +5381,7 @@ <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="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>Run Project</source> <translation>Lancer le projet</translation> </message> @@ -5423,7 +5481,7 @@ <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="1887"/> + <location filename="../Debugger/DebugUI.py" line="1902"/> <source>Debug Script</source> <translation>Déboguer le script</translation> </message> @@ -5443,7 +5501,7 @@ <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="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <source>Debug Project</source> <translation>Déboguer le projet</translation> </message> @@ -5568,7 +5626,7 @@ <translation><b>Arrêt</b><p>Arrête le débogage courant.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> <translation>Evaluer</translation> </message> @@ -5583,7 +5641,7 @@ <translation>Evalue l'expression dans le contexte en cours</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> <translation>Exécuter</translation> </message> @@ -5683,57 +5741,57 @@ <translation>&Point d'arrêts</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1073"/> + <location filename="../Debugger/DebugUI.py" line="1088"/> <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="1110"/> + <location filename="../Debugger/DebugUI.py" line="1125"/> <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="1230"/> + <location filename="../Debugger/DebugUI.py" line="1245"/> <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="1540"/> + <location filename="../Debugger/DebugUI.py" line="1555"/> <source>Coverage of Project</source> <translation>Coverage du projet</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1527"/> + <location filename="../Debugger/DebugUI.py" line="1542"/> <source>Coverage of Script</source> <translation>Coverage du Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <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="1659"/> + <location filename="../Debugger/DebugUI.py" line="1674"/> <source>Profile of Project</source> <translation>Profil du projet</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1646"/> + <location filename="../Debugger/DebugUI.py" line="1661"/> <source>Profile of Script</source> <translation>Profil du Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <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> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> <translation>Entrer une instruction à évaluer</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> <translation>Entrer une instruction à exécuter</translation> </message> @@ -5778,7 +5836,7 @@ <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="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <source>Breakpoint Condition Error</source> <translation>Erreur de condition pour le point d'arrêt</translation> </message> @@ -5831,12 +5889,12 @@ <translation><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="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <source>Watch Expression Error</source> <translation>Erreur dans l'expression</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1375"/> + <location filename="../Debugger/DebugUI.py" line="1390"/> <source>Watch expression already exists</source> <translation>L'expression existe déjà</translation> </message> @@ -5873,74 +5931,74 @@ <translation type="unfinished">Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1021"/> + <location filename="../Debugger/DebugUI.py" line="1036"/> <source><p>The program has terminated with an exit status of {0}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1026"/> + <location filename="../Debugger/DebugUI.py" line="1041"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1092"/> + <location filename="../Debugger/DebugUI.py" line="1107"/> <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="1151"/> - <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="1166"/> + <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="1181"/> <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="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <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="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <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="1365"/> + <location filename="../Debugger/DebugUI.py" line="1380"/> <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="1369"/> + <location filename="../Debugger/DebugUI.py" line="1384"/> <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="1047"/> + <location filename="../Debugger/DebugUI.py" line="1062"/> <source>The program has terminated with an exit status of {0}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1051"/> + <location filename="../Debugger/DebugUI.py" line="1066"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1035"/> + <location filename="../Debugger/DebugUI.py" line="1050"/> <source>The program has terminated with an exit status of {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1038"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>"{0}" has terminated with an exit status of {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1057"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> @@ -5960,7 +6018,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1216"/> + <location filename="../Debugger/DebugUI.py" line="1231"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> @@ -18607,7 +18665,7 @@ <translation>Nouvelle fenêtre</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Open File</source> <translation>Ouvrir Fichier</translation> </message> @@ -18877,37 +18935,37 @@ <translation><b>Copier</b><p>Copie le texte sélectionné dans le presse-papier.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1604"/> + <location filename="../Helpviewer/HelpWindow.py" line="1605"/> <source>&File</source> <translation>&Fichier</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1627"/> + <location filename="../Helpviewer/HelpWindow.py" line="1628"/> <source>&Edit</source> <translation>&Edition</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1635"/> + <location filename="../Helpviewer/HelpWindow.py" line="1636"/> <source>&View</source> <translation>&Affichage</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1652"/> + <location filename="../Helpviewer/HelpWindow.py" line="1653"/> <source>&Go</source> <translation>A&ller</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1667"/> + <location filename="../Helpviewer/HelpWindow.py" line="1668"/> <source>H&istory</source> <translation>&Historique</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1675"/> + <location filename="../Helpviewer/HelpWindow.py" line="1676"/> <source>&Bookmarks</source> <translation>&Signets</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1752"/> + <location filename="../Helpviewer/HelpWindow.py" line="1753"/> <source>&Help</source> <translation>A&ide</translation> </message> @@ -18973,37 +19031,37 @@ <translation>Ctrl+C</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1763"/> + <location filename="../Helpviewer/HelpWindow.py" line="1764"/> <source>File</source> <translation>Fichier</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1789"/> + <location filename="../Helpviewer/HelpWindow.py" line="1790"/> <source>Edit</source> <translation>Édition</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1794"/> + <location filename="../Helpviewer/HelpWindow.py" line="1795"/> <source>View</source> <translation>Affichage</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1803"/> + <location filename="../Helpviewer/HelpWindow.py" line="1804"/> <source>Find</source> <translation>Recherche</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1843"/> + <location filename="../Helpviewer/HelpWindow.py" line="1844"/> <source>Help</source> <translation>Aide</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1850"/> + <location filename="../Helpviewer/HelpWindow.py" line="1851"/> <source>Go</source> <translation>Aller à</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Fichiers d'aide (*.html *.htm);;Fichiers PDF (*.pdf);;Fichiers CHM (*.chm);;Tous les fichiers (*)</translation> </message> @@ -19242,17 +19300,17 @@ <translation>Ctrl+1</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear icons database</source> <translation>Effacer la base d'icônes</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1372"/> + <location filename="../Helpviewer/HelpWindow.py" line="1373"/> <source>Clear the database of favicons</source> <translation>Effacer la base d'icônes</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1374"/> + <location filename="../Helpviewer/HelpWindow.py" line="1375"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>Effacer la base d'icônes</b><p>Efface la base d'icônes de l'URL visitée précédemment.</p></translation> </message> @@ -19332,22 +19390,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1741"/> + <location filename="../Helpviewer/HelpWindow.py" line="1742"/> <source>&Window</source> <translation type="unfinished">&Fenêtre</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1811"/> + <location filename="../Helpviewer/HelpWindow.py" line="1812"/> <source>Filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1816"/> + <location filename="../Helpviewer/HelpWindow.py" line="1817"/> <source>Filtered by: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2690"/> + <location filename="../Helpviewer/HelpWindow.py" line="2691"/> <source>Could not find an associated content.</source> <translation type="unfinished"></translation> </message> @@ -19412,22 +19470,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2813"/> + <location filename="../Helpviewer/HelpWindow.py" line="2814"/> <source>Updating search index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2883"/> + <location filename="../Helpviewer/HelpWindow.py" line="2884"/> <source>Looking for Documentation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2918"/> + <location filename="../Helpviewer/HelpWindow.py" line="2919"/> <source>Unfiltered</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2937"/> + <location filename="../Helpviewer/HelpWindow.py" line="2938"/> <source>Help Engine</source> <translation type="unfinished"></translation> </message> @@ -19447,7 +19505,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2380"/> + <location filename="../Helpviewer/HelpWindow.py" line="2381"/> <source>Full Screen</source> <translation type="unfinished"></translation> </message> @@ -19477,37 +19535,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1355"/> + <location filename="../Helpviewer/HelpWindow.py" line="1356"/> <source>Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1350"/> - <source>&Clear private data</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Helpviewer/HelpWindow.py" line="1357"/> + <location filename="../Helpviewer/HelpWindow.py" line="1358"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear &icons database</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1475"/> + <location filename="../Helpviewer/HelpWindow.py" line="1476"/> <source>Show the network monitor dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1690"/> + <location filename="../Helpviewer/HelpWindow.py" line="1691"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1732"/> + <location filename="../Helpviewer/HelpWindow.py" line="1733"/> <source>&Tools</source> <translation type="unfinished">&Outils</translation> </message> @@ -19572,7 +19625,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1823"/> + <location filename="../Helpviewer/HelpWindow.py" line="1824"/> <source>Settings</source> <translation type="unfinished">Configuration</translation> </message> @@ -19755,7 +19808,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2171"/> + <location filename="../Helpviewer/HelpWindow.py" line="2172"/> <source>Saved Tabs</source> <translation type="unfinished"></translation> </message> @@ -19819,57 +19872,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search Engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1388"/> + <location filename="../Helpviewer/HelpWindow.py" line="1389"/> <source>Configure the available search engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1390"/> + <location filename="../Helpviewer/HelpWindow.py" line="1391"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1406"/> + <location filename="../Helpviewer/HelpWindow.py" line="1407"/> <source>Manage the saved passwords</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1408"/> + <location filename="../Helpviewer/HelpWindow.py" line="1409"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>Ad Block</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>&Ad Block...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1422"/> + <location filename="../Helpviewer/HelpWindow.py" line="1423"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1424"/> + <location filename="../Helpviewer/HelpWindow.py" line="1425"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"></translation> </message> @@ -19909,145 +19962,145 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search &Engines...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2410"/> + <location filename="../Helpviewer/HelpWindow.py" line="2411"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. HTML5 offline storage will be deactivated. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1646"/> + <location filename="../Helpviewer/HelpWindow.py" line="1647"/> <source>Text Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3452"/> - <source>ISO</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Helpviewer/HelpWindow.py" line="3453"/> - <source>Windows</source> - <translation type="unfinished">Windows</translation> + <source>ISO</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3454"/> - <source>ISCII</source> - <translation type="unfinished"></translation> + <source>Windows</source> + <translation type="unfinished">Windows</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3455"/> - <source>Unicode</source> - <translation type="unfinished">Unicode</translation> + <source>ISCII</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3456"/> - <source>Other</source> - <translation type="unfinished">Autre</translation> + <source>Unicode</source> + <translation type="unfinished">Unicode</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3457"/> + <source>Other</source> + <translation type="unfinished">Autre</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="3458"/> <source>IBM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3479"/> + <location filename="../Helpviewer/HelpWindow.py" line="3480"/> <source>Default Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1486"/> + <location filename="../Helpviewer/HelpWindow.py" line="1487"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1490"/> + <location filename="../Helpviewer/HelpWindow.py" line="1491"/> <source>Shows the downloads window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1492"/> + <location filename="../Helpviewer/HelpWindow.py" line="1493"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1903"/> + <location filename="../Helpviewer/HelpWindow.py" line="1904"/> <source>VirusTotal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1907"/> + <location filename="../Helpviewer/HelpWindow.py" line="1908"/> <source>Scan current site</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source>VirusTotal Scan</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1507"/> + <location filename="../Helpviewer/HelpWindow.py" line="1508"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1509"/> + <location filename="../Helpviewer/HelpWindow.py" line="1510"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished">Ctrl+Shift+I</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1525"/> + <location filename="../Helpviewer/HelpWindow.py" line="1526"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1527"/> + <location filename="../Helpviewer/HelpWindow.py" line="1528"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1835"/> + <location filename="../Helpviewer/HelpWindow.py" line="1836"/> <source>Tools</source> <translation type="unfinished">Outils</translation> </message> @@ -20065,47 +20118,47 @@ <translation type="unfinished">Zoom arrière</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>Network Monitor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>&Network Monitor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1477"/> + <location filename="../Helpviewer/HelpWindow.py" line="1478"/> <source><b>Network Monitor...</b><p>Shows the network monitor dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2387"/> + <location filename="../Helpviewer/HelpWindow.py" line="2388"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1540"/> + <location filename="../Helpviewer/HelpWindow.py" line="1541"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1542"/> + <location filename="../Helpviewer/HelpWindow.py" line="1543"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1719"/> + <location filename="../Helpviewer/HelpWindow.py" line="1720"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> @@ -20135,42 +20188,42 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>Synchronize data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>&Synchronize Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1556"/> + <location filename="../Helpviewer/HelpWindow.py" line="1557"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1558"/> + <location filename="../Helpviewer/HelpWindow.py" line="1559"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>ClickToFlash</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>&ClickToFlash...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1439"/> + <location filename="../Helpviewer/HelpWindow.py" line="1440"/> <source>Configure ClickToFlash whitelist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1441"/> + <location filename="../Helpviewer/HelpWindow.py" line="1442"/> <source><b>ClickToFlash...</b><p>Opens a dialog to configure the ClickToFlash whitelist.</p></source> <translation type="unfinished"></translation> </message> @@ -20215,22 +20268,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1458"/> + <location filename="../Helpviewer/HelpWindow.py" line="1459"/> <source>Manage the saved SSL certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1460"/> + <location filename="../Helpviewer/HelpWindow.py" line="1461"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> @@ -20275,7 +20328,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2893"/> + <location filename="../Helpviewer/HelpWindow.py" line="2894"/> <source>eric6 Web Browser</source> <translation type="unfinished"></translation> </message> @@ -20290,32 +20343,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2077"/> + <location filename="../Helpviewer/HelpWindow.py" line="2078"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3743"/> + <location filename="../Helpviewer/HelpWindow.py" line="3744"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> @@ -20360,22 +20413,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1574"/> + <location filename="../Helpviewer/HelpWindow.py" line="1575"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1576"/> + <location filename="../Helpviewer/HelpWindow.py" line="1577"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> @@ -39490,7 +39543,7 @@ <translation><b>Code Coverage...</b><p>Affiche les informations de code coverage pour le projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Profile Data</source> <translation>Profiling des données</translation> </message> @@ -39510,7 +39563,7 @@ <translation><b>Profilling des données...</b><p>Affiche le profiling des données du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Application Diagram</source> <translation>Diagramme de l'application</translation> </message> @@ -39560,27 +39613,27 @@ <translation>&Documentation automatique</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>Search New Files</source> <translation>Rechercher des nouveaux fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>There were no new files found to be added.</source> <translation>Aucun fichier à ajouter n'a été trouvé.</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source>Version Control System</source> <translation>Système de conrôle des versions (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="4488"/> + <location filename="../Project/Project.py" line="4489"/> <source>Coverage Data</source> <translation>Coverage de données</translation> </message> <message> - <location filename="../Project/Project.py" line="4538"/> + <location filename="../Project/Project.py" line="4539"/> <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> @@ -39640,17 +39693,17 @@ <translation><b>Ajouter un répertoire...</b><p>Ouvre une fenêtre pour ajouter un répertoire au projet courant.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Code Coverage</source> <translation>Code Coverage</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Please select a coverage file</source> <translation>Sélectionner un fichier coverage</translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Please select a profile file</source> <translation>Sélectionner un fichier profile</translation> </message> @@ -39695,7 +39748,7 @@ <translation>Autre</translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Include module names?</source> <translation>Inclure les noms de modules ?</translation> </message> @@ -39943,7 +39996,7 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source>Create Package List</source> <translation>Création de la liste de package</translation> </message> @@ -39953,7 +40006,7 @@ <translation>Création de la liste de &package</translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source>Create Plugin Archive</source> <translation>Création de l'archive du plugin</translation> </message> @@ -39963,17 +40016,17 @@ <translation>Création de l'&archive du plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="4733"/> + <location filename="../Project/Project.py" line="4734"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Le fichier <b>PKGLIST</b> existe déjà.</p><p>Ecraser ?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4793"/> + <location filename="../Project/Project.py" line="4794"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation><p>Le fichier <b>PKGLIST</b> n'existe pas. Abandon...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4801"/> + <location filename="../Project/Project.py" line="4802"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Le projet n'a pas de script principal défini. Abandon...</translation> </message> @@ -40153,27 +40206,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> + <location filename="../Project/Project.py" line="4816"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4854"/> + <location filename="../Project/Project.py" line="4855"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4923"/> + <location filename="../Project/Project.py" line="4924"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -40248,12 +40301,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4358"/> + <location filename="../Project/Project.py" line="4359"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -40288,12 +40341,12 @@ <translation type="unfinished"><b>Création d'une archive de plugin (Snapshot)</b><p>Ceci permet de créer un plugin en utilisant la liste des fichiers indiqués dans le fichier PKGLIST. Le nom de l'archive est créé à partir du nom du script principal. Le champ 'version' du script principal est modifié pour indiquer une version snapshot.</p> {5 ?} {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4828"/> + <location filename="../Project/Project.py" line="4829"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4877"/> + <location filename="../Project/Project.py" line="4878"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation type="unfinished"></translation> </message> @@ -48619,47 +48672,47 @@ <translation>Shell</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="194"/> + <location filename="../QScintilla/Shell.py" line="197"/> <source>Passive >>> </source> <translation>Passif >>></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="222"/> + <location filename="../QScintilla/Shell.py" line="225"/> <source>Copy</source> <translation>Copier</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="223"/> + <location filename="../QScintilla/Shell.py" line="226"/> <source>Paste</source> <translation>Coller</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="228"/> + <location filename="../QScintilla/Shell.py" line="231"/> <source>Clear</source> <translation>Effacer</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="229"/> + <location filename="../QScintilla/Shell.py" line="232"/> <source>Reset</source> <translation>Réinitialiser</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="230"/> + <location filename="../QScintilla/Shell.py" line="233"/> <source>Reset and Clear</source> <translation>Effacer et réinitialiser</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="645"/> + <location filename="../QScintilla/Shell.py" line="665"/> <source>No.</source> <translation>Non.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="209"/> + <location filename="../QScintilla/Shell.py" line="212"/> <source>Start</source> <translation>Lancer...</translation> </message> @@ -48669,84 +48722,84 @@ <translation><b>La fenêtre Shell</b><p>Il s'agit simplement d'un interpreteur Python affiché dans une fenêtre. L'interpréteur affiché est celui utilisé pour le débogage du programme en cours .Cela signifie qu'on peut exécuter n'importe quelle commande durant le débogage, en utilisant l'environnement de débug en cours.</p><p>On peut utiliser les flèches pour rappeler les commandes enregistrées dans l'historique. En appuyant sur les flèches du haut et du bas, on peut aussi rappeler les commandes qui commencent par le début du mot tapé..</p><p>Le shell possède des commandes spéciales. 'Réinitialiser' tue le shell en cours et en redémarre un nouveau. 'Effacer' efface l'affichage, et 'Lancer...' est utilisé pour basculer d'un langage shell à l'autre ('Python' ou 'Ruby'). Ces commandes sont aussi disponibles via le menu contextuel du shell.</p><p>En appuyant sur la touche Tab après avoir saisi du texte, on affiche la liste des complétions possibles. L'entrée voulue peut être sélectionnée dans la liste. Si une seule entrée est disponible, elle sera sélectionnée automatiquement.</p><p>En mode débogage passif, le shell est disponible uniquement après que le programme débogué connecté à l'IDE a été terminé. Ceci est indiqué par une invite de commande différente et par une indication dans le titre de la fenêtre.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="642"/> + <location filename="../QScintilla/Shell.py" line="662"/> <source>Passive Debug Mode</source> <translation>Mode débogueur passif</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="214"/> + <location filename="../QScintilla/Shell.py" line="217"/> <source>History</source> <translation>Historique</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="215"/> + <location filename="../QScintilla/Shell.py" line="218"/> <source>Select entry</source> <translation>Sélection d'une entrée</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="216"/> + <location filename="../QScintilla/Shell.py" line="219"/> <source>Show</source> <translation>Afficher</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select History</source> <translation>Historique</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Sélectionner une entrée à executer (la plus récente est à la fin).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="643"/> + <location filename="../QScintilla/Shell.py" line="663"/> <source> Not connected</source> <translation>Non connexté</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="235"/> + <location filename="../QScintilla/Shell.py" line="238"/> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="221"/> + <location filename="../QScintilla/Shell.py" line="224"/> <source>Cut</source> <translation type="unfinished">Couper</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="647"/> + <location filename="../QScintilla/Shell.py" line="667"/> <source>{0} on {1}, {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="785"/> + <location filename="../QScintilla/Shell.py" line="805"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="793"/> + <location filename="../QScintilla/Shell.py" line="813"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1401"/> + <location filename="../QScintilla/Shell.py" line="1421"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="226"/> + <location filename="../QScintilla/Shell.py" line="229"/> <source>Find</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="686"/> + <location filename="../QScintilla/Shell.py" line="706"/> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -48754,26 +48807,26 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="718"/> + <location filename="../QScintilla/Shell.py" line="738"/> <source>Unspecified syntax error. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="696"/> + <location filename="../QScintilla/Shell.py" line="716"/> <source>Exception "{0}" {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="720"/> + <location filename="../QScintilla/Shell.py" line="740"/> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="743"/> + <location filename="../QScintilla/Shell.py" line="763"/> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished"></translation> @@ -58060,12 +58113,12 @@ <translation>&Regénérer les tâches de projet</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Extracting project tasks...</source> <translation>Extraction des tâches de projet...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Abort</source> <translation>Abandon</translation> </message> @@ -58080,7 +58133,7 @@ <translation>Configuration...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="707"/> + <location filename="../Tasks/TaskViewer.py" line="706"/> <source>Extracting project tasks... {0}</source> <translation type="unfinished"></translation> @@ -58106,12 +58159,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="702"/> + <location filename="../Tasks/TaskViewer.py" line="701"/> <source>Tasks</source> <translation type="unfinished">Tâches</translation> </message> @@ -60608,7 +60661,7 @@ <translation><b>Afficher les versions</b><p>Affiche les informations sur les versions.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <source>Report Bug</source> <translation>Rapport de bogue</translation> </message> @@ -60628,7 +60681,7 @@ <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="2657"/> + <location filename="../UI/UserInterface.py" line="2676"/> <source>Unittest</source> <translation>Tests unitaires</translation> </message> @@ -60683,7 +60736,7 @@ <translation><b>Raccourcis claviers</b><p>Edite les raccourcis claviers pour l'application.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5544"/> + <location filename="../UI/UserInterface.py" line="5571"/> <source>Export Keyboard Shortcuts</source> <translation>Exporter les raccourcis clavier</translation> </message> @@ -60703,7 +60756,7 @@ <translation><b>Exporter les raccourcis clavier</b><p>Exporte les raccourcis claviers de l'application.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Import Keyboard Shortcuts</source> <translation>Importer des raccourcis clavier</translation> </message> @@ -60723,7 +60776,7 @@ <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="2489"/> + <location filename="../UI/UserInterface.py" line="2506"/> <source>E&xtras</source> <translation>E&xtras</translation> </message> @@ -60733,42 +60786,42 @@ <translation type="obsolete">&Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2533"/> + <location filename="../UI/UserInterface.py" line="2552"/> <source>&Window</source> <translation>&Fenêtre</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583"/> + <location filename="../UI/UserInterface.py" line="2602"/> <source>&Help</source> <translation>A&ide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2656"/> + <location filename="../UI/UserInterface.py" line="2675"/> <source>Tools</source> <translation>Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <source>Help</source> <translation>Aide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2658"/> + <location filename="../UI/UserInterface.py" line="2677"/> <source>Settings</source> <translation>Configuration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2577"/> <source>&Toolbars</source> <translation>&Barres d'Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <source>Problem</source> <translation>Problème</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> @@ -60824,7 +60877,7 @@ <translation><b>Script de tests unitaires</b><p>Lance les tests unitaires sur le script en cours.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>Unittest Project</source> <translation>Projet de tests unitaires</translation> </message> @@ -60874,17 +60927,17 @@ <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="2472"/> + <location filename="../UI/UserInterface.py" line="2489"/> <source>&Unittest</source> <translation>Tests &unitaires</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> @@ -61019,27 +61072,27 @@ <translation>Visualisueur de tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <source>Save tasks</source> <translation>Enregistrement des tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <source>Read tasks</source> <translation>Lecture des tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <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="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <source>Documentation Missing</source> <translation>Documentation Manquante</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <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> @@ -61079,22 +61132,22 @@ <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Activate current editor</source> <translation>Activer l'éditeur courant</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> @@ -61104,37 +61157,37 @@ <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt4 Documentation</source> <translation>Documentation Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt&4 Documentation</source> <translation>Documentation Qt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2294"/> + <location filename="../UI/UserInterface.py" line="2311"/> <source>Open Qt4 Documentation</source> <translation>Lance la Documentation Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>Eric API Documentation</source> <translation>Documentation pour les API Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>&Eric API Documentation</source> <translation>Documentation pour les API &Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2408"/> + <location filename="../UI/UserInterface.py" line="2425"/> <source>Open Eric API Documentation</source> <translation>Ouvre la documentation sur les APIs Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4475"/> + <location filename="../UI/UserInterface.py" line="4502"/> <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> @@ -61185,82 +61238,82 @@ <translation>Rechercher des &mises à jour...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt4 Documentation</source> <translation> Documentation PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2324"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Open PyQt4 Documentation</source> <translation>Lance la documentation PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2502"/> + <location filename="../UI/UserInterface.py" line="2519"/> <source>Select Tool Group</source> <translation>Sélection d'un groupe d'outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2510"/> + <location filename="../UI/UserInterface.py" line="2527"/> <source>Se&ttings</source> <translation>&Configuration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2660"/> + <location filename="../UI/UserInterface.py" line="2679"/> <source>Profiles</source> <translation>Profils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3390"/> + <location filename="../UI/UserInterface.py" line="3417"/> <source>&Builtin Tools</source> <translation>Outils &internes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source>Documentation</source> <translation>Documentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5039"/> + <location filename="../UI/UserInterface.py" line="5066"/> <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="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Error during updates check</source> <translation>Erreur durant la recherche de mises à jour</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <source>Update available</source> <translation>Mise à jour disponible</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3021"/> + <location filename="../UI/UserInterface.py" line="3048"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Numéros de version</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360"/> + <location filename="../UI/UserInterface.py" line="6413"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Open Browser</source> <translation type="unfinished">Ouverture du navigateur</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <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="3435"/> + <location filename="../UI/UserInterface.py" line="3462"/> <source>Configure Tool Groups ...</source> <translation>Configuration des groupes d'outils...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3439"/> + <location filename="../UI/UserInterface.py" line="3466"/> <source>Configure current Tool Group ...</source> <translation>Configuration du groupe d'outils courant...</translation> </message> @@ -61275,17 +61328,17 @@ <translation>Afficher les &outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>&Cancel</source> <translation>&Annuler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Could not perform updates check.</source> <translation>Impossible de vérifier les mises à jour.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>First time usage</source> <translation>Première utilisation</translation> </message> @@ -61295,52 +61348,52 @@ <translation>Initialisation du gestionnaire de plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2569"/> + <location filename="../UI/UserInterface.py" line="2588"/> <source>P&lugins</source> <translation>P&lugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2661"/> + <location filename="../UI/UserInterface.py" line="2680"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>Plugin Infos</source> <translation>Infos Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2224"/> + <location filename="../UI/UserInterface.py" line="2241"/> <source>Show Plugin Infos</source> <translation>Affiche les infos sur les plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2225"/> + <location filename="../UI/UserInterface.py" line="2242"/> <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="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>&Plugin Infos...</source> <translation>Infos &Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3407"/> + <location filename="../UI/UserInterface.py" line="3434"/> <source>&Plugin Tools</source> <translation>Outils &plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2268"/> <source>Uninstall Plugin</source> <translation>Désinstaller un plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2246"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>&Uninstall Plugin...</source> <translation>&Désinstaller un plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2252"/> + <location filename="../UI/UserInterface.py" line="2269"/> <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> @@ -61350,17 +61403,17 @@ <translation>Activation des plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2494"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source>Wi&zards</source> <translation>As&sistants</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3558"/> + <location filename="../UI/UserInterface.py" line="3585"/> <source>&Show all</source> <translation>Tout &afficher</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3560"/> + <location filename="../UI/UserInterface.py" line="3587"/> <source>&Hide all</source> <translation>Tout &masquer</translation> </message> @@ -61380,42 +61433,42 @@ <translation>Affiche les versions disponibles pour le téléchargement</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6346"/> + <location filename="../UI/UserInterface.py" line="6399"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versions disponibles</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin Repository</source> <translation>Référentiel de plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin &Repository...</source> <translation>&Référentiel de plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2281"/> <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="2266"/> + <location filename="../UI/UserInterface.py" line="2283"/> <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="2238"/> + <location filename="../UI/UserInterface.py" line="2255"/> <source>Install Plugins</source> <translation>Installation de plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2233"/> + <location filename="../UI/UserInterface.py" line="2250"/> <source>&Install Plugins...</source> <translation>&Installation de plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239"/> + <location filename="../UI/UserInterface.py" line="2256"/> <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> @@ -61470,27 +61523,27 @@ <translation>Gestionnaire de &multi-projet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>External Tools</source> <translation>Outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <source>Save session</source> <translation>Enregistrer la session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <source>Read session</source> <translation>Chargement de session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2821"/> + <location filename="../UI/UserInterface.py" line="2848"/> <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="2835"/> + <location filename="../UI/UserInterface.py" line="2862"/> <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> @@ -61515,17 +61568,17 @@ <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="2814"/> + <location filename="../UI/UserInterface.py" line="2841"/> <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="2842"/> + <location filename="../UI/UserInterface.py" line="2869"/> <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="2849"/> + <location filename="../UI/UserInterface.py" line="2876"/> <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> @@ -61555,32 +61608,32 @@ <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="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>Restart application</source> <translation>Redémarrage de l'application</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <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="2578"/> + <location filename="../UI/UserInterface.py" line="2597"/> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2828"/> + <location filename="../UI/UserInterface.py" line="2855"/> <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="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Switch between tabs</source> <translation>Intervertir les onglets</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> @@ -61625,12 +61678,12 @@ <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="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Show next</source> <translation>Afficher le suivant</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Show previous</source> <translation>Afficher le précédent</translation> </message> @@ -61710,27 +61763,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>PySide Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>Py&Side Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2446"/> <source>Open PySide Documentation</source> <translation type="unfinished"></translation> </message> @@ -61750,109 +61803,109 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2924"/> + <location filename="../UI/UserInterface.py" line="2951"/> <source>External Tools/{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <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="4295"/> + <location filename="../UI/UserInterface.py" line="4322"/> <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="4362"/> + <location filename="../UI/UserInterface.py" line="4389"/> <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="4413"/> + <location filename="../UI/UserInterface.py" line="4440"/> <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="4455"/> + <location filename="../UI/UserInterface.py" line="4482"/> <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="4523"/> + <location filename="../UI/UserInterface.py" line="4550"/> <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="4578"/> + <location filename="../UI/UserInterface.py" line="4605"/> <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="4599"/> + <location filename="../UI/UserInterface.py" line="4626"/> <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="4690"/> + <location filename="../UI/UserInterface.py" line="4717"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4738"/> + <location filename="../UI/UserInterface.py" line="4765"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <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="4830"/> + <location filename="../UI/UserInterface.py" line="4857"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <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="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <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="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <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="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <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="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6196"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> @@ -61887,57 +61940,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2383"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384"/> + <location filename="../UI/UserInterface.py" line="2401"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2403"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6205"/> + <location filename="../UI/UserInterface.py" line="6258"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <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> @@ -62023,12 +62076,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4696"/> <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="6406"/> + <location filename="../UI/UserInterface.py" line="6459"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -62318,27 +62371,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt5 Documentation</source> <translation type="unfinished">Documentation Qt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt&5 Documentation</source> <translation type="unfinished">Documentation Qt&4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308"/> + <location filename="../UI/UserInterface.py" line="2325"/> <source>Open Qt5 Documentation</source> <translation type="unfinished">Lance la Documentation Qt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2538"/> + <location filename="../UI/UserInterface.py" line="2557"/> <source>&Windows</source> <translation type="unfinished">&Fenêtres</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2860"/> + <location filename="../UI/UserInterface.py" line="2887"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> @@ -62383,62 +62436,62 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt5 Documentation</source> <translation type="unfinished"> Documentation PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2343"/> + <location filename="../UI/UserInterface.py" line="2360"/> <source>Open PyQt5 Documentation</source> <translation type="unfinished">Lance la documentation PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5105"/> + <location filename="../UI/UserInterface.py" line="5132"/> <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="2295"/> + <location filename="../UI/UserInterface.py" line="2312"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2326"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2325"/> + <location filename="../UI/UserInterface.py" line="2342"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345"/> + <location filename="../UI/UserInterface.py" line="2362"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368"/> + <location filename="../UI/UserInterface.py" line="2385"/> <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="2431"/> + <location filename="../UI/UserInterface.py" line="2448"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -62458,7 +62511,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6191"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -62523,32 +62576,32 @@ <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="2410"/> + <location filename="../UI/UserInterface.py" line="2427"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <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="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric4 est à jour {5 ?} {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <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> @@ -62558,17 +62611,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3410"/> + <location filename="../UI/UserInterface.py" line="3437"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482"/> + <location filename="../UI/UserInterface.py" line="3509"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6154"/> + <location filename="../UI/UserInterface.py" line="6207"/> <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> @@ -62592,6 +62645,16 @@ <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="2189"/> + <source>Clear private data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <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> </context> <context> <name>UserPropertiesDialog</name> @@ -65036,17 +65099,17 @@ <translation>Fichier Modifié</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065"/> + <location filename="../ViewManager/ViewManager.py" line="5066"/> <source>&Clear</source> <translation>&Effacer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5059"/> + <location filename="../ViewManager/ViewManager.py" line="5060"/> <source>&Add</source> <translation>&Ajouter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5062"/> + <location filename="../ViewManager/ViewManager.py" line="5063"/> <source>&Edit...</source> <translation>&Editer...</translation> </message> @@ -66632,27 +66695,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>Edit Spelling Dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6227"/> + <location filename="../ViewManager/ViewManager.py" line="6228"/> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6242"/> + <location filename="../ViewManager/ViewManager.py" line="6243"/> <source>Editing {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6254"/> + <location filename="../ViewManager/ViewManager.py" line="6255"/> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished"></translation> </message> @@ -68587,7 +68650,7 @@ <context> <name>WebBrowserWindow</name> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3153"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3154"/> <source>eric6 Web Browser</source> <translation type="unfinished"></translation> </message> @@ -68607,7 +68670,7 @@ <translation type="unfinished">Rechercher</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1714"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1715"/> <source>JavaScript Console</source> <translation type="unfinished"></translation> </message> @@ -68664,7 +68727,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>New Private Window</source> <translation type="unfinished"></translation> </message> @@ -68690,7 +68753,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>Open File</source> <translation type="unfinished">Ouvrir Fichier</translation> </message> @@ -69595,7 +69658,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2662"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2663"/> <source>Full Screen</source> <translation type="unfinished"></translation> </message> @@ -69910,409 +69973,404 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1504"/> <source>Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/> - <source>&Clear private data</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1506"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear icons database</source> <translation type="unfinished">Effacer la base d'icônes</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear &icons database</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1521"/> <source>Clear the database of favicons</source> <translation type="unfinished">Effacer la base d'icônes</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1522"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1523"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation type="unfinished"><b>Effacer la base d'icônes</b><p>Efface la base d'icônes de l'URL visitée précédemment.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1532"/> <source>Manage saved Favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1538"/> <source>Show a dialog to manage the saved favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1539"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/> <source><b>Manage saved Favicons</b><p>This shows a dialog to manage the saved favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search Engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search &Engines...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1553"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1554"/> <source>Configure the available search engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1556"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1572"/> <source>Manage the saved passwords</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1573"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1574"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>Ad Block</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>&Ad Block...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1588"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1589"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1590"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1604"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1605"/> <source>Manage the accepted SSL certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1606"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/> <source><b>Manage SSL Certificate Errors...</b><p>Opens a dialog to manage the accepted SSL certificate errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1616"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1617"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1620"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1621"/> <source>Shows the downloads window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1622"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1637"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1638"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1639"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished">Ctrl+Shift+I</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1658"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1672"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>Synchronize data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>&Synchronize Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1686"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1689"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1705"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1706"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1718"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/> <source>Toggle the JavaScript console window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1720"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1721"/> <source><b>JavaScript Console</b><p>This toggles the JavaScript console window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1765"/> <source>&File</source> <translation type="unfinished">&Fichier</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1787"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1788"/> <source>&Edit</source> <translation type="unfinished">&Edition</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1804"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1805"/> <source>&View</source> <translation type="unfinished">&Affichage</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1812"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1813"/> <source>Text Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1818"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1819"/> <source>&Go</source> <translation type="unfinished">A&ller</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1833"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/> <source>H&istory</source> <translation type="unfinished">&Historique</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1845"/> <source>&Bookmarks</source> <translation type="unfinished">&Signets</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1861"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1887"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1888"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1900"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1901"/> <source>&Tools</source> <translation type="unfinished">&Outils</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1907"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1908"/> <source>&Window</source> <translation type="unfinished">&Fenêtre</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1920"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1921"/> <source>&Help</source> <translation type="unfinished">A&ide</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1931"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1932"/> <source>File</source> <translation type="unfinished">Fichier</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1959"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1960"/> <source>Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1971"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1972"/> <source>View</source> <translation type="unfinished">Affichage</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1980"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/> <source>Find</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1988"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1989"/> <source>Filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1993"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1994"/> <source>Filtered by: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2000"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2001"/> <source>Settings</source> <translation type="unfinished">Configuration</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2011"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2012"/> <source>Tools</source> <translation type="unfinished">Outils</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2020"/> <source>Help</source> <translation type="unfinished">Aide</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2026"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2027"/> <source>Go</source> <translation type="unfinished">Aller à</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2080"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/> <source>VirusTotal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2084"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2085"/> <source>Scan current site</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>OK</source> <translation type="unfinished">OK</translation> </message> @@ -70322,118 +70380,118 @@ <translation type="obsolete">Fichiers d'aide (*.html *.htm);;Fichiers PDF (*.pdf);;Fichiers CHM (*.chm);;Tous les fichiers (*)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2305"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2306"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p><p>It is based on QtWebEngine {1} and Chrome {2}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2425"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2426"/> <source>Saved Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2669"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2670"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2970"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2971"/> <source>Could not find an associated content.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3073"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3074"/> <source>Updating search index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3143"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3144"/> <source>Looking for Documentation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3178"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3179"/> <source>Unfiltered</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3197"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3198"/> <source>Help Engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3724"/> - <source>ISO</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3725"/> - <source>Windows</source> - <translation type="unfinished">Windows</translation> + <source>ISO</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3726"/> - <source>ISCII</source> - <translation type="unfinished"></translation> + <source>Windows</source> + <translation type="unfinished">Windows</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3727"/> - <source>Unicode</source> + <source>ISCII</source> <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3728"/> - <source>Other</source> - <translation type="unfinished">Autre</translation> + <source>Unicode</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3729"/> + <source>Other</source> + <translation type="unfinished">Autre</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3730"/> <source>IBM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3751"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3752"/> <source>Default Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source>VirusTotal Scan</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4043"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4044"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1729"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1730"/> <source>Tab Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/> <source>Shows the tab manager window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1735"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/> <source><b>Tab Manager</b><p>Shows the tab manager window.</p></source> <translation type="unfinished"></translation> </message> @@ -70469,7 +70527,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>HTML Files (*.html *.htm *.mhtml);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_it.ts Tue Aug 23 19:02:43 2016 +0200 +++ b/i18n/eric6_it.ts Wed Aug 24 20:00:29 2016 +0200 @@ -2830,6 +2830,64 @@ </message> </context> <context> + <name>ClearPrivateDataDialog</name> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="14"/> + <source>Clear Private Data</source> + <translation type="unfinished">Elimina Dati Privati</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="23"/> + <source>Select to clear the list of recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="26"/> + <source>Recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="36"/> + <source>Select to clear the list of recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="39"/> + <source>Recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="49"/> + <source>Select to clear the list of recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="52"/> + <source>Recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="62"/> + <source>Select to clear the debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="65"/> + <source>Debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="75"/> + <source>Select to clear the shell histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="78"/> + <source>Shell histories</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>ClickToFlash</name> <message> <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.ui" line="43"/> @@ -5346,7 +5404,7 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1765"/> + <location filename="../Debugger/DebugUI.py" line="1780"/> <source>Run Script</source> <translation>Esegui Script</translation> </message> @@ -5366,7 +5424,7 @@ <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="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>Run Project</source> <translation>Esegui Progetto</translation> </message> @@ -5466,7 +5524,7 @@ <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="1887"/> + <location filename="../Debugger/DebugUI.py" line="1902"/> <source>Debug Script</source> <translation>Debug dello script</translation> </message> @@ -5486,7 +5544,7 @@ <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="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <source>Debug Project</source> <translation>Debug del Progetto</translation> </message> @@ -5611,7 +5669,7 @@ <translation><b>Stop</b><p>Ferma la sessione di debug.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> <translation>Valuta</translation> </message> @@ -5626,7 +5684,7 @@ <translation>Valuta nel contesto corrente</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> <translation>Esegui</translation> </message> @@ -5726,57 +5784,57 @@ <translation>&Breakpoints</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1073"/> + <location filename="../Debugger/DebugUI.py" line="1088"/> <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="1110"/> + <location filename="../Debugger/DebugUI.py" line="1125"/> <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="1230"/> + <location filename="../Debugger/DebugUI.py" line="1245"/> <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="1540"/> + <location filename="../Debugger/DebugUI.py" line="1555"/> <source>Coverage of Project</source> <translation>Analisi del Progetto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1527"/> + <location filename="../Debugger/DebugUI.py" line="1542"/> <source>Coverage of Script</source> <translation>Analisi delle Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <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="1659"/> + <location filename="../Debugger/DebugUI.py" line="1674"/> <source>Profile of Project</source> <translation>Profilazione del progetto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1646"/> + <location filename="../Debugger/DebugUI.py" line="1661"/> <source>Profile of Script</source> <translation>Profilazione dello script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <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="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> <translation>Inserisci l'istruzione da valutare</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> <translation>Inserisci l'istruzione da eseguire</translation> </message> @@ -5821,7 +5879,7 @@ <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="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <source>Breakpoint Condition Error</source> <translation>Errore condizione di interruzione</translation> </message> @@ -5874,12 +5932,12 @@ <translation><b>Valuta</b><p>Valuta un'espressione nel contesto corrente del programma debuggato. Il risultato è mostrato nella shell.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <source>Watch Expression Error</source> <translation>Errore espressione di watch</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1375"/> + <location filename="../Debugger/DebugUI.py" line="1390"/> <source>Watch expression already exists</source> <translation>L'espressione di controllo esiste già</translation> </message> @@ -5916,74 +5974,74 @@ <translation>Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1021"/> + <location filename="../Debugger/DebugUI.py" line="1036"/> <source><p>The program has terminated with an exit status of {0}.</p></source> <translation><p>Il programma è terminato con uno stato di uscita di {0}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1026"/> + <location filename="../Debugger/DebugUI.py" line="1041"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> <translation><p><b>{0}</b> è terminato con lo stato di uscita {1}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1092"/> + <location filename="../Debugger/DebugUI.py" line="1107"/> <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="1151"/> - <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="1166"/> + <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="1181"/> <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="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <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="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <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="1365"/> + <location filename="../Debugger/DebugUI.py" line="1380"/> <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="1369"/> + <location filename="../Debugger/DebugUI.py" line="1384"/> <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="1047"/> + <location filename="../Debugger/DebugUI.py" line="1062"/> <source>The program has terminated with an exit status of {0}. </source> <translation>Il programma è terminato con uno stato di uscita di {0}.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1051"/> + <location filename="../Debugger/DebugUI.py" line="1066"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation>"{0}" è terminato con lo stato di uscita {1}.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1057"/> <source>Program terminated</source> <translation>Programma terminato</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1035"/> + <location filename="../Debugger/DebugUI.py" line="1050"/> <source>The program has terminated with an exit status of {0}.</source> <translation>Il programma è terminato con un 'exit status' di {0}.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1038"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>"{0}" has terminated with an exit status of {1}.</source> <translation>"{0}" è terminato con un 'exit status" di {1}.</translation> </message> @@ -6003,7 +6061,7 @@ <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="1216"/> + <location filename="../Debugger/DebugUI.py" line="1231"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> @@ -18743,7 +18801,7 @@ <translation>Nuova finestra</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Open File</source> <translation>Apri File</translation> </message> @@ -19013,37 +19071,37 @@ <translation><b>Copia</b><p>Copia il testo selezionato nella clipboard.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1604"/> + <location filename="../Helpviewer/HelpWindow.py" line="1605"/> <source>&File</source> <translation>&File</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1627"/> + <location filename="../Helpviewer/HelpWindow.py" line="1628"/> <source>&Edit</source> <translation>&Edita</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1635"/> + <location filename="../Helpviewer/HelpWindow.py" line="1636"/> <source>&View</source> <translation>&Visualizza</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1652"/> + <location filename="../Helpviewer/HelpWindow.py" line="1653"/> <source>&Go</source> <translation>&Vai</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1667"/> + <location filename="../Helpviewer/HelpWindow.py" line="1668"/> <source>H&istory</source> <translation>Cronolog&ia</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1675"/> + <location filename="../Helpviewer/HelpWindow.py" line="1676"/> <source>&Bookmarks</source> <translation>Segnali&bri</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1752"/> + <location filename="../Helpviewer/HelpWindow.py" line="1753"/> <source>&Help</source> <translation>&Help</translation> </message> @@ -19109,37 +19167,37 @@ <translation>Ctrl+C</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1763"/> + <location filename="../Helpviewer/HelpWindow.py" line="1764"/> <source>File</source> <translation>File</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1789"/> + <location filename="../Helpviewer/HelpWindow.py" line="1790"/> <source>Edit</source> <translation>Modifica</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1794"/> + <location filename="../Helpviewer/HelpWindow.py" line="1795"/> <source>View</source> <translation>Visualizza</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1803"/> + <location filename="../Helpviewer/HelpWindow.py" line="1804"/> <source>Find</source> <translation>Trova</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1843"/> + <location filename="../Helpviewer/HelpWindow.py" line="1844"/> <source>Help</source> <translation>Aiuto</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1850"/> + <location filename="../Helpviewer/HelpWindow.py" line="1851"/> <source>Go</source> <translation>Vai</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>File di help (*.html *.htm);;File PDF (*.pdf);;File CHM (*.chm);;Tutti i file (*)</translation> </message> @@ -19378,17 +19436,17 @@ <translation>Ctrl+1</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear icons database</source> <translation>Pulisci il database delle icone</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1372"/> + <location filename="../Helpviewer/HelpWindow.py" line="1373"/> <source>Clear the database of favicons</source> <translation>Pulisci il database delle favicone</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1374"/> + <location filename="../Helpviewer/HelpWindow.py" line="1375"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>Pulisci il database delle icone</b><p>Pulisci il databse delle favicons dei siti visitati precedentemente.</p></translation> </message> @@ -19528,42 +19586,42 @@ <translation><b>Reindicizza la documentazione</b><p>Reindicizza l'insieme della documentazione</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1741"/> + <location filename="../Helpviewer/HelpWindow.py" line="1742"/> <source>&Window</source> <translation>&Finestra</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1811"/> + <location filename="../Helpviewer/HelpWindow.py" line="1812"/> <source>Filter</source> <translation>Filtro</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1816"/> + <location filename="../Helpviewer/HelpWindow.py" line="1817"/> <source>Filtered by: </source> <translation>Filtrato per:</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2690"/> + <location filename="../Helpviewer/HelpWindow.py" line="2691"/> <source>Could not find an associated content.</source> <translation>Non posso trovare un contenuto associato.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2813"/> + <location filename="../Helpviewer/HelpWindow.py" line="2814"/> <source>Updating search index</source> <translation>Aggiornamento indice di ricerca</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2883"/> + <location filename="../Helpviewer/HelpWindow.py" line="2884"/> <source>Looking for Documentation...</source> <translation>Ricerca documentazione...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2918"/> + <location filename="../Helpviewer/HelpWindow.py" line="2919"/> <source>Unfiltered</source> <translation>Non filtrato</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2937"/> + <location filename="../Helpviewer/HelpWindow.py" line="2938"/> <source>Help Engine</source> <translation>Motore di help</translation> </message> @@ -19583,7 +19641,7 @@ <translation><b>Navigazione anonima</b><p>Attiva la navigazione anonima. In questa modalità la cronologia non è più registrata.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2380"/> + <location filename="../Helpviewer/HelpWindow.py" line="2381"/> <source>Full Screen</source> <translation>Tutto schermo</translation> </message> @@ -19613,37 +19671,37 @@ <translation>&Reindicizza la documentazione</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1355"/> + <location filename="../Helpviewer/HelpWindow.py" line="1356"/> <source>Clear private data</source> <translation>Pulisci dati privati</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="1350"/> <source>&Clear private data</source> - <translation>Pulis&ci dati privati</translation> - </message> - <message> - <location filename="../Helpviewer/HelpWindow.py" line="1357"/> + <translation type="obsolete">Pulis&ci dati privati</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="1358"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Pulisci dati privati</b><p>Pulische i dati privati come la cronologia di navigazione, cronologia ricerche o il database delle favicon.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear &icons database</source> <translation>Pulisci database delle &icone</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1475"/> + <location filename="../Helpviewer/HelpWindow.py" line="1476"/> <source>Show the network monitor dialog</source> <translation>Mostra il dialogo del network monitor</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1690"/> + <location filename="../Helpviewer/HelpWindow.py" line="1691"/> <source>&Settings</source> <translation>Impo&stazioni</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1732"/> + <location filename="../Helpviewer/HelpWindow.py" line="1733"/> <source>&Tools</source> <translation>&Tools</translation> </message> @@ -19708,7 +19766,7 @@ <translation><b>Cookies</b><p>Configura la gestione dei cookie.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1823"/> + <location filename="../Helpviewer/HelpWindow.py" line="1824"/> <source>Settings</source> <translation>Impostazioni</translation> </message> @@ -19891,7 +19949,7 @@ <translation><b>Aggiungi ai segnalibri tutte le linguette...</b><p>Apri un dialogo per aggiungere ai segnalibri tutte le linguette aperte.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2171"/> + <location filename="../Helpviewer/HelpWindow.py" line="2172"/> <source>Saved Tabs</source> <translation>Salva Linguette</translation> </message> @@ -19955,57 +20013,57 @@ <translation><b>Salva come...</b><p>Salva la pagina corrente su disco.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search Engines</source> <translation>Configura motori di ricerca</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1388"/> + <location filename="../Helpviewer/HelpWindow.py" line="1389"/> <source>Configure the available search engines</source> <translation>Configura i motori di ricerca disponibili</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1390"/> + <location filename="../Helpviewer/HelpWindow.py" line="1391"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation><b>Configura motori di ricerca...</b><p>Apri un dialogo per configurare i motori di ricerca disponibi.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords</source> <translation>Gestisci password salvate</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords...</source> <translation>Gestisci password salvate...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1406"/> + <location filename="../Helpviewer/HelpWindow.py" line="1407"/> <source>Manage the saved passwords</source> <translation>Gestisci le password salvate</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1408"/> + <location filename="../Helpviewer/HelpWindow.py" line="1409"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation><b>Gestisci password salvate...</b><p>Apre un dialogo per gestire le password salvate.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>Ad Block</source> <translation>Ad Block</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>&Ad Block...</source> <translation>&Ad Block...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1422"/> + <location filename="../Helpviewer/HelpWindow.py" line="1423"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Configura le regole di sottoscrizione di AdBlock</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1424"/> + <location filename="../Helpviewer/HelpWindow.py" line="1425"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Apre un dialogo per configurare le regole di sottoscrizione di AdBlock.</p></translation> </message> @@ -20045,145 +20103,145 @@ <translation><b>Offline Storage</b><p>Apre un dialogo per configurare lo storage offline.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search &Engines...</source> <translation>Configura motori di &ricerca...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2410"/> + <location filename="../Helpviewer/HelpWindow.py" line="2411"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. HTML5 offline storage will be deactivated. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation><b>Sei sicuro di voler attivare la navigazione riservata?</b><p>Quando la navigazione riservata è attivata, le pagine web non sono aggiunte alla cronologia, le ricerche non sono aggiunte alla lista delle ultime ricerche e le icone dei siti e i cookie non sono salvati, l'offline storage di HTML5 viene disattivato. Fino alla chiusura della finestra, puoi premere sui pulsanti Precedente e Successivo per tornare alle pagine web che hai visitato.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1646"/> + <location filename="../Helpviewer/HelpWindow.py" line="1647"/> <source>Text Encoding</source> <translation>Codifica testo</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3452"/> - <source>ISO</source> - <translation>ISO</translation> - </message> - <message> <location filename="../Helpviewer/HelpWindow.py" line="3453"/> - <source>Windows</source> - <translation>Windows</translation> + <source>ISO</source> + <translation>ISO</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3454"/> - <source>ISCII</source> - <translation>ISCII</translation> + <source>Windows</source> + <translation>Windows</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3455"/> - <source>Unicode</source> - <translation>Unicode</translation> + <source>ISCII</source> + <translation>ISCII</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3456"/> - <source>Other</source> - <translation>Altro</translation> + <source>Unicode</source> + <translation>Unicode</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3457"/> + <source>Other</source> + <translation>Altro</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="3458"/> <source>IBM</source> <translation>IBM</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3479"/> + <location filename="../Helpviewer/HelpWindow.py" line="3480"/> <source>Default Encoding</source> <translation>Encoding di default</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1486"/> + <location filename="../Helpviewer/HelpWindow.py" line="1487"/> <source>Downloads</source> <translation>Downloads</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1490"/> + <location filename="../Helpviewer/HelpWindow.py" line="1491"/> <source>Shows the downloads window</source> <translation>Mostra la finestra dei download</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1492"/> + <location filename="../Helpviewer/HelpWindow.py" line="1493"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation><b>Download</b><p>Mostra la finestra dei download.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1903"/> + <location filename="../Helpviewer/HelpWindow.py" line="1904"/> <source>VirusTotal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1907"/> + <location filename="../Helpviewer/HelpWindow.py" line="1908"/> <source>Scan current site</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source>VirusTotal Scan</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1507"/> + <location filename="../Helpviewer/HelpWindow.py" line="1508"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1509"/> + <location filename="../Helpviewer/HelpWindow.py" line="1510"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1525"/> + <location filename="../Helpviewer/HelpWindow.py" line="1526"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1527"/> + <location filename="../Helpviewer/HelpWindow.py" line="1528"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1835"/> + <location filename="../Helpviewer/HelpWindow.py" line="1836"/> <source>Tools</source> <translation type="unfinished"></translation> </message> @@ -20200,47 +20258,47 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>Network Monitor</source> <translation type="unfinished">Network Monitor</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>&Network Monitor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1477"/> + <location filename="../Helpviewer/HelpWindow.py" line="1478"/> <source><b>Network Monitor...</b><p>Shows the network monitor dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2387"/> + <location filename="../Helpviewer/HelpWindow.py" line="2388"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1540"/> + <location filename="../Helpviewer/HelpWindow.py" line="1541"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1542"/> + <location filename="../Helpviewer/HelpWindow.py" line="1543"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1719"/> + <location filename="../Helpviewer/HelpWindow.py" line="1720"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> @@ -20270,42 +20328,42 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>Synchronize data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>&Synchronize Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1556"/> + <location filename="../Helpviewer/HelpWindow.py" line="1557"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1558"/> + <location filename="../Helpviewer/HelpWindow.py" line="1559"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>ClickToFlash</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>&ClickToFlash...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1439"/> + <location filename="../Helpviewer/HelpWindow.py" line="1440"/> <source>Configure ClickToFlash whitelist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1441"/> + <location filename="../Helpviewer/HelpWindow.py" line="1442"/> <source><b>ClickToFlash...</b><p>Opens a dialog to configure the ClickToFlash whitelist.</p></source> <translation type="unfinished"></translation> </message> @@ -20350,22 +20408,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1458"/> + <location filename="../Helpviewer/HelpWindow.py" line="1459"/> <source>Manage the saved SSL certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1460"/> + <location filename="../Helpviewer/HelpWindow.py" line="1461"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> @@ -20410,7 +20468,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2893"/> + <location filename="../Helpviewer/HelpWindow.py" line="2894"/> <source>eric6 Web Browser</source> <translation type="unfinished">Web Browser di eric5 {6 ?}</translation> </message> @@ -20425,32 +20483,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2077"/> + <location filename="../Helpviewer/HelpWindow.py" line="2078"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3743"/> + <location filename="../Helpviewer/HelpWindow.py" line="3744"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> @@ -20495,22 +20553,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1574"/> + <location filename="../Helpviewer/HelpWindow.py" line="1575"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1576"/> + <location filename="../Helpviewer/HelpWindow.py" line="1577"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> @@ -39693,7 +39751,7 @@ <translation><b>Analisi codice...</b><p>Mostra le analisi del codice di tutti i file Python nel progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Profile Data</source> <translation>Profilazione dati</translation> </message> @@ -39713,7 +39771,7 @@ <translation><b>Profilazione dati...</b><p>Mostra la profilazione dei dati per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Application Diagram</source> <translation>Diagrammi dell'applicazione</translation> </message> @@ -39763,27 +39821,27 @@ <translation>&Documentazione sorgenti</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>Search New Files</source> <translation>Cerca Nuovi File</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>There were no new files found to be added.</source> <translation>Non sono stati trovati file da aggiungere.</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source>Version Control System</source> <translation>Version Control System</translation> </message> <message> - <location filename="../Project/Project.py" line="4488"/> + <location filename="../Project/Project.py" line="4489"/> <source>Coverage Data</source> <translation>Dati Analisi</translation> </message> <message> - <location filename="../Project/Project.py" line="4538"/> + <location filename="../Project/Project.py" line="4539"/> <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> @@ -39843,17 +39901,17 @@ <translation><b>Aggiungi directory...</b><p>Apre un dialogo per aggiungere una directory al progetto corrente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Code Coverage</source> <translation>Analisi codice</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Please select a coverage file</source> <translation>Per favore seleziona un file per l'analisi</translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Please select a profile file</source> <translation>Per favore seleziona un file per la profilazione</translation> </message> @@ -39898,7 +39956,7 @@ <translation>Altro</translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Include module names?</source> <translation>Includi i nomi dei moduli ?</translation> </message> @@ -40146,7 +40204,7 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source>Create Package List</source> <translation>Crea lista del package</translation> </message> @@ -40156,7 +40214,7 @@ <translation>Crea lista del &package</translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source>Create Plugin Archive</source> <translation>Crea un archivio per il plugin</translation> </message> @@ -40166,17 +40224,17 @@ <translation>Crea un &archivio per il plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="4733"/> + <location filename="../Project/Project.py" line="4734"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Il file <b>PKGLIST</b> esiste già.</p><p>Sovrascriverlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4793"/> + <location filename="../Project/Project.py" line="4794"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation><p>Il file <b>PKGLIST </b> non esiste. Uscita...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4801"/> + <location filename="../Project/Project.py" line="4802"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Non c'è uno script principale definito per il progetto. Esco...</translation> </message> @@ -40356,27 +40414,27 @@ <translation><p>La directory del progetto <b>{0}</b> non può essere creata.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>VCS selezionato <b>{0}</b>non trovato.<br>Disabilito il controllo di versione.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Il file <b>PKGLIST</b> non può essere creato.<br />Motivo: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> + <location filename="../Project/Project.py" line="4816"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation><p>Il file <b>PKGLIST</b> non può essere letto.<br />Motivo: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4854"/> + <location filename="../Project/Project.py" line="4855"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere aggiunto all'archivio.Lo ignoro.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4923"/> + <location filename="../Project/Project.py" line="4924"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Il file plugin <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> </message> @@ -40451,12 +40509,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4358"/> + <location filename="../Project/Project.py" line="4359"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -40491,12 +40549,12 @@ <translation type="unfinished"><b>Crea un archivio plugin (Snapshot)</b><p>Crea un file archivio di un plugin eric5 usando la lista di file fornita nel file PKGLIST. Il nome dell'archivio è determinato dal nome dello script principale. La versione dello script principale viene modificata per riflettere la release dello snapshot.</p> {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4828"/> + <location filename="../Project/Project.py" line="4829"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"><p>Il file archivio del plugin di eric5<b>{0}</b> non può essere creato.<br />Motivo: {1}</p> {6 ?} {0}?} {1}?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4877"/> + <location filename="../Project/Project.py" line="4878"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation type="unfinished"><p>Il file archivio del plugin di eric5<b>{0} </b> è stato creato con successo.</p> {6 ?} {0}?}</translation> </message> @@ -48801,47 +48859,47 @@ <translation>Shell</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="194"/> + <location filename="../QScintilla/Shell.py" line="197"/> <source>Passive >>> </source> <translation>Passivo '>>>'</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="222"/> + <location filename="../QScintilla/Shell.py" line="225"/> <source>Copy</source> <translation>Copia</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="223"/> + <location filename="../QScintilla/Shell.py" line="226"/> <source>Paste</source> <translation>Incolla</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="228"/> + <location filename="../QScintilla/Shell.py" line="231"/> <source>Clear</source> <translation>Pulisci</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="229"/> + <location filename="../QScintilla/Shell.py" line="232"/> <source>Reset</source> <translation>Resetta</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="230"/> + <location filename="../QScintilla/Shell.py" line="233"/> <source>Reset and Clear</source> <translation>Resetta e pulisci</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source>Drop Error</source> <translation>Drop Error</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="645"/> + <location filename="../QScintilla/Shell.py" line="665"/> <source>No.</source> <translation>No.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="209"/> + <location filename="../QScintilla/Shell.py" line="212"/> <source>Start</source> <translation>Inizia</translation> </message> @@ -48851,86 +48909,86 @@ <translation><b>La finestra Shell</b><p>Questo è un semplice interprete che viene eseguito in una finestra. L'interprete è quello usato per eseguire il programma sotto debug. Significa che puoi eseguire qualsiasi comando mentre il programma in debug viene eseguito.</p><p>Puoi usare i tasti cursore mentre inserisci i comandi. C'è inoltre una cronologia dei comandi che può essere richiamata usando i tanti su e giù. Premendo i tasti su e giù dopo che del testo è stato inserito verrà avviata una ricerca incrementale.</p><p>La shell ha alcuni comandi speciali. 'reset' uccide la shell e ne avvia una nuova. 'clear' pulisce la finestra della shell. 'start' è usato per cambiare il linguaggio della shell e deve essere seguito da uno dei linguaggi supportati. I linguaggi supportati sono elencati dal comando 'languages'. Questi comandi (eccetto 'languages') sono disponibili tramite un menù contestuale.</p><p>Premendo il tasto Tab dopo aver inserito del testo verrà mostrata una lista di possibili comandi. L'elemento rilevante può essere selezionato dalla lista. Se solo un elemento è disponibile, sarà inserito automaticamente.</p><p>In modalità di debug passiva la shell è disponibile solo dopo che il programma debuggato si è connesso all'IDE fino a quando è terminato. Questo viene indicato da un prompt differente e dal titolo della finestra.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="642"/> + <location filename="../QScintilla/Shell.py" line="662"/> <source>Passive Debug Mode</source> <translation>Passive Debug Mode</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="214"/> + <location filename="../QScintilla/Shell.py" line="217"/> <source>History</source> <translation>Cronologia</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="215"/> + <location filename="../QScintilla/Shell.py" line="218"/> <source>Select entry</source> <translation>Seleziona elemento</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="216"/> + <location filename="../QScintilla/Shell.py" line="219"/> <source>Show</source> <translation>Mostra</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select History</source> <translation>Selezione cronologia</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Seleziona l'elemento dalla cronologia da esegurie (i più recenti sono gli ultimi).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="643"/> + <location filename="../QScintilla/Shell.py" line="663"/> <source> Not connected</source> <translation> Non connesso</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="235"/> + <location filename="../QScintilla/Shell.py" line="238"/> <source>Configure...</source> <translation>Configura...</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="221"/> + <location filename="../QScintilla/Shell.py" line="224"/> <source>Cut</source> <translation>Taglia</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="647"/> + <location filename="../QScintilla/Shell.py" line="667"/> <source>{0} on {1}, {2}</source> <translation></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="785"/> + <location filename="../QScintilla/Shell.py" line="805"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="793"/> + <location filename="../QScintilla/Shell.py" line="813"/> <source>StdErr: {0}</source> <translation>StdErr: {0*</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1401"/> + <location filename="../QScintilla/Shell.py" line="1421"/> <source>Shell language "{0}" not supported. </source> <translation>Il linguaggio "{0}" della shell non è supportato. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> non è un file.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="226"/> + <location filename="../QScintilla/Shell.py" line="229"/> <source>Find</source> <translation>Trova</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="686"/> + <location filename="../QScintilla/Shell.py" line="706"/> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -48938,26 +48996,26 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="718"/> + <location filename="../QScintilla/Shell.py" line="738"/> <source>Unspecified syntax error. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="696"/> + <location filename="../QScintilla/Shell.py" line="716"/> <source>Exception "{0}" {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="720"/> + <location filename="../QScintilla/Shell.py" line="740"/> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="743"/> + <location filename="../QScintilla/Shell.py" line="763"/> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished"></translation> @@ -58273,12 +58331,12 @@ <translation>&Rigenera task del progetto</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Extracting project tasks...</source> <translation>Estrazione dei task del progetto...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Abort</source> <translation>Termina</translation> </message> @@ -58293,7 +58351,7 @@ <translation>Configura...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="707"/> + <location filename="../Tasks/TaskViewer.py" line="706"/> <source>Extracting project tasks... {0}</source> <translation>Estrazione dei task del progetto... @@ -58320,12 +58378,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="702"/> + <location filename="../Tasks/TaskViewer.py" line="701"/> <source>Tasks</source> <translation type="unfinished">Task</translation> </message> @@ -60873,7 +60931,7 @@ <translation><b>Mostra versioni</b><p>Mostra delle informazioni sulla versione.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <source>Report Bug</source> <translation>Segnala Bug</translation> </message> @@ -60893,7 +60951,7 @@ <translation><b>>Segnala Bug...</b><p>Apre un dialogo per segnalare un bug.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2657"/> + <location filename="../UI/UserInterface.py" line="2676"/> <source>Unittest</source> <translation>Unittest</translation> </message> @@ -60948,7 +61006,7 @@ <translation><b>Scorciatoie da tastiera</b><p>Imposta le scorciatoie da tastiera dell'applicazione con i valori personalizzati.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5544"/> + <location filename="../UI/UserInterface.py" line="5571"/> <source>Export Keyboard Shortcuts</source> <translation>Esporta scorciatoie da tastiera</translation> </message> @@ -60968,7 +61026,7 @@ <translation><b>Esporta scorciatoie da tastiera</b><p>Esporta le scorciatoie da tastiera dell'applicazione.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Import Keyboard Shortcuts</source> <translation>Importa scorciatoie da tastiera</translation> </message> @@ -60988,7 +61046,7 @@ <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="2489"/> + <location filename="../UI/UserInterface.py" line="2506"/> <source>E&xtras</source> <translation>E&xtra</translation> </message> @@ -60998,42 +61056,42 @@ <translation type="obsolete">S&trumenti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2533"/> + <location filename="../UI/UserInterface.py" line="2552"/> <source>&Window</source> <translation>&Finestre</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583"/> + <location filename="../UI/UserInterface.py" line="2602"/> <source>&Help</source> <translation>&Help</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2656"/> + <location filename="../UI/UserInterface.py" line="2675"/> <source>Tools</source> <translation>Strumenti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <source>Help</source> <translation>Aiuto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2658"/> + <location filename="../UI/UserInterface.py" line="2677"/> <source>Settings</source> <translation>Impostazioni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2577"/> <source>&Toolbars</source> <translation>&Toolbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <source>Process Generation Error</source> <translation>Errore Generazione Processo</translation> </message> @@ -61088,7 +61146,7 @@ <translation><b>Script Unittest</b><p>Esegui unittest con lo script corrente.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>Unittest Project</source> <translation>Progetto Unittest</translation> </message> @@ -61138,17 +61196,17 @@ <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="2472"/> + <location filename="../UI/UserInterface.py" line="2489"/> <source>&Unittest</source> <translation>&Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source>Drop Error</source> <translation>Errore Drop</translation> </message> @@ -61283,27 +61341,27 @@ <translation>Task-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <source>Save tasks</source> <translation>Salva task</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <source>Read tasks</source> <translation>Leggi task</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <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="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <source>Documentation Missing</source> <translation>Documentazione mancante</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <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> @@ -61343,22 +61401,22 @@ <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Activate current editor</source> <translation>Attiva editor corrente</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> @@ -61368,37 +61426,37 @@ <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt4 Documentation</source> <translation>Documentazione Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt&4 Documentation</source> <translation>Documentazione Qt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2294"/> + <location filename="../UI/UserInterface.py" line="2311"/> <source>Open Qt4 Documentation</source> <translation>Apri documentazione su Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>Eric API Documentation</source> <translation>Documentazione API di Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>&Eric API Documentation</source> <translation>Documentazione API di &Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2408"/> + <location filename="../UI/UserInterface.py" line="2425"/> <source>Open Eric API Documentation</source> <translation>Apri documentazione API di Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4475"/> + <location filename="../UI/UserInterface.py" line="4502"/> <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> @@ -61449,72 +61507,72 @@ <translation>Controlla per &Aggiornamenti...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt4 Documentation</source> <translation>Documentazione PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2324"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Open PyQt4 Documentation</source> <translation>Apri documentazione su PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2502"/> + <location filename="../UI/UserInterface.py" line="2519"/> <source>Select Tool Group</source> <translation>Seleziona Tool Group</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2510"/> + <location filename="../UI/UserInterface.py" line="2527"/> <source>Se&ttings</source> <translation>Impos&tazioni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2660"/> + <location filename="../UI/UserInterface.py" line="2679"/> <source>Profiles</source> <translation>Profili</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3390"/> + <location filename="../UI/UserInterface.py" line="3417"/> <source>&Builtin Tools</source> <translation>Tool &Builtin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source>Documentation</source> <translation>Documentazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5039"/> + <location filename="../UI/UserInterface.py" line="5066"/> <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="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Error during updates check</source> <translation>Errore nel controllo per gli update</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <source>Update available</source> <translation>Aggiornamento disponibile</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3021"/> + <location filename="../UI/UserInterface.py" line="3048"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Numeri di versione</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360"/> + <location filename="../UI/UserInterface.py" line="6413"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3435"/> + <location filename="../UI/UserInterface.py" line="3462"/> <source>Configure Tool Groups ...</source> <translation>Configura Tools Groups...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3439"/> + <location filename="../UI/UserInterface.py" line="3466"/> <source>Configure current Tool Group ...</source> <translation>Configura Tools Groups correnti...</translation> </message> @@ -61529,17 +61587,17 @@ <translation>Mostra toll &esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>&Cancel</source> <translation>&Cancella</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Could not perform updates check.</source> <translation>Non posso controllare per gli update.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>First time usage</source> <translation>Primo avvio</translation> </message> @@ -61549,52 +61607,52 @@ <translation>Inizializzazione Gestore Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2569"/> + <location filename="../UI/UserInterface.py" line="2588"/> <source>P&lugins</source> <translation>P&lugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2661"/> + <location filename="../UI/UserInterface.py" line="2680"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>Plugin Infos</source> <translation>Informazioni su Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2224"/> + <location filename="../UI/UserInterface.py" line="2241"/> <source>Show Plugin Infos</source> <translation>Mostra informazioni sui Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2225"/> + <location filename="../UI/UserInterface.py" line="2242"/> <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="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>&Plugin Infos...</source> <translation>Informazioni su &Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3407"/> + <location filename="../UI/UserInterface.py" line="3434"/> <source>&Plugin Tools</source> <translation>Informazioni sui &Plugin Tools</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2251"/> + <location filename="../UI/UserInterface.py" line="2268"/> <source>Uninstall Plugin</source> <translation>Disinstalla Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2246"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>&Uninstall Plugin...</source> <translation>Disinstalla Pl&ugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2252"/> + <location filename="../UI/UserInterface.py" line="2269"/> <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> @@ -61604,17 +61662,17 @@ <translation>Attivazione Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2494"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source>Wi&zards</source> <translation>Wi&zards</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3558"/> + <location filename="../UI/UserInterface.py" line="3585"/> <source>&Show all</source> <translation>Mo&stra tutti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3560"/> + <location filename="../UI/UserInterface.py" line="3587"/> <source>&Hide all</source> <translation>Nascondi &tutti</translation> </message> @@ -61634,42 +61692,42 @@ <translation>Mostra le versioni disponibili per il download</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6346"/> + <location filename="../UI/UserInterface.py" line="6399"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versioni disponibili</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin Repository</source> <translation>Repository Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin &Repository...</source> <translation>&Repository Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2281"/> <source>Show Plugins available for download</source> <translation>Mostra Plugin disponibili per il download</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2283"/> <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="2238"/> + <location filename="../UI/UserInterface.py" line="2255"/> <source>Install Plugins</source> <translation>Installa Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2233"/> + <location filename="../UI/UserInterface.py" line="2250"/> <source>&Install Plugins...</source> <translation>&Installa Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239"/> + <location filename="../UI/UserInterface.py" line="2256"/> <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> @@ -61724,27 +61782,27 @@ <translation>&Multiproject-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>External Tools</source> <translation>Tool esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <source>Save session</source> <translation>Salva sessione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <source>Read session</source> <translation>Leggi sessione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2821"/> + <location filename="../UI/UserInterface.py" line="2848"/> <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="2835"/> + <location filename="../UI/UserInterface.py" line="2862"/> <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> @@ -61769,17 +61827,17 @@ <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="2814"/> + <location filename="../UI/UserInterface.py" line="2841"/> <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="2842"/> + <location filename="../UI/UserInterface.py" line="2869"/> <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="2849"/> + <location filename="../UI/UserInterface.py" line="2876"/> <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> @@ -61809,32 +61867,32 @@ <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="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>Restart application</source> <translation>Riavvia applicazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <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="2578"/> + <location filename="../UI/UserInterface.py" line="2597"/> <source>Configure...</source> <translation>Configura...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2828"/> + <location filename="../UI/UserInterface.py" line="2855"/> <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="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Switch between tabs</source> <translation>Cicla tra le linguette</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> @@ -61879,12 +61937,12 @@ <translation><b>Importa preferenze</b><p>Importa una configurazione precedentemente esportata.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Show next</source> <translation>Mostra successivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Show previous</source> <translation>Mostra precedente</translation> </message> @@ -61964,27 +62022,27 @@ <translation>Editor di &icone...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt 3 support</source> <translation>Supporto Qt3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>PySide Documentation</source> <translation>Documentazione PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>Py&Side Documentation</source> <translation>Documentazione Py&Side</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2446"/> <source>Open PySide Documentation</source> <translation>Apri documentazione PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation><p>L'inizio della documentazione di PySide non è stato configurato.</p></translation> </message> @@ -62004,110 +62062,110 @@ <translation>{0} -{1} - {2} - Passive Debug Mode</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2924"/> + <location filename="../UI/UserInterface.py" line="2951"/> <source>External Tools/{0}</source> <translation>Tool Esterni/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <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="4295"/> + <location filename="../UI/UserInterface.py" line="4322"/> <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="4362"/> + <location filename="../UI/UserInterface.py" line="4389"/> <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="4413"/> + <location filename="../UI/UserInterface.py" line="4440"/> <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="4455"/> + <location filename="../UI/UserInterface.py" line="4482"/> <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="4523"/> + <location filename="../UI/UserInterface.py" line="4550"/> <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="4578"/> + <location filename="../UI/UserInterface.py" line="4605"/> <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="4599"/> + <location filename="../UI/UserInterface.py" line="4626"/> <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="4690"/> + <location filename="../UI/UserInterface.py" line="4717"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>No toolgroup entry '{0}' found.</source> <translation>Nessun gruppo '{0}' trovato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4738"/> + <location filename="../UI/UserInterface.py" line="4765"/> <source>Starting process '{0} {1}'. </source> <translation>Avvio processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <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="4830"/> + <location filename="../UI/UserInterface.py" line="4857"/> <source>Process '{0}' has exited. </source> <translation>Il processo '{0}' è terminato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <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="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <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="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <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="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <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="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <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="6143"/> + <location filename="../UI/UserInterface.py" line="6196"/> <source>Trying host {0}</source> <translation>Tento su host {0}</translation> </message> @@ -62142,67 +62200,67 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>File scorciatoi tastiera (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python 3 Documentation</source> <translation>Documentazione Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python &3 Documentation</source> <translation>Documentazione Python &3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2383"/> <source>Open Python 3 Documentation</source> <translation>Apri documentazione Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python 2 Documentation</source> <translation>Documentazione Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python &2 Documentation</source> <translation>Documentazione Python &2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384"/> + <location filename="../UI/UserInterface.py" line="2401"/> <source>Open Python 2 Documentation</source> <translation>Apri documentazione Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2403"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6205"/> + <location filename="../UI/UserInterface.py" line="6258"/> <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="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <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> @@ -62288,12 +62346,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4696"/> <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="6406"/> + <location filename="../UI/UserInterface.py" line="6459"/> <source>Select Workspace Directory</source> <translation type="unfinished">Seleziona cartella di lavoro</translation> </message> @@ -62513,7 +62571,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2538"/> + <location filename="../UI/UserInterface.py" line="2557"/> <source>&Windows</source> <translation type="unfinished">&Finestre</translation> </message> @@ -62588,22 +62646,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt5 Documentation</source> <translation type="unfinished">Documentazione Qt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt&5 Documentation</source> <translation type="unfinished">Documentazione Qt&4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308"/> + <location filename="../UI/UserInterface.py" line="2325"/> <source>Open Qt5 Documentation</source> <translation type="unfinished">Apri documentazione su Qt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2860"/> + <location filename="../UI/UserInterface.py" line="2887"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> @@ -62648,62 +62706,62 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt5 Documentation</source> <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2343"/> + <location filename="../UI/UserInterface.py" line="2360"/> <source>Open PyQt5 Documentation</source> <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5105"/> + <location filename="../UI/UserInterface.py" line="5132"/> <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="2295"/> + <location filename="../UI/UserInterface.py" line="2312"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2326"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2325"/> + <location filename="../UI/UserInterface.py" line="2342"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345"/> + <location filename="../UI/UserInterface.py" line="2362"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368"/> + <location filename="../UI/UserInterface.py" line="2385"/> <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="2431"/> + <location filename="../UI/UserInterface.py" line="2448"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -62723,7 +62781,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6191"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -62788,32 +62846,32 @@ <translation type="unfinished"><b>Mostra tool esterni</b><p>Mostra un dialogo con percorso e versione di tutti i tool esterni usati da eric5.</p> {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2410"/> + <location filename="../UI/UserInterface.py" line="2427"/> <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 eric5.</p> {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished">Le Qt v.3 non sono supportate da eric5. {3 ?} {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <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 eric5 è disponibile presso <b>{1}</b>. Vuoi prenderlo ? {0}?} {6 ?} {1}?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric5 è aggiornato {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <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="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">eric5 non è ancora stato configurato. Il dialogo di configurazione verrà avviato. {6 ?}</translation> </message> @@ -62823,17 +62881,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3410"/> + <location filename="../UI/UserInterface.py" line="3437"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482"/> + <location filename="../UI/UserInterface.py" line="3509"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6154"/> + <location filename="../UI/UserInterface.py" line="6207"/> <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> @@ -62857,6 +62915,16 @@ <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="2189"/> + <source>Clear private data</source> + <translation type="unfinished">Pulisci dati privati</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <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> </context> <context> <name>UserPropertiesDialog</name> @@ -65291,17 +65359,17 @@ <translation>File modificato</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065"/> + <location filename="../ViewManager/ViewManager.py" line="5066"/> <source>&Clear</source> <translation>Pulis&ci</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5059"/> + <location filename="../ViewManager/ViewManager.py" line="5060"/> <source>&Add</source> <translation>&Aggiungi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5062"/> + <location filename="../ViewManager/ViewManager.py" line="5063"/> <source>&Edit...</source> <translation>&Modifica...</translation> </message> @@ -66792,27 +66860,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>Edit Spelling Dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6242"/> + <location filename="../ViewManager/ViewManager.py" line="6243"/> <source>Editing {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6227"/> + <location filename="../ViewManager/ViewManager.py" line="6228"/> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6254"/> + <location filename="../ViewManager/ViewManager.py" line="6255"/> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished"></translation> </message> @@ -68849,7 +68917,7 @@ <context> <name>WebBrowserWindow</name> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3153"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3154"/> <source>eric6 Web Browser</source> <translation type="unfinished"></translation> </message> @@ -68869,7 +68937,7 @@ <translation type="unfinished">Ricerca</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1714"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1715"/> <source>JavaScript Console</source> <translation type="unfinished"></translation> </message> @@ -68926,7 +68994,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>New Private Window</source> <translation type="unfinished"></translation> </message> @@ -68952,7 +69020,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>Open File</source> <translation type="unfinished">Apri File</translation> </message> @@ -69856,7 +69924,7 @@ <translation type="unfinished"><b>Mostra sorgente pagina</b><p>Mostra il sorgente della pagina nell'editor.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2662"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2663"/> <source>Full Screen</source> <translation type="unfinished">Tutto schermo</translation> </message> @@ -70171,409 +70239,409 @@ <translation type="unfinished"><b>Reindicizza la documentazione</b><p>Reindicizza l'insieme della documentazione</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1504"/> <source>Clear private data</source> <translation type="unfinished">Pulisci dati privati</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/> <source>&Clear private data</source> - <translation type="unfinished">Pulis&ci dati privati</translation> - </message> - <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/> + <translation type="obsolete">Pulis&ci dati privati</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1506"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"><b>Pulisci dati privati</b><p>Pulische i dati privati come la cronologia di navigazione, cronologia ricerche o il database delle favicon.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear icons database</source> <translation type="unfinished">Pulisci il database delle icone</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear &icons database</source> <translation type="unfinished">Pulisci database delle &icone</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1521"/> <source>Clear the database of favicons</source> <translation type="unfinished">Pulisci il database delle favicone</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1522"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1523"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation type="unfinished"><b>Pulisci il database delle icone</b><p>Pulisci il databse delle favicons dei siti visitati precedentemente.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1532"/> <source>Manage saved Favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1538"/> <source>Show a dialog to manage the saved favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1539"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/> <source><b>Manage saved Favicons</b><p>This shows a dialog to manage the saved favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search Engines</source> <translation type="unfinished">Configura motori di ricerca</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search &Engines...</source> <translation type="unfinished">Configura motori di &ricerca...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1553"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1554"/> <source>Configure the available search engines</source> <translation type="unfinished">Configura i motori di ricerca disponibili</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1556"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation type="unfinished"><b>Configura motori di ricerca...</b><p>Apri un dialogo per configurare i motori di ricerca disponibi.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords</source> <translation type="unfinished">Gestisci password salvate</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords...</source> <translation type="unfinished">Gestisci password salvate...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1572"/> <source>Manage the saved passwords</source> <translation type="unfinished">Gestisci le password salvate</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1573"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1574"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation type="unfinished"><b>Gestisci password salvate...</b><p>Apre un dialogo per gestire le password salvate.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>Ad Block</source> <translation type="unfinished">Ad Block</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>&Ad Block...</source> <translation type="unfinished">&Ad Block...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1588"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished">Configura le regole di sottoscrizione di AdBlock</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1589"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1590"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"><b>Ad Block...</b><p>Apre un dialogo per configurare le regole di sottoscrizione di AdBlock.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1604"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1605"/> <source>Manage the accepted SSL certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1606"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/> <source><b>Manage SSL Certificate Errors...</b><p>Opens a dialog to manage the accepted SSL certificate errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1616"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1617"/> <source>Downloads</source> <translation type="unfinished">Downloads</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1620"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1621"/> <source>Shows the downloads window</source> <translation type="unfinished">Mostra la finestra dei download</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1622"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"><b>Download</b><p>Mostra la finestra dei download.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1637"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1638"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1639"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1658"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1672"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>Synchronize data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>&Synchronize Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1686"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1689"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1705"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1706"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1718"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/> <source>Toggle the JavaScript console window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1720"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1721"/> <source><b>JavaScript Console</b><p>This toggles the JavaScript console window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1765"/> <source>&File</source> <translation type="unfinished">&File</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1787"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1788"/> <source>&Edit</source> <translation type="unfinished">&Edita</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1804"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1805"/> <source>&View</source> <translation type="unfinished">&Visualizza</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1812"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1813"/> <source>Text Encoding</source> <translation type="unfinished">Codifica testo</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1818"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1819"/> <source>&Go</source> <translation type="unfinished">&Vai</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1833"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/> <source>H&istory</source> <translation type="unfinished">Cronolog&ia</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1845"/> <source>&Bookmarks</source> <translation type="unfinished">Segnali&bri</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1861"/> <source>&Settings</source> <translation type="unfinished">Impo&stazioni</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1887"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1888"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1900"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1901"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1907"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1908"/> <source>&Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1920"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1921"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1931"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1932"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1959"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1960"/> <source>Edit</source> <translation type="unfinished">Modifica</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1971"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1972"/> <source>View</source> <translation type="unfinished">Visualizza</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1980"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/> <source>Find</source> <translation type="unfinished">Trova</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1988"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1989"/> <source>Filter</source> <translation type="unfinished">Filtro</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1993"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1994"/> <source>Filtered by: </source> <translation type="unfinished">Filtrato per:</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2000"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2001"/> <source>Settings</source> <translation type="unfinished">Impostazioni</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2011"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2012"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2020"/> <source>Help</source> <translation type="unfinished">Aiuto</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2026"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2027"/> <source>Go</source> <translation type="unfinished">Vai</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2080"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/> <source>VirusTotal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2084"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2085"/> <source>Scan current site</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"><p>Non posso avviare il processo.<br>Assicurarsi sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>OK</source> <translation type="unfinished">OK</translation> </message> @@ -70583,118 +70651,118 @@ <translation type="obsolete">File di help (*.html *.htm);;File PDF (*.pdf);;File CHM (*.chm);;Tutti i file (*)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2305"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2306"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p><p>It is based on QtWebEngine {1} and Chrome {2}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2425"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2426"/> <source>Saved Tabs</source> <translation type="unfinished">Salva Linguette</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2669"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2670"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2970"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2971"/> <source>Could not find an associated content.</source> <translation type="unfinished">Non posso trovare un contenuto associato.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3073"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3074"/> <source>Updating search index</source> <translation type="unfinished">Aggiornamento indice di ricerca</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3143"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3144"/> <source>Looking for Documentation...</source> <translation type="unfinished">Ricerca documentazione...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3178"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3179"/> <source>Unfiltered</source> <translation type="unfinished">Non filtrato</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3197"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3198"/> <source>Help Engine</source> <translation type="unfinished">Motore di help</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3724"/> - <source>ISO</source> - <translation type="unfinished">ISO</translation> - </message> - <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3725"/> - <source>Windows</source> - <translation type="unfinished">Windows</translation> + <source>ISO</source> + <translation type="unfinished">ISO</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3726"/> - <source>ISCII</source> - <translation type="unfinished">ISCII</translation> + <source>Windows</source> + <translation type="unfinished">Windows</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3727"/> - <source>Unicode</source> - <translation type="unfinished">Unicode</translation> + <source>ISCII</source> + <translation type="unfinished">ISCII</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3728"/> - <source>Other</source> - <translation type="unfinished">Altro</translation> + <source>Unicode</source> + <translation type="unfinished">Unicode</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3729"/> + <source>Other</source> + <translation type="unfinished">Altro</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3730"/> <source>IBM</source> <translation type="unfinished">IBM</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3751"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3752"/> <source>Default Encoding</source> <translation type="unfinished">Encoding di default</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source>VirusTotal Scan</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4043"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4044"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1729"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1730"/> <source>Tab Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/> <source>Shows the tab manager window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1735"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/> <source><b>Tab Manager</b><p>Shows the tab manager window.</p></source> <translation type="unfinished"></translation> </message> @@ -70730,7 +70798,7 @@ <translation type="unfinished"><b>Salva come...</b><p>Salva la pagina corrente su disco.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>HTML Files (*.html *.htm *.mhtml);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_pt.ts Tue Aug 23 19:02:43 2016 +0200 +++ b/i18n/eric6_pt.ts Wed Aug 24 20:00:29 2016 +0200 @@ -2836,6 +2836,64 @@ </message> </context> <context> + <name>ClearPrivateDataDialog</name> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="14"/> + <source>Clear Private Data</source> + <translation type="unfinished">Apagar Dados Privados</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="23"/> + <source>Select to clear the list of recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="26"/> + <source>Recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="36"/> + <source>Select to clear the list of recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="39"/> + <source>Recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="49"/> + <source>Select to clear the list of recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="52"/> + <source>Recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="62"/> + <source>Select to clear the debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="65"/> + <source>Debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="75"/> + <source>Select to clear the shell histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="78"/> + <source>Shell histories</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>ClickToFlash</name> <message> <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.ui" line="43"/> @@ -5352,7 +5410,7 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1765"/> + <location filename="../Debugger/DebugUI.py" line="1780"/> <source>Run Script</source> <translation>Executar Script</translation> </message> @@ -5372,7 +5430,7 @@ <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="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>Run Project</source> <translation>Executar Projeto</translation> </message> @@ -5472,7 +5530,7 @@ <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="1887"/> + <location filename="../Debugger/DebugUI.py" line="1902"/> <source>Debug Script</source> <translation>Depurar Script</translation> </message> @@ -5492,7 +5550,7 @@ <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="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <source>Debug Project</source> <translation>Depurar projeto</translation> </message> @@ -5642,7 +5700,7 @@ <translation><b>Parar</b><p>Parar a sessão de depuração.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> <translation>Evaluar</translation> </message> @@ -5662,7 +5720,7 @@ <translation><b>Evaluar</b><p>Evaluar uma expressão no contexto atual do programa depurado. O resultado mostra-se na janela de shell.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> <translation>Executar</translation> </message> @@ -5852,144 +5910,144 @@ <translation>Depurar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1021"/> + <location filename="../Debugger/DebugUI.py" line="1036"/> <source><p>The program has terminated with an exit status of {0}.</p></source> <translation><p>O programa terminou com um estado de saída {0}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1026"/> + <location filename="../Debugger/DebugUI.py" line="1041"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> <translation><p><b>{0}</b> terminou com estado de saída de {1}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1073"/> + <location filename="../Debugger/DebugUI.py" line="1088"/> <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="1092"/> + <location filename="../Debugger/DebugUI.py" line="1107"/> <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="1110"/> + <location filename="../Debugger/DebugUI.py" line="1125"/> <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="1151"/> - <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="1166"/> + <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="1181"/> <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="1230"/> + <location filename="../Debugger/DebugUI.py" line="1245"/> <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="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <source>Breakpoint Condition Error</source> <translation>Erro de Condição de Ponto de Interrupção</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <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="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <source>Watch Expression Error</source> <translation>Observar Erro de Expressão</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <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="1365"/> + <location filename="../Debugger/DebugUI.py" line="1380"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1384"/> <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="1375"/> + <location filename="../Debugger/DebugUI.py" line="1390"/> <source>Watch expression already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1540"/> + <location filename="../Debugger/DebugUI.py" line="1555"/> <source>Coverage of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1527"/> + <location filename="../Debugger/DebugUI.py" line="1542"/> <source>Coverage of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <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="1659"/> + <location filename="../Debugger/DebugUI.py" line="1674"/> <source>Profile of Project</source> <translation>Perfil de Projeto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1646"/> + <location filename="../Debugger/DebugUI.py" line="1661"/> <source>Profile of Script</source> <translation>Perfil do Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <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> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> <translation>Introduzir a instrução a evaluar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> <translation>Introduzir a instrução a executar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1062"/> <source>The program has terminated with an exit status of {0}. </source> <translation>O programa terminou com estado de saída {0}.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1051"/> + <location filename="../Debugger/DebugUI.py" line="1066"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation>"{0}" terminou com o estado de saída {1}.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1057"/> <source>Program terminated</source> <translation>Programa Terminado</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1035"/> + <location filename="../Debugger/DebugUI.py" line="1050"/> <source>The program has terminated with an exit status of {0}.</source> <translation>O programa terminou com estado de saída {0}.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1038"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>"{0}" has terminated with an exit status of {1}.</source> <translation>"{0}" terminou com o estado de saída {1}.</translation> </message> @@ -6009,7 +6067,7 @@ <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="1216"/> + <location filename="../Debugger/DebugUI.py" line="1231"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> @@ -18778,7 +18836,7 @@ <translation><b>Nova Janela</b><p>Abre uma nova janela do navegador de ajuda.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Open File</source> <translation>Abrir Ficheiro</translation> </message> @@ -19558,7 +19616,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2380"/> + <location filename="../Helpviewer/HelpWindow.py" line="2381"/> <source>Full Screen</source> <translation>Ecrã Inteiro</translation> </message> @@ -19793,297 +19851,297 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1355"/> + <location filename="../Helpviewer/HelpWindow.py" line="1356"/> <source>Clear private data</source> <translation>Limpar dados privados</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="1350"/> <source>&Clear private data</source> - <translation>&Limpar dados privados</translation> - </message> - <message> - <location filename="../Helpviewer/HelpWindow.py" line="1357"/> + <translation type="obsolete">&Limpar dados privados</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="1358"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear icons database</source> <translation>Limpar base de dados dos ícones</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear &icons database</source> <translation>L&impar base de dados dos Ícones</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1372"/> + <location filename="../Helpviewer/HelpWindow.py" line="1373"/> <source>Clear the database of favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1374"/> + <location filename="../Helpviewer/HelpWindow.py" line="1375"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search Engines</source> <translation>Configurar Motores de Pesquisa</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search &Engines...</source> <translation>Configurar Motor&es de Pesquisa...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1388"/> + <location filename="../Helpviewer/HelpWindow.py" line="1389"/> <source>Configure the available search engines</source> <translation>Configurar os motores de pesquisa disponíveis</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1390"/> + <location filename="../Helpviewer/HelpWindow.py" line="1391"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords</source> <translation>Gerir Senhas Gravadas</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords...</source> <translation>Gerir Senhas Gravadas...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1406"/> + <location filename="../Helpviewer/HelpWindow.py" line="1407"/> <source>Manage the saved passwords</source> <translation>Gerir as senhas gravadas</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1408"/> + <location filename="../Helpviewer/HelpWindow.py" line="1409"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>Ad Block</source> <translation>Ad Block</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>&Ad Block...</source> <translation>&Ad Block...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1422"/> + <location filename="../Helpviewer/HelpWindow.py" line="1423"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1424"/> + <location filename="../Helpviewer/HelpWindow.py" line="1425"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1475"/> + <location filename="../Helpviewer/HelpWindow.py" line="1476"/> <source>Show the network monitor dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1604"/> + <location filename="../Helpviewer/HelpWindow.py" line="1605"/> <source>&File</source> <translation>&Ficheiro</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1627"/> + <location filename="../Helpviewer/HelpWindow.py" line="1628"/> <source>&Edit</source> <translation>&Editar</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1635"/> + <location filename="../Helpviewer/HelpWindow.py" line="1636"/> <source>&View</source> <translation>&Vista</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1646"/> + <location filename="../Helpviewer/HelpWindow.py" line="1647"/> <source>Text Encoding</source> <translation>Codificação do Texto</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1652"/> + <location filename="../Helpviewer/HelpWindow.py" line="1653"/> <source>&Go</source> <translation>&Ir</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1667"/> + <location filename="../Helpviewer/HelpWindow.py" line="1668"/> <source>H&istory</source> <translation>H&istorial</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1675"/> + <location filename="../Helpviewer/HelpWindow.py" line="1676"/> <source>&Bookmarks</source> <translation>&Marcadores</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1690"/> + <location filename="../Helpviewer/HelpWindow.py" line="1691"/> <source>&Settings</source> <translation>Definiçõe&s</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1732"/> + <location filename="../Helpviewer/HelpWindow.py" line="1733"/> <source>&Tools</source> <translation>&Ferramentas</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1741"/> + <location filename="../Helpviewer/HelpWindow.py" line="1742"/> <source>&Window</source> <translation>&Janela</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1752"/> + <location filename="../Helpviewer/HelpWindow.py" line="1753"/> <source>&Help</source> <translation>&Ajuda</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1763"/> + <location filename="../Helpviewer/HelpWindow.py" line="1764"/> <source>File</source> <translation>Ficheiro</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1789"/> + <location filename="../Helpviewer/HelpWindow.py" line="1790"/> <source>Edit</source> <translation>Editar</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1794"/> + <location filename="../Helpviewer/HelpWindow.py" line="1795"/> <source>View</source> <translation>Vista</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1803"/> + <location filename="../Helpviewer/HelpWindow.py" line="1804"/> <source>Find</source> <translation>Encontrar</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1811"/> + <location filename="../Helpviewer/HelpWindow.py" line="1812"/> <source>Filter</source> <translation>Filtro</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1816"/> + <location filename="../Helpviewer/HelpWindow.py" line="1817"/> <source>Filtered by: </source> <translation>Filtrado por: </translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1823"/> + <location filename="../Helpviewer/HelpWindow.py" line="1824"/> <source>Settings</source> <translation>Definições</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1843"/> + <location filename="../Helpviewer/HelpWindow.py" line="1844"/> <source>Help</source> <translation>Ajuda</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1850"/> + <location filename="../Helpviewer/HelpWindow.py" line="1851"/> <source>Go</source> <translation>Ir</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2171"/> + <location filename="../Helpviewer/HelpWindow.py" line="2172"/> <source>Saved Tabs</source> <translation>Separadores Guardados</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2410"/> + <location filename="../Helpviewer/HelpWindow.py" line="2411"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. HTML5 offline storage will be deactivated. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2690"/> + <location filename="../Helpviewer/HelpWindow.py" line="2691"/> <source>Could not find an associated content.</source> <translation>Não se encontrou nenhum conteúdo associado.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2813"/> + <location filename="../Helpviewer/HelpWindow.py" line="2814"/> <source>Updating search index</source> <translation>A atualizar índice de pesquisa</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2883"/> + <location filename="../Helpviewer/HelpWindow.py" line="2884"/> <source>Looking for Documentation...</source> <translation>A procurar a Documentação...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2918"/> + <location filename="../Helpviewer/HelpWindow.py" line="2919"/> <source>Unfiltered</source> <translation>Sem filtrar</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2937"/> + <location filename="../Helpviewer/HelpWindow.py" line="2938"/> <source>Help Engine</source> <translation>Motor de Ajuda</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3452"/> - <source>ISO</source> - <translation></translation> - </message> - <message> <location filename="../Helpviewer/HelpWindow.py" line="3453"/> - <source>Windows</source> - <translation>Windows</translation> + <source>ISO</source> + <translation></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3454"/> - <source>ISCII</source> - <translation>ISCII</translation> + <source>Windows</source> + <translation>Windows</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3455"/> - <source>Unicode</source> - <translation>Unicódigo</translation> + <source>ISCII</source> + <translation>ISCII</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3456"/> - <source>Other</source> - <translation>Outro</translation> + <source>Unicode</source> + <translation>Unicódigo</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3457"/> + <source>Other</source> + <translation>Outro</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="3458"/> <source>IBM</source> <translation>IBM</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3479"/> + <location filename="../Helpviewer/HelpWindow.py" line="3480"/> <source>Default Encoding</source> <translation>Codificação Padrão</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1486"/> + <location filename="../Helpviewer/HelpWindow.py" line="1487"/> <source>Downloads</source> <translation>Descargas</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1490"/> + <location filename="../Helpviewer/HelpWindow.py" line="1491"/> <source>Shows the downloads window</source> <translation>Mostra a janela de descargas</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1492"/> + <location filename="../Helpviewer/HelpWindow.py" line="1493"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation><b>Descargas</b><p>Mostra a janela das descargas.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1903"/> + <location filename="../Helpviewer/HelpWindow.py" line="1904"/> <source>VirusTotal</source> <translation></translation> </message> @@ -20093,75 +20151,75 @@ <translation type="obsolete">Procurar VirusTotal</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1907"/> + <location filename="../Helpviewer/HelpWindow.py" line="1908"/> <source>Scan current site</source> <translation>Analizar sítio atual</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source>VirusTotal Scan</source> <translation>Análise de VirusTotal</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation>Ctrl+Shift+F</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1507"/> + <location filename="../Helpviewer/HelpWindow.py" line="1508"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1509"/> + <location filename="../Helpviewer/HelpWindow.py" line="1510"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1525"/> + <location filename="../Helpviewer/HelpWindow.py" line="1526"/> <source>Open a dialog showing some information about the current site.</source> <translation>Abre uma caixa de diálogo que mostra alguma informação sobre o sítio atual.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1527"/> + <location filename="../Helpviewer/HelpWindow.py" line="1528"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1835"/> + <location filename="../Helpviewer/HelpWindow.py" line="1836"/> <source>Tools</source> <translation>Ferramentas</translation> </message> @@ -20178,47 +20236,47 @@ <translation>Afastar</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>Network Monitor</source> <translation>Monitor de Rede</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>&Network Monitor...</source> <translation>Mo&nitor de Rede...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1477"/> + <location filename="../Helpviewer/HelpWindow.py" line="1478"/> <source><b>Network Monitor...</b><p>Shows the network monitor dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2387"/> + <location filename="../Helpviewer/HelpWindow.py" line="2388"/> <source>Restore Window</source> <translation>Restaurar Janela</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage User Agent Settings</source> <translation>Gerir Definições de Agente de Usuário</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage &User Agent Settings</source> <translation>Gerir Definições de Agente de &Usuário</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1540"/> + <location filename="../Helpviewer/HelpWindow.py" line="1541"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1542"/> + <location filename="../Helpviewer/HelpWindow.py" line="1543"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1719"/> + <location filename="../Helpviewer/HelpWindow.py" line="1720"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> @@ -20248,42 +20306,42 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>Synchronize data</source> <translation>Sincronizar dados</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>&Synchronize Data...</source> <translation>&Sincronizar Dados...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1556"/> + <location filename="../Helpviewer/HelpWindow.py" line="1557"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1558"/> + <location filename="../Helpviewer/HelpWindow.py" line="1559"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>ClickToFlash</source> <translation>ClickToFlash</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>&ClickToFlash...</source> <translation>&ClickToFlash...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1439"/> + <location filename="../Helpviewer/HelpWindow.py" line="1440"/> <source>Configure ClickToFlash whitelist</source> <translation>Configurar lista de confiança ClickToFlash</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1441"/> + <location filename="../Helpviewer/HelpWindow.py" line="1442"/> <source><b>ClickToFlash...</b><p>Opens a dialog to configure the ClickToFlash whitelist.</p></source> <translation type="unfinished"></translation> </message> @@ -20328,22 +20386,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates</source> <translation>Gerir Certificados SSL</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates...</source> <translation>Gerir Certificados SSL...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1458"/> + <location filename="../Helpviewer/HelpWindow.py" line="1459"/> <source>Manage the saved SSL certificates</source> <translation>Gerir os certificados SSL gravados</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1460"/> + <location filename="../Helpviewer/HelpWindow.py" line="1461"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> @@ -20388,7 +20446,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2893"/> + <location filename="../Helpviewer/HelpWindow.py" line="2894"/> <source>eric6 Web Browser</source> <translation>Navegador Web de eric6</translation> </message> @@ -20403,32 +20461,32 @@ <translation><b>Sair</b><p>Sair do Navegador Web de eric6.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2077"/> + <location filename="../Helpviewer/HelpWindow.py" line="2078"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3743"/> + <location filename="../Helpviewer/HelpWindow.py" line="3744"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> @@ -20473,22 +20531,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1574"/> + <location filename="../Helpviewer/HelpWindow.py" line="1575"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1576"/> + <location filename="../Helpviewer/HelpWindow.py" line="1577"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> @@ -40098,7 +40156,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Profile Data</source> <translation type="unfinished">Dados de Perfil</translation> </message> @@ -40118,7 +40176,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Application Diagram</source> <translation>Diagrama da Aplicação</translation> </message> @@ -40138,7 +40196,7 @@ <translation><b>Diagrama da Aplicação...</b><p>Mostra um diagrama do projeto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source>Create Package List</source> <translation type="unfinished"></translation> </message> @@ -40148,7 +40206,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source>Create Plugin Archive</source> <translation type="unfinished"></translation> </message> @@ -40228,87 +40286,87 @@ <translation>&Limpar</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>Search New Files</source> <translation>Procurar Ficheiros Novos</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>There were no new files found to be added.</source> <translation>Não se encontraram ficheiros novos para adicionar.</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source>Version Control System</source> <translation>Sistema de Control de Versão</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4488"/> + <location filename="../Project/Project.py" line="4489"/> <source>Coverage Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4538"/> + <location filename="../Project/Project.py" line="4539"/> <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="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Please select a profile file</source> <translation>Escolha um ficheiro de perfil por favor</translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Include module names?</source> <translation>Incluir nomes de módulos?</translation> </message> <message> - <location filename="../Project/Project.py" line="4733"/> + <location filename="../Project/Project.py" line="4734"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4793"/> + <location filename="../Project/Project.py" line="4794"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4801"/> + <location filename="../Project/Project.py" line="4802"/> <source>The project does not have a main script defined. Aborting...</source> <translation>O projeto atual não tem um script principal definido. A cancelar...</translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> + <location filename="../Project/Project.py" line="4816"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4854"/> + <location filename="../Project/Project.py" line="4855"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4923"/> + <location filename="../Project/Project.py" line="4924"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -40373,12 +40431,12 @@ <translation>Consola de PyQt5</translation> </message> <message> - <location filename="../Project/Project.py" line="4358"/> + <location filename="../Project/Project.py" line="4359"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -40428,12 +40486,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4828"/> + <location filename="../Project/Project.py" line="4829"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4877"/> + <location filename="../Project/Project.py" line="4878"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation><p>O ficheiro de complemento de eric6 <b>{0}</b> foi criado com êxito.</p></translation> </message> @@ -48610,129 +48668,129 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="194"/> + <location filename="../QScintilla/Shell.py" line="197"/> <source>Passive >>> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="209"/> + <location filename="../QScintilla/Shell.py" line="212"/> <source>Start</source> <translation>Iniciar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="214"/> + <location filename="../QScintilla/Shell.py" line="217"/> <source>History</source> <translation>Historial</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="215"/> + <location filename="../QScintilla/Shell.py" line="218"/> <source>Select entry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="216"/> + <location filename="../QScintilla/Shell.py" line="219"/> <source>Show</source> <translation>Mostrar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="228"/> + <location filename="../QScintilla/Shell.py" line="231"/> <source>Clear</source> <translation>Limpar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="221"/> + <location filename="../QScintilla/Shell.py" line="224"/> <source>Cut</source> <translation>Cortar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="222"/> + <location filename="../QScintilla/Shell.py" line="225"/> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="223"/> + <location filename="../QScintilla/Shell.py" line="226"/> <source>Paste</source> <translation>Colar</translation> </message> <message> + <location filename="../QScintilla/Shell.py" line="232"/> + <source>Reset</source> + <translation type="unfinished">Reinicializar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="233"/> + <source>Reset and Clear</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="238"/> + <source>Configure...</source> + <translation>Configurar...</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="599"/> + <source>Select History</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="599"/> + <source>Select the history entry to execute (most recent shown last).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="662"/> + <source>Passive Debug Mode</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="663"/> + <source> +Not connected</source> + <translation>Desconetado</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="665"/> + <source>No.</source> + <translation>Nº</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="667"/> + <source>{0} on {1}, {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="805"/> + <source>StdOut: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="813"/> + <source>StdErr: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1421"/> + <source>Shell language "{0}" not supported. +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1706"/> + <source>Drop Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1706"/> + <source><p><b>{0}</b> is not a file.</p></source> + <translation type="unfinished"><p><b>{0}</b> não é um ficheiro.</p></translation> + </message> + <message> <location filename="../QScintilla/Shell.py" line="229"/> - <source>Reset</source> - <translation type="unfinished">Reinicializar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="230"/> - <source>Reset and Clear</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="235"/> - <source>Configure...</source> - <translation>Configurar...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="591"/> - <source>Select History</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="591"/> - <source>Select the history entry to execute (most recent shown last).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="642"/> - <source>Passive Debug Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="643"/> - <source> -Not connected</source> - <translation>Desconetado</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="645"/> - <source>No.</source> - <translation>Nº</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="647"/> - <source>{0} on {1}, {2}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="785"/> - <source>StdOut: {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="793"/> - <source>StdErr: {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="1401"/> - <source>Shell language "{0}" not supported. -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="1686"/> - <source>Drop Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="1686"/> - <source><p><b>{0}</b> is not a file.</p></source> - <translation type="unfinished"><p><b>{0}</b> não é um ficheiro.</p></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="226"/> <source>Find</source> <translation>Encontrar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="686"/> + <location filename="../QScintilla/Shell.py" line="706"/> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -48740,26 +48798,26 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="718"/> + <location filename="../QScintilla/Shell.py" line="738"/> <source>Unspecified syntax error. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="696"/> + <location filename="../QScintilla/Shell.py" line="716"/> <source>Exception "{0}" {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="720"/> + <location filename="../QScintilla/Shell.py" line="740"/> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="743"/> + <location filename="../QScintilla/Shell.py" line="763"/> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished"></translation> @@ -57904,17 +57962,17 @@ <translation>Filtro de tarefas não tem nenhum filtro ativo. Deseja configurar defenições de filtro?</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Extracting project tasks...</source> <translation>A extrair tarefas do projeto...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Abort</source> <translation>Cancelar</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="707"/> + <location filename="../Tasks/TaskViewer.py" line="706"/> <source>Extracting project tasks... {0}</source> <translation>A extrair tarefas do projeto... @@ -57941,12 +57999,12 @@ <translation>Tarefas do P&rojeto</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>%v/%m Files</source> <translation>%v/%m Ficheiros</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="702"/> + <location filename="../Tasks/TaskViewer.py" line="701"/> <source>Tasks</source> <translation>Tarefas</translation> </message> @@ -60784,7 +60842,7 @@ <translation>Mostrar as versões disponíveis para descarregar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <source>Report Bug</source> <translation>Reportar Falho</translation> </message> @@ -60824,7 +60882,7 @@ <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="2657"/> + <location filename="../UI/UserInterface.py" line="2676"/> <source>Unittest</source> <translation>Teste Unitário</translation> </message> @@ -60884,7 +60942,7 @@ <translation><b>Teste Unitário ao Script</b><p>Executar teste unitário com o script atual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>Unittest Project</source> <translation>Teste Unitário ao Projeto</translation> </message> @@ -61169,7 +61227,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5544"/> + <location filename="../UI/UserInterface.py" line="5571"/> <source>Export Keyboard Shortcuts</source> <translation>Exportar Atalhos de Teclado</translation> </message> @@ -61189,7 +61247,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Import Keyboard Shortcuts</source> <translation>Importar Atalhos de Teclado</translation> </message> @@ -61209,182 +61267,182 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Activate current editor</source> <translation>Ativar o editor atual</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Alt+Shift+E</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Show next</source> <translation>Mostrar próximo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Show previous</source> <translation>Mostrar anterior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Shift+Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Switch between tabs</source> <translation>Mudar entre separadores</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Ctrl+1</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>Plugin Infos</source> <translation>Informação dos Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>&Plugin Infos...</source> <translation>Informação dos &Complementos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2224"/> + <location filename="../UI/UserInterface.py" line="2241"/> <source>Show Plugin Infos</source> <translation>Mostrar Informação dos Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2225"/> + <location filename="../UI/UserInterface.py" line="2242"/> <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="2238"/> + <location filename="../UI/UserInterface.py" line="2255"/> <source>Install Plugins</source> <translation>Instalar Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2233"/> + <location filename="../UI/UserInterface.py" line="2250"/> <source>&Install Plugins...</source> <translation>&Instalar Complementos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239"/> + <location filename="../UI/UserInterface.py" line="2256"/> <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="2251"/> + <location filename="../UI/UserInterface.py" line="2268"/> <source>Uninstall Plugin</source> <translation>Desinstalar Complemento</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2246"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>&Uninstall Plugin...</source> <translation>&Desinstalar Complemento...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2252"/> + <location filename="../UI/UserInterface.py" line="2269"/> <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="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin Repository</source> <translation>Repositório de Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin &Repository...</source> <translation>&Repositório de Complementos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2281"/> <source>Show Plugins available for download</source> <translation>Mostrar Complementos disponíveis para descarregar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2283"/> <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="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt4 Documentation</source> <translation>Documentação de Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt&4 Documentation</source> <translation>Documentação de Qt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2294"/> + <location filename="../UI/UserInterface.py" line="2311"/> <source>Open Qt4 Documentation</source> <translation>Abrir a Documentação de Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt4 Documentation</source> <translation>Documentação do PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2324"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Open PyQt4 Documentation</source> <translation>Abrir a Documentação de PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>Eric API Documentation</source> <translation>Documentação de API do Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>&Eric API Documentation</source> <translation>Documentação de API do &Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2408"/> - <source>Open Eric API Documentation</source> - <translation>Abrir a Documentação de API do Eric</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2425"/> + <source>Open Eric API Documentation</source> + <translation>Abrir a Documentação de API do Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2442"/> <source>PySide Documentation</source> <translation>Documentação de PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>Py&Side Documentation</source> <translation>Documentação de Py&Side</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2446"/> <source>Open PySide Documentation</source> <translation>Abrir Documentação de PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2472"/> - <source>&Unittest</source> - <translation>Teste &Unitário</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2489"/> + <source>&Unittest</source> + <translation>Teste &Unitário</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506"/> <source>E&xtras</source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2494"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source>Wi&zards</source> <translation>A&ssistentes</translation> </message> @@ -61394,430 +61452,430 @@ <translation type="obsolete">&Ferramentas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2502"/> + <location filename="../UI/UserInterface.py" line="2519"/> <source>Select Tool Group</source> <translation>Selecionar Grupo de Ferramentas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2510"/> + <location filename="../UI/UserInterface.py" line="2527"/> <source>Se&ttings</source> <translation>Definiçõe&s</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2533"/> + <location filename="../UI/UserInterface.py" line="2552"/> <source>&Window</source> <translation>&Janela</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2577"/> <source>&Toolbars</source> <translation>Barras de Ferramen&tas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2569"/> + <location filename="../UI/UserInterface.py" line="2588"/> <source>P&lugins</source> <translation>Comp&lementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2597"/> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583"/> + <location filename="../UI/UserInterface.py" line="2602"/> <source>&Help</source> <translation>&Ajuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2656"/> + <location filename="../UI/UserInterface.py" line="2675"/> <source>Tools</source> <translation>Ferramentas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2658"/> + <location filename="../UI/UserInterface.py" line="2677"/> <source>Settings</source> <translation>Definições</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <source>Help</source> <translation>Ajuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2660"/> + <location filename="../UI/UserInterface.py" line="2679"/> <source>Profiles</source> <translation>Perfiles</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2661"/> + <location filename="../UI/UserInterface.py" line="2680"/> <source>Plugins</source> <translation>Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2814"/> + <location filename="../UI/UserInterface.py" line="2841"/> <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="2821"/> + <location filename="../UI/UserInterface.py" line="2848"/> <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="2828"/> + <location filename="../UI/UserInterface.py" line="2855"/> <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="2835"/> + <location filename="../UI/UserInterface.py" line="2862"/> <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="2842"/> + <location filename="../UI/UserInterface.py" line="2869"/> <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="2849"/> + <location filename="../UI/UserInterface.py" line="2876"/> <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="2924"/> + <location filename="../UI/UserInterface.py" line="2951"/> <source>External Tools/{0}</source> <translation>Ferramentas Externas/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3021"/> + <location filename="../UI/UserInterface.py" line="3048"/> <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="6360"/> + <location filename="../UI/UserInterface.py" line="6413"/> <source></table></source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <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="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>Restart application</source> <translation>Reiniciar a aplicação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <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="3435"/> + <location filename="../UI/UserInterface.py" line="3462"/> <source>Configure Tool Groups ...</source> <translation>Configurar Grupos de Ferramentas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3439"/> + <location filename="../UI/UserInterface.py" line="3466"/> <source>Configure current Tool Group ...</source> <translation>Configurar o atual Grupo de Ferramentas ...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3390"/> + <location filename="../UI/UserInterface.py" line="3417"/> <source>&Builtin Tools</source> <translation>Ferramentas &Internas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3407"/> + <location filename="../UI/UserInterface.py" line="3434"/> <source>&Plugin Tools</source> <translation>Ferramentas dos &Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3558"/> + <location filename="../UI/UserInterface.py" line="3585"/> <source>&Show all</source> <translation>&Mostrar tudo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3560"/> + <location filename="../UI/UserInterface.py" line="3587"/> <source>&Hide all</source> <translation>&Esconder tudo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt 3 support</source> <translation>Suporte Qt3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <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="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <source>Process Generation Error</source> <translation>Erro na Criação de Processo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4295"/> + <location filename="../UI/UserInterface.py" line="4322"/> <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="4362"/> + <location filename="../UI/UserInterface.py" line="4389"/> <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="4413"/> + <location filename="../UI/UserInterface.py" line="4440"/> <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="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <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="4455"/> + <location filename="../UI/UserInterface.py" line="4482"/> <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="4475"/> + <location filename="../UI/UserInterface.py" line="4502"/> <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="4523"/> + <location filename="../UI/UserInterface.py" line="4550"/> <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="4578"/> + <location filename="../UI/UserInterface.py" line="4605"/> <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="4599"/> + <location filename="../UI/UserInterface.py" line="4626"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>External Tools</source> <translation>Ferramentas Externas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4717"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4738"/> + <location filename="../UI/UserInterface.py" line="4765"/> <source>Starting process '{0} {1}'. </source> <translation>A iniciar processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <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="4830"/> + <location filename="../UI/UserInterface.py" line="4857"/> <source>Process '{0}' has exited. </source> <translation>Processo '{0}' saiu.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <source>Documentation Missing</source> <translation>Falta a Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <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="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source>Documentation</source> <translation>Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5039"/> + <location filename="../UI/UserInterface.py" line="5066"/> <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="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Ficheiro de atalhos de teclado (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <source>Save tasks</source> <translation>Gravar tarefas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <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="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <source>Read tasks</source> <translation>Ler tarefas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <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="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <source>Save session</source> <translation>Guargar sessão</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <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="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <source>Read session</source> <translation>Sessão de leitura</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <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="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>&Cancel</source> <translation>&Cancelar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6196"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <source>Update available</source> <translation>Atualização disponível</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Error during updates check</source> <translation>Erro na verificação de atualizações</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Could not perform updates check.</source> <translation>Não procurar atualizações.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6346"/> + <location filename="../UI/UserInterface.py" line="6399"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versões Disponíveis</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>First time usage</source> <translation>Usado a primeira vez</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python 3 Documentation</source> <translation>Documentação de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python &3 Documentation</source> <translation>Documentação de Python &3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2383"/> <source>Open Python 3 Documentation</source> <translation>Abrir a Documentação de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python 2 Documentation</source> <translation>Documentação de Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python &2 Documentation</source> <translation>Documentação de Python &2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384"/> + <location filename="../UI/UserInterface.py" line="2401"/> <source>Open Python 2 Documentation</source> <translation>Abrir a Documentação de Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2403"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <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="6205"/> + <location filename="../UI/UserInterface.py" line="6258"/> <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="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <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> @@ -61903,12 +61961,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4696"/> <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="6406"/> + <location filename="../UI/UserInterface.py" line="6459"/> <source>Select Workspace Directory</source> <translation>Selecionar o Diretório de Trabalho</translation> </message> @@ -62128,7 +62186,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2538"/> + <location filename="../UI/UserInterface.py" line="2557"/> <source>&Windows</source> <translation>&Janelas</translation> </message> @@ -62203,22 +62261,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt5 Documentation</source> <translation>Documentação de Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt&5 Documentation</source> <translation>Documentação de Qt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308"/> + <location filename="../UI/UserInterface.py" line="2325"/> <source>Open Qt5 Documentation</source> <translation>Abrir a Documentação de Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2860"/> + <location filename="../UI/UserInterface.py" line="2887"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> @@ -62263,62 +62321,62 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt&4 Documentation</source> <translation>Documentação do PyQt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt5 Documentation</source> <translation>Documentação do PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt&5 Documentation</source> <translation>Documentação do PyQt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2343"/> + <location filename="../UI/UserInterface.py" line="2360"/> <source>Open PyQt5 Documentation</source> <translation>Abrir a Documentação de PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5105"/> + <location filename="../UI/UserInterface.py" line="5132"/> <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="2295"/> + <location filename="../UI/UserInterface.py" line="2312"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2326"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2325"/> + <location filename="../UI/UserInterface.py" line="2342"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345"/> + <location filename="../UI/UserInterface.py" line="2362"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368"/> + <location filename="../UI/UserInterface.py" line="2385"/> <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="2431"/> + <location filename="../UI/UserInterface.py" line="2448"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>%v/%m</source> <translation></translation> </message> @@ -62398,37 +62456,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2410"/> + <location filename="../UI/UserInterface.py" line="2427"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <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="6138"/> + <location filename="../UI/UserInterface.py" line="6191"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <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="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>Eric6 is up to date</source> <translation>Eric6 está atualizado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <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="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <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> @@ -62438,17 +62496,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3410"/> + <location filename="../UI/UserInterface.py" line="3437"/> <source>&User Tools</source> <translation>Ferramentas de &Utilizador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482"/> + <location filename="../UI/UserInterface.py" line="3509"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6154"/> + <location filename="../UI/UserInterface.py" line="6207"/> <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> @@ -62472,6 +62530,16 @@ <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="2189"/> + <source>Clear private data</source> + <translation type="unfinished">Limpar dados privados</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <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> </context> <context> <name>UserPropertiesDialog</name> @@ -65789,17 +65857,17 @@ <translation></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065"/> + <location filename="../ViewManager/ViewManager.py" line="5066"/> <source>&Clear</source> <translation>&Limpar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5059"/> + <location filename="../ViewManager/ViewManager.py" line="5060"/> <source>&Add</source> <translation>&Adicionar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5062"/> + <location filename="../ViewManager/ViewManager.py" line="5063"/> <source>&Edit...</source> <translation>&Editar...</translation> </message> @@ -66361,27 +66429,27 @@ <translation>Lista de Exceções do Usuário</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>Edit Spelling Dictionary</source> <translation>Editar Dicionário Ortográfico</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6242"/> + <location filename="../ViewManager/ViewManager.py" line="6243"/> <source>Editing {0}</source> <translation>A editar {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6227"/> + <location filename="../ViewManager/ViewManager.py" line="6228"/> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6254"/> + <location filename="../ViewManager/ViewManager.py" line="6255"/> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>The spelling dictionary was saved successfully.</source> <translation>O dicionário ortográfico foi guradado com êxito.</translation> </message> @@ -68424,7 +68492,7 @@ <context> <name>WebBrowserWindow</name> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3153"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3154"/> <source>eric6 Web Browser</source> <translation type="unfinished">Navegador Web de eric6</translation> </message> @@ -68444,7 +68512,7 @@ <translation type="unfinished">Procurar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1714"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1715"/> <source>JavaScript Console</source> <translation type="unfinished"></translation> </message> @@ -68501,7 +68569,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>New Private Window</source> <translation type="unfinished"></translation> </message> @@ -68527,7 +68595,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>Open File</source> <translation type="unfinished">Abrir Ficheiro</translation> </message> @@ -69431,7 +69499,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2662"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2663"/> <source>Full Screen</source> <translation type="unfinished">Ecrã Inteiro</translation> </message> @@ -69746,525 +69814,525 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1504"/> <source>Clear private data</source> <translation type="unfinished">Limpar dados privados</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/> <source>&Clear private data</source> - <translation type="unfinished">&Limpar dados privados</translation> - </message> - <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/> + <translation type="obsolete">&Limpar dados privados</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1506"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear icons database</source> <translation type="unfinished">Limpar base de dados dos ícones</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear &icons database</source> <translation type="unfinished">L&impar base de dados dos Ícones</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1521"/> <source>Clear the database of favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1522"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1523"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1532"/> <source>Manage saved Favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1538"/> <source>Show a dialog to manage the saved favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1539"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/> <source><b>Manage saved Favicons</b><p>This shows a dialog to manage the saved favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search Engines</source> <translation type="unfinished">Configurar Motores de Pesquisa</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search &Engines...</source> <translation type="unfinished">Configurar Motor&es de Pesquisa...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1553"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1554"/> <source>Configure the available search engines</source> <translation type="unfinished">Configurar os motores de pesquisa disponíveis</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1556"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords</source> <translation type="unfinished">Gerir Senhas Gravadas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords...</source> <translation type="unfinished">Gerir Senhas Gravadas...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1572"/> <source>Manage the saved passwords</source> <translation type="unfinished">Gerir as senhas gravadas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1573"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1574"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>Ad Block</source> <translation type="unfinished">Ad Block</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>&Ad Block...</source> <translation type="unfinished">&Ad Block...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1588"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1589"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1590"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1604"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1605"/> <source>Manage the accepted SSL certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1606"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/> <source><b>Manage SSL Certificate Errors...</b><p>Opens a dialog to manage the accepted SSL certificate errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1616"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1617"/> <source>Downloads</source> <translation type="unfinished">Descargas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1620"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1621"/> <source>Shows the downloads window</source> <translation type="unfinished">Mostra a janela de descargas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1622"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"><b>Descargas</b><p>Mostra a janela das descargas.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished">Ctrl+Shift+F</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1637"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1638"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1639"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished">Abre uma caixa de diálogo que mostra alguma informação sobre o sítio atual.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1658"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage User Agent Settings</source> <translation type="unfinished">Gerir Definições de Agente de Usuário</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage &User Agent Settings</source> <translation type="unfinished">Gerir Definições de Agente de &Usuário</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1672"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>Synchronize data</source> <translation type="unfinished">Sincronizar dados</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>&Synchronize Data...</source> <translation type="unfinished">&Sincronizar Dados...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1686"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1689"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1705"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1706"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1718"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/> <source>Toggle the JavaScript console window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1720"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1721"/> <source><b>JavaScript Console</b><p>This toggles the JavaScript console window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1765"/> <source>&File</source> <translation type="unfinished">&Ficheiro</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1787"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1788"/> <source>&Edit</source> <translation type="unfinished">&Editar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1804"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1805"/> <source>&View</source> <translation type="unfinished">&Vista</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1812"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1813"/> <source>Text Encoding</source> <translation type="unfinished">Codificação do Texto</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1818"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1819"/> <source>&Go</source> <translation type="unfinished">&Ir</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1833"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/> <source>H&istory</source> <translation type="unfinished">H&istorial</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1845"/> <source>&Bookmarks</source> <translation type="unfinished">&Marcadores</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1861"/> <source>&Settings</source> <translation type="unfinished">Definiçõe&s</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1887"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1888"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1900"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1901"/> <source>&Tools</source> <translation type="unfinished">&Ferramentas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1907"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1908"/> <source>&Window</source> <translation type="unfinished">&Janela</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1920"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1921"/> <source>&Help</source> <translation type="unfinished">&Ajuda</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1931"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1932"/> <source>File</source> <translation type="unfinished">Ficheiro</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1959"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1960"/> <source>Edit</source> <translation type="unfinished">Editar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1971"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1972"/> <source>View</source> <translation type="unfinished">Vista</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1980"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/> <source>Find</source> <translation type="unfinished">Encontrar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1988"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1989"/> <source>Filter</source> <translation type="unfinished">Filtro</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1993"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1994"/> <source>Filtered by: </source> <translation type="unfinished">Filtrado por: </translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2000"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2001"/> <source>Settings</source> <translation type="unfinished">Definições</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2011"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2012"/> <source>Tools</source> <translation type="unfinished">Ferramentas</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2020"/> <source>Help</source> <translation type="unfinished">Ajuda</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2026"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2027"/> <source>Go</source> <translation type="unfinished">Ir</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2080"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/> <source>VirusTotal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2084"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2085"/> <source>Scan current site</source> <translation type="unfinished">Analizar sítio atual</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>OK</source> <translation type="unfinished">OK</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2305"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2306"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p><p>It is based on QtWebEngine {1} and Chrome {2}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2425"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2426"/> <source>Saved Tabs</source> <translation type="unfinished">Separadores Guardados</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2669"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2670"/> <source>Restore Window</source> <translation type="unfinished">Restaurar Janela</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2970"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2971"/> <source>Could not find an associated content.</source> <translation type="unfinished">Não se encontrou nenhum conteúdo associado.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3073"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3074"/> <source>Updating search index</source> <translation type="unfinished">A atualizar índice de pesquisa</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3143"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3144"/> <source>Looking for Documentation...</source> <translation type="unfinished">A procurar a Documentação...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3178"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3179"/> <source>Unfiltered</source> <translation type="unfinished">Sem filtrar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3197"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3198"/> <source>Help Engine</source> <translation type="unfinished">Motor de Ajuda</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3724"/> - <source>ISO</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3725"/> - <source>Windows</source> - <translation type="unfinished">Windows</translation> + <source>ISO</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3726"/> - <source>ISCII</source> - <translation type="unfinished">ISCII</translation> + <source>Windows</source> + <translation type="unfinished">Windows</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3727"/> - <source>Unicode</source> - <translation type="unfinished"></translation> + <source>ISCII</source> + <translation type="unfinished">ISCII</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3728"/> - <source>Other</source> - <translation type="unfinished">Outro</translation> + <source>Unicode</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3729"/> + <source>Other</source> + <translation type="unfinished">Outro</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3730"/> <source>IBM</source> <translation type="unfinished">IBM</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3751"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3752"/> <source>Default Encoding</source> <translation type="unfinished">Codificação Padrão</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source>VirusTotal Scan</source> <translation type="unfinished">Análise de VirusTotal</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4043"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4044"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1729"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1730"/> <source>Tab Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/> <source>Shows the tab manager window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1735"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/> <source><b>Tab Manager</b><p>Shows the tab manager window.</p></source> <translation type="unfinished"></translation> </message> @@ -70300,7 +70368,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>HTML Files (*.html *.htm *.mhtml);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_ru.ts Tue Aug 23 19:02:43 2016 +0200 +++ b/i18n/eric6_ru.ts Wed Aug 24 20:00:29 2016 +0200 @@ -2741,6 +2741,64 @@ </message> </context> <context> + <name>ClearPrivateDataDialog</name> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="14"/> + <source>Clear Private Data</source> + <translation type="unfinished">Очистить приватные данные</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="23"/> + <source>Select to clear the list of recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="26"/> + <source>Recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="36"/> + <source>Select to clear the list of recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="39"/> + <source>Recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="49"/> + <source>Select to clear the list of recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="52"/> + <source>Recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="62"/> + <source>Select to clear the debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="65"/> + <source>Debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="75"/> + <source>Select to clear the shell histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="78"/> + <source>Shell histories</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>ClickToFlash</name> <message> <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.ui" line="43"/> @@ -5217,7 +5275,7 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1765"/> + <location filename="../Debugger/DebugUI.py" line="1780"/> <source>Run Script</source> <translation>Выполнить сценарий</translation> </message> @@ -5238,7 +5296,7 @@ <p>Задание аргументов и запуск сценария без отладки. Если файл не был сохранён, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>Run Project</source> <translation>Выполнить проект</translation> </message> @@ -5343,7 +5401,7 @@ <p>Задание аргументов и запуск проекта на профилирование. Если файлы проекта не были сохранены, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1887"/> + <location filename="../Debugger/DebugUI.py" line="1902"/> <source>Debug Script</source> <translation>Отладить сценарий</translation> </message> @@ -5364,7 +5422,7 @@ <p>Задание аргументов командной строки и запуск сценария на отладку. Если файл не был сохранён, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <source>Debug Project</source> <translation>Отладить проект</translation> </message> @@ -5519,7 +5577,7 @@ <p>Прервать текущую отладочную сессию.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> <translation>Вычислить</translation> </message> @@ -5539,7 +5597,7 @@ <translation><b>Вычислить</b><p>Вычислить выражение в текущем контексте отлаживаемой программы. Результат будет отображен в окне интерпретатора.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> <translation>Выполнить</translation> </message> @@ -5736,147 +5794,147 @@ <translation>Отладка</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1021"/> + <location filename="../Debugger/DebugUI.py" line="1036"/> <source><p>The program has terminated with an exit status of {0}.</p></source> <translation><p>Программа завершилась с кодом выхода {0}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1026"/> + <location filename="../Debugger/DebugUI.py" line="1041"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> <translation><p><b>{0}</b> завершен с кодом выхода {1}.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1073"/> + <location filename="../Debugger/DebugUI.py" line="1088"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Отлаживаемая программа содержит неуказанную синтаксическую ошибку.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1092"/> + <location filename="../Debugger/DebugUI.py" line="1107"/> <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="1110"/> + <location filename="../Debugger/DebugUI.py" line="1125"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Выброшено исключение, которое не было обработано программой. Более точная информация в окне консоли.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1151"/> - <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="1166"/> + <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="1181"/> <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="1230"/> + <location filename="../Debugger/DebugUI.py" line="1245"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Отлаживаемая программа была неожиданно прервана.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <source>Breakpoint Condition Error</source> <translation>Ошибка в условиях точки останова</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <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="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <source>Watch Expression Error</source> <translation>Ошибка в выражении для отслеживания</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <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="1365"/> + <location filename="../Debugger/DebugUI.py" line="1380"/> <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="1369"/> + <location filename="../Debugger/DebugUI.py" line="1384"/> <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="1375"/> + <location filename="../Debugger/DebugUI.py" line="1390"/> <source>Watch expression already exists</source> <translation>Выражение для отслеживания уже существует</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1540"/> + <location filename="../Debugger/DebugUI.py" line="1555"/> <source>Coverage of Project</source> <translation>Охват проекта</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1527"/> + <location filename="../Debugger/DebugUI.py" line="1542"/> <source>Coverage of Script</source> <translation>Охват сценария</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1659"/> + <location filename="../Debugger/DebugUI.py" line="1674"/> <source>Profile of Project</source> <translation>Профиль проекта</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1646"/> + <location filename="../Debugger/DebugUI.py" line="1661"/> <source>Profile of Script</source> <translation>Профиль сценария</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <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="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> <translation>Задайте выражение для вычисления</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> <translation>Задайте выражение для выполнения</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1062"/> <source>The program has terminated with an exit status of {0}. </source> <translation>Программа завершилась с кодом выхода {0}. </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1051"/> + <location filename="../Debugger/DebugUI.py" line="1066"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation>"{0}" завершилась с кодом выхода {1}. </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1057"/> <source>Program terminated</source> <translation>Программа завершилась</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1035"/> + <location filename="../Debugger/DebugUI.py" line="1050"/> <source>The program has terminated with an exit status of {0}.</source> <translation>Программа завершилась с кодом выхода {0}.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1038"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>"{0}" has terminated with an exit status of {1}.</source> <translation>"{0}" завершилась с кодом выхода {1}.</translation> </message> @@ -5896,7 +5954,7 @@ <translation><b>Остановка</b><p>Остановка выполнения программы в отладчике.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1216"/> + <location filename="../Debugger/DebugUI.py" line="1231"/> <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> @@ -18330,7 +18388,7 @@ <p>Открывает новое окно браузера для отображения справки.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Open File</source> <translation>Открыть файл</translation> </message> @@ -19114,7 +19172,7 @@ <translation><b>Показать исходный текст страницы</b><p>Показать исходный текст страницы в редакторе.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2380"/> + <location filename="../Helpviewer/HelpWindow.py" line="2381"/> <source>Full Screen</source> <translation>Полный экран</translation> </message> @@ -19350,371 +19408,371 @@ <translation><b>Переиндексировать документацию</b><p>Переиндексировать документацию.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1355"/> + <location filename="../Helpviewer/HelpWindow.py" line="1356"/> <source>Clear private data</source> <translation>Очистить приватные данные</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="1350"/> <source>&Clear private data</source> - <translation>&Очистить личные данные</translation> - </message> - <message> - <location filename="../Helpviewer/HelpWindow.py" line="1357"/> + <translation type="obsolete">&Очистить личные данные</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="1358"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Очистить личные данные</b><p>Очистить личные данные: удалить историю просмотров, историю поиска или базу данных иконок.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear icons database</source> <translation>Очистить базу данных иконок</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear &icons database</source> <translation>Очистить базу данных &иконок</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1372"/> + <location filename="../Helpviewer/HelpWindow.py" line="1373"/> <source>Clear the database of favicons</source> <translation>Очистить базу данных иконок</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1374"/> + <location filename="../Helpviewer/HelpWindow.py" line="1375"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>Очистить базу данных иконок</b><p>Очистить базу данных иконок ранее посещённых WEB сайтов.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search Engines</source> <translation>Настройка поисковых систем</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search &Engines...</source> <translation>Настройка &поисковых систем...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1388"/> + <location filename="../Helpviewer/HelpWindow.py" line="1389"/> <source>Configure the available search engines</source> <translation>Настройка доступных поисковых систем</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1390"/> + <location filename="../Helpviewer/HelpWindow.py" line="1391"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation><b>Настройка поисковых систем...</b><p>Открытие диалога настройки доступных поисковых систем.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords</source> <translation>Менеджер сохранённых паролей</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords...</source> <translation>Менеджер сохранённых паролей...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1406"/> + <location filename="../Helpviewer/HelpWindow.py" line="1407"/> <source>Manage the saved passwords</source> <translation>Управление сохранёнными паролями</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1408"/> + <location filename="../Helpviewer/HelpWindow.py" line="1409"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation><b>Менеджер сохранения паролей...</b>Открытие диалога управления сохранёнными паролями<p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>Ad Block</source> <translation>Ad Block</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>&Ad Block...</source> <translation>&Ad Block...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1422"/> + <location filename="../Helpviewer/HelpWindow.py" line="1423"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Настройка AdBlock подписки и правил</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1424"/> + <location filename="../Helpviewer/HelpWindow.py" line="1425"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Показать диалог для настройки AdBlock подписок и правил.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1475"/> + <location filename="../Helpviewer/HelpWindow.py" line="1476"/> <source>Show the network monitor dialog</source> <translation>Показать диалог монитора сети</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1604"/> + <location filename="../Helpviewer/HelpWindow.py" line="1605"/> <source>&File</source> <translation>&Файл</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1627"/> + <location filename="../Helpviewer/HelpWindow.py" line="1628"/> <source>&Edit</source> <translation>&Правка</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1635"/> + <location filename="../Helpviewer/HelpWindow.py" line="1636"/> <source>&View</source> <translation>&Вид</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1646"/> + <location filename="../Helpviewer/HelpWindow.py" line="1647"/> <source>Text Encoding</source> <translation>Кодировка текста</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1652"/> + <location filename="../Helpviewer/HelpWindow.py" line="1653"/> <source>&Go</source> <translation>&Перейти</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1667"/> + <location filename="../Helpviewer/HelpWindow.py" line="1668"/> <source>H&istory</source> <translation>И&стория</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1675"/> + <location filename="../Helpviewer/HelpWindow.py" line="1676"/> <source>&Bookmarks</source> <translation>&Закладки</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1690"/> + <location filename="../Helpviewer/HelpWindow.py" line="1691"/> <source>&Settings</source> <translation>&Настройка</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1732"/> + <location filename="../Helpviewer/HelpWindow.py" line="1733"/> <source>&Tools</source> <translation>&Инструменты</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1741"/> + <location filename="../Helpviewer/HelpWindow.py" line="1742"/> <source>&Window</source> <translation>&Окно</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1752"/> + <location filename="../Helpviewer/HelpWindow.py" line="1753"/> <source>&Help</source> <translation>&Справка</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1763"/> + <location filename="../Helpviewer/HelpWindow.py" line="1764"/> <source>File</source> <translation>Файл</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1789"/> + <location filename="../Helpviewer/HelpWindow.py" line="1790"/> <source>Edit</source> <translation>Редактировать</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1794"/> + <location filename="../Helpviewer/HelpWindow.py" line="1795"/> <source>View</source> <translation>Вид</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1803"/> + <location filename="../Helpviewer/HelpWindow.py" line="1804"/> <source>Find</source> <translation>Найти</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1811"/> + <location filename="../Helpviewer/HelpWindow.py" line="1812"/> <source>Filter</source> <translation>Фильтр</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1816"/> + <location filename="../Helpviewer/HelpWindow.py" line="1817"/> <source>Filtered by: </source> <translation>Фильтровать по: </translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1823"/> + <location filename="../Helpviewer/HelpWindow.py" line="1824"/> <source>Settings</source> <translation>Настройка</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1843"/> + <location filename="../Helpviewer/HelpWindow.py" line="1844"/> <source>Help</source> <translation>Справка</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1850"/> + <location filename="../Helpviewer/HelpWindow.py" line="1851"/> <source>Go</source> <translation>Перейти</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Файлы справки (*.html *.htm);;Файлы PDF (*.pdf);;Файлы CHM (*.chm);;Все файлы (*)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2171"/> + <location filename="../Helpviewer/HelpWindow.py" line="2172"/> <source>Saved Tabs</source> <translation>Сохраненные вкладки</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2410"/> + <location filename="../Helpviewer/HelpWindow.py" line="2411"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. HTML5 offline storage will be deactivated. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation><b>Подтвердите включение приватного режима.</b><p>В приватном режиме посещённые WEB страницы не сохраняются в истории, поиски не сохраняются в списке последних поисков, иконки сайтов и куки так же не сохраняются. HTML5 автономное хранилище будет выключено. До тех пор, пока текущее окно не закрыто, переход вперёд и назад на просмотренные уже страницы всё же будет работать.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2690"/> + <location filename="../Helpviewer/HelpWindow.py" line="2691"/> <source>Could not find an associated content.</source> <translation>Невозможно найти соответствующее содержание.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2813"/> + <location filename="../Helpviewer/HelpWindow.py" line="2814"/> <source>Updating search index</source> <translation>Обновление поискового индекса</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2883"/> + <location filename="../Helpviewer/HelpWindow.py" line="2884"/> <source>Looking for Documentation...</source> <translation>Идёт поиск помощи...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2918"/> + <location filename="../Helpviewer/HelpWindow.py" line="2919"/> <source>Unfiltered</source> <translation>Unfiltered</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2937"/> + <location filename="../Helpviewer/HelpWindow.py" line="2938"/> <source>Help Engine</source> <translation>Движок для системы справки</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3452"/> - <source>ISO</source> - <translation>ISO</translation> - </message> - <message> <location filename="../Helpviewer/HelpWindow.py" line="3453"/> - <source>Windows</source> - <translation>Windows</translation> + <source>ISO</source> + <translation>ISO</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3454"/> - <source>ISCII</source> - <translation>ISCII</translation> + <source>Windows</source> + <translation>Windows</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3455"/> - <source>Unicode</source> - <translation>Юникод</translation> + <source>ISCII</source> + <translation>ISCII</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3456"/> - <source>Other</source> - <translation>Другое</translation> + <source>Unicode</source> + <translation>Юникод</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3457"/> + <source>Other</source> + <translation>Другое</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="3458"/> <source>IBM</source> <translation>IBM</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3479"/> + <location filename="../Helpviewer/HelpWindow.py" line="3480"/> <source>Default Encoding</source> <translation>Кодировка по умолчанию</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1486"/> + <location filename="../Helpviewer/HelpWindow.py" line="1487"/> <source>Downloads</source> <translation>Загрузки</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1490"/> + <location filename="../Helpviewer/HelpWindow.py" line="1491"/> <source>Shows the downloads window</source> <translation>Показать окно загрузки</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1492"/> + <location filename="../Helpviewer/HelpWindow.py" line="1493"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation><b>Загрузки</b><p>Показать окно загрузки.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1903"/> + <location filename="../Helpviewer/HelpWindow.py" line="1904"/> <source>VirusTotal</source> <translation>VirusTotal</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1907"/> + <location filename="../Helpviewer/HelpWindow.py" line="1908"/> <source>Scan current site</source> <translation>Проверить текущий сервер</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source>VirusTotal Scan</source> <translation>Проверка VirusTotal</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation><p>Невозможно запланировать проверку VirusTotal.<p> <p>Причина: {0}</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>RSS Feeds Dialog</source> <translation>Каналы RSS</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>&RSS Feeds Dialog...</source> <translation>Каналы &RSS...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation>Ctrl+Shift+F</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1507"/> + <location filename="../Helpviewer/HelpWindow.py" line="1508"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation>Показать сконфигурированные каналы RSS.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1509"/> + <location filename="../Helpviewer/HelpWindow.py" line="1510"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation><b>Каналы RSS...</b><p>Показывает сконфигурированные каналы RSS. Позволяет изменить их настройки.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Siteinfo Dialog</source> <translation>Информация о сервере</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>&Siteinfo Dialog...</source> <translation>&Информация о сервере...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1525"/> + <location filename="../Helpviewer/HelpWindow.py" line="1526"/> <source>Open a dialog showing some information about the current site.</source> <translation>Отображение диалога с информацией о текущем сервере.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1527"/> + <location filename="../Helpviewer/HelpWindow.py" line="1528"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation><b>Информация о сервере...</b><p>Отображение диалога с информацией о текущем сервере.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1835"/> + <location filename="../Helpviewer/HelpWindow.py" line="1836"/> <source>Tools</source> <translation>Инструменты</translation> </message> @@ -19731,47 +19789,47 @@ <translation>Уменьшить масштаб</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>Network Monitor</source> <translation>Монитор сети</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>&Network Monitor...</source> <translation>Мо&нитор сети...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1477"/> + <location filename="../Helpviewer/HelpWindow.py" line="1478"/> <source><b>Network Monitor...</b><p>Shows the network monitor dialog.</p></source> <translation><b>Сетевой монитор...</b><p>Открыть диалог сетевого монитора.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2387"/> + <location filename="../Helpviewer/HelpWindow.py" line="2388"/> <source>Restore Window</source> <translation>Восстановить окно</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage User Agent Settings</source> <translation>Настройка агента пользователя</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage &User Agent Settings</source> <translation>Настройка &агента пользователя</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1540"/> + <location filename="../Helpviewer/HelpWindow.py" line="1541"/> <source>Shows a dialog to manage the User Agent settings</source> <translation>Показывает диалог настройки агента пользователя</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1542"/> + <location filename="../Helpviewer/HelpWindow.py" line="1543"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation><b>Настройка агента пользователя</b><p>Отображение диалога настройки агента пользователя.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1719"/> + <location filename="../Helpviewer/HelpWindow.py" line="1720"/> <source>Global User Agent</source> <translation>Глобальный агент пользователя</translation> </message> @@ -19801,42 +19859,42 @@ <translation><b>Сохранение страницы...</b><p>Сохранение текущей страницы как снимка экрана.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>Synchronize data</source> <translation>Синхронизация данных</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>&Synchronize Data...</source> <translation>&Синхронизация данных...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1556"/> + <location filename="../Helpviewer/HelpWindow.py" line="1557"/> <source>Shows a dialog to synchronize data via the network</source> <translation>Показывает диалог синхронизации данных через сеть</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1558"/> + <location filename="../Helpviewer/HelpWindow.py" line="1559"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation><b>Синхронизация данных...</b><p>Показывает диалог синхронизации данных через сеть.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>ClickToFlash</source> <translation>ClickToFlash</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>&ClickToFlash...</source> <translation>&ClickToFlash...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1439"/> + <location filename="../Helpviewer/HelpWindow.py" line="1440"/> <source>Configure ClickToFlash whitelist</source> <translation>Настройка белого списка ClickToFlash</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1441"/> + <location filename="../Helpviewer/HelpWindow.py" line="1442"/> <source><b>ClickToFlash...</b><p>Opens a dialog to configure the ClickToFlash whitelist.</p></source> <translation><b>ClickToFlash...</b><p>Открытие диалога настройки белого списка ClickToFlash.</p></translation> </message> @@ -19881,22 +19939,22 @@ <translation><b>GreaseMonkey скрипты...</b><p>Конфигурация GreaseMonkey скриптов.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates</source> <translation>Менеджер SLL сертификатов</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates...</source> <translation>Менеджер SLL сертификатов...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1458"/> + <location filename="../Helpviewer/HelpWindow.py" line="1459"/> <source>Manage the saved SSL certificates</source> <translation>Управление сохранёнными SLL сертификатами</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1460"/> + <location filename="../Helpviewer/HelpWindow.py" line="1461"/> <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> @@ -19941,7 +19999,7 @@ <translation><b>Сохранение видимой страницы...</b><p>Сохранение видимой части текущей страницы как снимка экрана.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2893"/> + <location filename="../Helpviewer/HelpWindow.py" line="2894"/> <source>eric6 Web Browser</source> <translation>Eric6 Web браузер</translation> </message> @@ -19956,32 +20014,32 @@ <translation><b>Выход</b><p>Выйти из eric6 Web браузера.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2077"/> + <location filename="../Helpviewer/HelpWindow.py" line="2078"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p></source> <translation><b>Eric6 Web браузер - {0}</b><p>Eric Web браузер позволяет просматривать HTML файлы и файлы документации. Является частью инструментов разработчика.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>IP Address Report</source> <translation>Отчет IP адреса</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Domain Report</source> <translation>Отчет домена</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3743"/> + <location filename="../Helpviewer/HelpWindow.py" line="3744"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation>Введите действительный адрес IPv4 в четырехкомпонентой нотации с точками:</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>The given IP address is not in dotted quad notation.</source> <translation>Данный IP адрес приведен не в четырехкомпонентой нотации с точками.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Enter a valid domain name:</source> <translation>Введите действительное имя домена:</translation> </message> @@ -20026,22 +20084,22 @@ <translation><b>Флэш-куки</b><p>Отображение диалога управления флэш-куки.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values</source> <translation>Управление сохраненными значениями масштабирования</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values...</source> <translation>Управление сохраненными значениями масштабирования...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1574"/> + <location filename="../Helpviewer/HelpWindow.py" line="1575"/> <source>Manage the saved zoom values</source> <translation>Управление сохраненными значениями масштабирования</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1576"/> + <location filename="../Helpviewer/HelpWindow.py" line="1577"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation><b>Управление сохраненными значениями масштабирования...</b><p>Открытие диалога для управления сохраненными значениями масштабирования.</p></translation> </message> @@ -39591,7 +39649,7 @@ <translation><b>Заключение по охвату коду...</b><p>Показать заключение охвата по коду всех файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Profile Data</source> <translation>Данные профайлера</translation> </message> @@ -39611,7 +39669,7 @@ <translation><b>Данные профайлера...</b><p>Отображение результатов профилирования проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Application Diagram</source> <translation>Диаграмма приложения</translation> </message> @@ -39631,7 +39689,7 @@ <translation><b>Диаграмма приложения...</b><p>Отображает диаграмму проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source>Create Package List</source> <translation>Создать список пакетов</translation> </message> @@ -39641,7 +39699,7 @@ <translation>&Создать список пакетов</translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source>Create Plugin Archive</source> <translation>Создать архив плагина</translation> </message> @@ -39721,87 +39779,87 @@ <translation>&Очистить</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>Search New Files</source> <translation>Поиск новых файлов</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>There were no new files found to be added.</source> <translation>Не найдено файлов для добавления.</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source>Version Control System</source> <translation>Система контроля версий</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Контроль версий не используется.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4488"/> + <location filename="../Project/Project.py" line="4489"/> <source>Coverage Data</source> <translation>Данные охвата</translation> </message> <message> - <location filename="../Project/Project.py" line="4538"/> + <location filename="../Project/Project.py" line="4539"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Code Coverage</source> <translation>Охват кода</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Please select a coverage file</source> <translation>Пожалуйста, выберите файл для информации охвата</translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Please select a profile file</source> <translation>Пожалуйста, выберите файл профиля</translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Include module names?</source> <translation>Включать имена модулей?</translation> </message> <message> - <location filename="../Project/Project.py" line="4733"/> + <location filename="../Project/Project.py" line="4734"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Файл <b>PKGLIST</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Невозможно создать файл <b>PKGLIST</b>.</p><p>Причина: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4793"/> + <location filename="../Project/Project.py" line="4794"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation><p>Файл <b>PKGLIST</b> не существует. Отмена...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4801"/> + <location filename="../Project/Project.py" line="4802"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Для текущего проекта не определён главный сценарий. Отмена...</translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> + <location filename="../Project/Project.py" line="4816"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation><p>Невозможно прочитать файл <b>PKGLIST</b>.</p><p>Причина: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4854"/> + <location filename="../Project/Project.py" line="4855"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Невозможно сохранить в архив файл <b>{0}</b>. Игнорируем его.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4923"/> + <location filename="../Project/Project.py" line="4924"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл плагина <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> @@ -39866,12 +39924,12 @@ <translation>Консоль PyQt5</translation> </message> <message> - <location filename="../Project/Project.py" line="4358"/> + <location filename="../Project/Project.py" line="4359"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Контроль версий не используется.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл плагина <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> @@ -39906,12 +39964,12 @@ <translation><b>Создать файл архива плагинов (снимок выпуска)</b><p>Создаёт файл архива плагинов Eric6, используя список файлов, указанный в файле PKGLIST. Имя архива строится из имени главного сценария. Версия главного сценария меняется, чтобы соответствовать версии выпуска снимка.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4828"/> + <location filename="../Project/Project.py" line="4829"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Невозможно создать архив плагина <b>{0}</b> Eric6.</p><p>Причина: {1}</p> {0}?} {1}?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4877"/> + <location filename="../Project/Project.py" line="4878"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation><p>Архив плагина eric6 <b>{0}</b> был успешно создан.</p> {0}?}</translation> </message> @@ -48321,131 +48379,131 @@ <p>В режиме пассивной отладки оболочка доступна только после того, как отлаживаемая программа подключится к IDE и до её завершения. Это отображается иным приглашением и другим заголовком окна.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="194"/> + <location filename="../QScintilla/Shell.py" line="197"/> <source>Passive >>> </source> <translation>Пассивная >>></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="209"/> + <location filename="../QScintilla/Shell.py" line="212"/> <source>Start</source> <translation>Начать</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="214"/> + <location filename="../QScintilla/Shell.py" line="217"/> <source>History</source> <translation>История</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="215"/> + <location filename="../QScintilla/Shell.py" line="218"/> <source>Select entry</source> <translation>Выбрать</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="216"/> + <location filename="../QScintilla/Shell.py" line="219"/> <source>Show</source> <translation>Показать</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="228"/> + <location filename="../QScintilla/Shell.py" line="231"/> <source>Clear</source> <translation>Очистить</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="221"/> + <location filename="../QScintilla/Shell.py" line="224"/> <source>Cut</source> <translation>Вырезать</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="222"/> + <location filename="../QScintilla/Shell.py" line="225"/> <source>Copy</source> <translation>Копировать</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="223"/> + <location filename="../QScintilla/Shell.py" line="226"/> <source>Paste</source> <translation>Вставить</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="229"/> + <location filename="../QScintilla/Shell.py" line="232"/> <source>Reset</source> <translation>Сбросить</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="230"/> + <location filename="../QScintilla/Shell.py" line="233"/> <source>Reset and Clear</source> <translation>Переинициализировать и очистить</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="235"/> + <location filename="../QScintilla/Shell.py" line="238"/> <source>Configure...</source> <translation>Настроить...</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select History</source> <translation>Выберите историю</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Выберите одну из предыдущих команд для выполнения.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="642"/> + <location filename="../QScintilla/Shell.py" line="662"/> <source>Passive Debug Mode</source> <translation>Режим пассивной отладки</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="643"/> + <location filename="../QScintilla/Shell.py" line="663"/> <source> Not connected</source> <translation> Нет соединения</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="645"/> + <location filename="../QScintilla/Shell.py" line="665"/> <source>No.</source> <translation>Нет.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="647"/> + <location filename="../QScintilla/Shell.py" line="667"/> <source>{0} on {1}, {2}</source> <translation>{0} в {1}, {2}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="785"/> + <location filename="../QScintilla/Shell.py" line="805"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="793"/> + <location filename="../QScintilla/Shell.py" line="813"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1401"/> + <location filename="../QScintilla/Shell.py" line="1421"/> <source>Shell language "{0}" not supported. </source> <translation>Язык оболочки "{0}" не поддерживается. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> не является файлом</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="226"/> + <location filename="../QScintilla/Shell.py" line="229"/> <source>Find</source> <translation>Найти</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="686"/> + <location filename="../QScintilla/Shell.py" line="706"/> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -48456,13 +48514,13 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="718"/> + <location filename="../QScintilla/Shell.py" line="738"/> <source>Unspecified syntax error. </source> <translation>Неизвестная синтакcическая ошибка.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="696"/> + <location filename="../QScintilla/Shell.py" line="716"/> <source>Exception "{0}" {1} </source> @@ -48471,14 +48529,14 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="720"/> + <location filename="../QScintilla/Shell.py" line="740"/> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation>Синтаксическая ошибка "{1}" в файле {0} в строке {2}, символ {3}. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="743"/> + <location filename="../QScintilla/Shell.py" line="763"/> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation>Сигнал "{0}" сгенерирован в файле {1} в строке {2}. @@ -57637,17 +57695,17 @@ <translation>Фильтр задач не содержит ни одного активного фильтра. Настроить фильтры?</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Extracting project tasks...</source> <translation>Извлечение задач проекта...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Abort</source> <translation>Прервать</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="707"/> + <location filename="../Tasks/TaskViewer.py" line="706"/> <source>Extracting project tasks... {0}</source> <translation>Извлечение задач проекта... @@ -57674,12 +57732,12 @@ <translation>&Задачи проекта</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>%v/%m Files</source> <translation>%v из %m файлов</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="702"/> + <location filename="../Tasks/TaskViewer.py" line="701"/> <source>Tasks</source> <translation>Задачи</translation> </message> @@ -60419,7 +60477,7 @@ <translation>Показать версии, доступные для загрузки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <source>Report Bug</source> <translation>Сообщение об ошибке</translation> </message> @@ -60459,7 +60517,7 @@ <translation><b>Послать запрос...</b><p>Показать диалог создания запроса.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2657"/> + <location filename="../UI/UserInterface.py" line="2676"/> <source>Unittest</source> <translation>Unittest</translation> </message> @@ -60521,7 +60579,7 @@ <translation><b>Сценарий Unittest</b><p>Выполнить Uniitest с текущим сценарием.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>Unittest Project</source> <translation>Unittest на проекте</translation> </message> @@ -60809,7 +60867,7 @@ <translation><b>Горячие клавиши</b><p>Задайте горячие клавиши на свой вкус.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5544"/> + <location filename="../UI/UserInterface.py" line="5571"/> <source>Export Keyboard Shortcuts</source> <translation>Экспортировать горячие клавиши</translation> </message> @@ -60830,7 +60888,7 @@ <p>Экспортировать горячие клавиши приложения.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Import Keyboard Shortcuts</source> <translation>Импортировать горячие клавиши</translation> </message> @@ -60851,612 +60909,612 @@ <p>Импортировать горячие клавиши приложения.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Activate current editor</source> <translation>Активизировать текущий редактор</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Show next</source> <translation>Показать следующую закладку</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Show previous</source> <translation>Показать предыдущую закладку</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Switch between tabs</source> <translation>Переключение между вкладками</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>Plugin Infos</source> <translation>Информация о плагинах</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>&Plugin Infos...</source> <translation>Ин&формация о плагинах...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2224"/> + <location filename="../UI/UserInterface.py" line="2241"/> <source>Show Plugin Infos</source> <translation>Отображение информации о плагинах</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2225"/> + <location filename="../UI/UserInterface.py" line="2242"/> <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="2238"/> + <location filename="../UI/UserInterface.py" line="2255"/> <source>Install Plugins</source> <translation>Установить плагины</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2233"/> + <location filename="../UI/UserInterface.py" line="2250"/> <source>&Install Plugins...</source> <translation>&Установить плагины...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239"/> + <location filename="../UI/UserInterface.py" line="2256"/> <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="2251"/> + <location filename="../UI/UserInterface.py" line="2268"/> <source>Uninstall Plugin</source> <translation>Удалить плагин</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2246"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>&Uninstall Plugin...</source> <translation>Уда&лить плагин...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2252"/> + <location filename="../UI/UserInterface.py" line="2269"/> <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="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin Repository</source> <translation>Репозиторий плагинов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin &Repository...</source> <translation>&Репозиторий плагинов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2281"/> <source>Show Plugins available for download</source> <translation>Показать плагины, доступные для загрузки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2283"/> <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="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt4 Documentation</source> <translation>Документация Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt&4 Documentation</source> <translation>Документация Qt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2294"/> + <location filename="../UI/UserInterface.py" line="2311"/> <source>Open Qt4 Documentation</source> <translation>Открыть документацию Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt4 Documentation</source> <translation>Документация PyQt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2324"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Open PyQt4 Documentation</source> <translation>Открыть документацию Qt4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>Eric API Documentation</source> <translation>Документация API Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>&Eric API Documentation</source> <translation>Документация API &Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2408"/> - <source>Open Eric API Documentation</source> - <translation>Открыть документацию API Eric</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2425"/> + <source>Open Eric API Documentation</source> + <translation>Открыть документацию API Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2442"/> <source>PySide Documentation</source> <translation>Документация PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>Py&Side Documentation</source> <translation>Документация Py&Side</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2446"/> <source>Open PySide Documentation</source> <translation>Открыть документацию PySide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2472"/> - <source>&Unittest</source> - <translation>&Unittest</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2489"/> + <source>&Unittest</source> + <translation>&Unittest</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506"/> <source>E&xtras</source> <translation>До&полнительно</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2494"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source>Wi&zards</source> <translation>&Мастера</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2502"/> + <location filename="../UI/UserInterface.py" line="2519"/> <source>Select Tool Group</source> <translation>Выберите группу инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2510"/> + <location filename="../UI/UserInterface.py" line="2527"/> <source>Se&ttings</source> <translation>&Настройка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2533"/> + <location filename="../UI/UserInterface.py" line="2552"/> <source>&Window</source> <translation>&Окно</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2577"/> <source>&Toolbars</source> <translation>&Панели инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2569"/> + <location filename="../UI/UserInterface.py" line="2588"/> <source>P&lugins</source> <translation>&Плагины</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2597"/> <source>Configure...</source> <translation>Настроить...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583"/> + <location filename="../UI/UserInterface.py" line="2602"/> <source>&Help</source> <translation>&Справка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2656"/> + <location filename="../UI/UserInterface.py" line="2675"/> <source>Tools</source> <translation>Инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2658"/> + <location filename="../UI/UserInterface.py" line="2677"/> <source>Settings</source> <translation>Настройка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <source>Help</source> <translation>Справка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2660"/> + <location filename="../UI/UserInterface.py" line="2679"/> <source>Profiles</source> <translation>Профили</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2661"/> + <location filename="../UI/UserInterface.py" line="2680"/> <source>Plugins</source> <translation>Плагины</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2814"/> + <location filename="../UI/UserInterface.py" line="2841"/> <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="2821"/> + <location filename="../UI/UserInterface.py" line="2848"/> <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="2828"/> + <location filename="../UI/UserInterface.py" line="2855"/> <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="2835"/> + <location filename="../UI/UserInterface.py" line="2862"/> <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="2842"/> + <location filename="../UI/UserInterface.py" line="2869"/> <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="2849"/> + <location filename="../UI/UserInterface.py" line="2876"/> <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="2924"/> + <location filename="../UI/UserInterface.py" line="2951"/> <source>External Tools/{0}</source> <translation>Внешние инструменты/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3021"/> + <location filename="../UI/UserInterface.py" line="3048"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Номера версий</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360"/> + <location filename="../UI/UserInterface.py" line="6413"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <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="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>Restart application</source> <translation>Перезапустить приложение</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>The application needs to be restarted. Do it now?</source> <translation>Необходимо перезапустить приложение. Сделать это сейчас?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3435"/> + <location filename="../UI/UserInterface.py" line="3462"/> <source>Configure Tool Groups ...</source> <translation>Настройка группы инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3439"/> + <location filename="../UI/UserInterface.py" line="3466"/> <source>Configure current Tool Group ...</source> <translation>Настроить текущую группу инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3390"/> + <location filename="../UI/UserInterface.py" line="3417"/> <source>&Builtin Tools</source> <translation>&Встроенные инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3407"/> + <location filename="../UI/UserInterface.py" line="3434"/> <source>&Plugin Tools</source> <translation>Инструменты-&плагины</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3558"/> + <location filename="../UI/UserInterface.py" line="3585"/> <source>&Show all</source> <translation>Показать &всё</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3560"/> + <location filename="../UI/UserInterface.py" line="3587"/> <source>&Hide all</source> <translation>Ск&рыть всё</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt 3 support</source> <translation>Поддержка Qt 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <source>Problem</source> <translation>Проблема</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <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="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <source>Process Generation Error</source> <translation>Ошибка при запуске процесса</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4295"/> + <location filename="../UI/UserInterface.py" line="4322"/> <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="4362"/> + <location filename="../UI/UserInterface.py" line="4389"/> <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="4413"/> + <location filename="../UI/UserInterface.py" line="4440"/> <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="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <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="4455"/> + <location filename="../UI/UserInterface.py" line="4482"/> <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="4475"/> + <location filename="../UI/UserInterface.py" line="4502"/> <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="4523"/> + <location filename="../UI/UserInterface.py" line="4550"/> <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="4578"/> + <location filename="../UI/UserInterface.py" line="4605"/> <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="4599"/> + <location filename="../UI/UserInterface.py" line="4626"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>External Tools</source> <translation>Внешние инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4717"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>No toolgroup entry '{0}' found.</source> <translation>Запись для группы инструментов '{0}' не найдена.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4738"/> + <location filename="../UI/UserInterface.py" line="4765"/> <source>Starting process '{0} {1}'. </source> <translation>Запускается процесс '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <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="4830"/> + <location filename="../UI/UserInterface.py" line="4857"/> <source>Process '{0}' has exited. </source> <translation>Процесс '{0}' завершен. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <source>Documentation Missing</source> <translation>Документация отсутствует</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <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="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source>Documentation</source> <translation>Документация</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5039"/> + <location filename="../UI/UserInterface.py" line="5066"/> <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="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation><p>Стартовый каталог документации PySide не найден.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Файл горячих клавиш (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <source>Save tasks</source> <translation>Сохранить задачи</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <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="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <source>Read tasks</source> <translation>Прочитать задачи</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <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="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <source>Save session</source> <translation>Сохранить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <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="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <source>Read session</source> <translation>Загрузить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <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="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>&Cancel</source> <translation>От&мена</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6196"/> <source>Trying host {0}</source> <translation>Подключение к хосту {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <source>Update available</source> <translation>Обновления доступны</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Error during updates check</source> <translation>Ошибка при проверке обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Could not perform updates check.</source> <translation>Невозможно запустить проверку обновлений.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6346"/> + <location filename="../UI/UserInterface.py" line="6399"/> <source><h3>Available versions</h3><table></source> <translation><h3>Доступные версии</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>First time usage</source> <translation>Первое использование</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python 3 Documentation</source> <translation>Документация Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python &3 Documentation</source> <translation>Документация Python &3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2383"/> <source>Open Python 3 Documentation</source> <translation>Открыть документацию Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python 2 Documentation</source> <translation>Документация Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python &2 Documentation</source> <translation>Документация Python &2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384"/> + <location filename="../UI/UserInterface.py" line="2401"/> <source>Open Python 2 Documentation</source> <translation>Открыть документацию Python 2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2403"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <source>Error getting versions information</source> <translation>Ошибка при получении информации о версии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6205"/> + <location filename="../UI/UserInterface.py" line="6258"/> <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="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Open Browser</source> <translation>Открыть браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Could not start a web browser</source> <translation>Невозможно запустить web браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>Невозможно загрузить информацию о версии в течении последних 7 дней. Пожалуйста попробуйте ещё раз.</translation> </message> @@ -61542,12 +61600,12 @@ <translation><b>Снимок</b><p>Сделать снимок области экрана.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4696"/> <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="6406"/> + <location filename="../UI/UserInterface.py" line="6459"/> <source>Select Workspace Directory</source> <translation>Выбор рабочей директории</translation> </message> @@ -61767,7 +61825,7 @@ <translation><b>Активировать просмотрщик чисел</b><p>Переключить фокус ввода на окно просмотра чисел.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2538"/> + <location filename="../UI/UserInterface.py" line="2557"/> <source>&Windows</source> <translation>&Окна</translation> </message> @@ -61842,22 +61900,22 @@ <translation><b>Qt-Linguist</b><p>Запуск Qt-Linguist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt5 Documentation</source> <translation>Документация Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt&5 Documentation</source> <translation>Документация Qt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308"/> + <location filename="../UI/UserInterface.py" line="2325"/> <source>Open Qt5 Documentation</source> <translation>Открыть документацию Qt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2860"/> + <location filename="../UI/UserInterface.py" line="2887"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation><p>В этой части строки статуса можно масштабировать текущее окно, оболочку или терминал.</p></translation> </message> @@ -61902,62 +61960,62 @@ <translation><b>Редактировать фильтры сообщений</b><p>Редактировать фильтры нежелательных сообщений об ошибках.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt&4 Documentation</source> <translation>Документация PyQt&4</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt5 Documentation</source> <translation>Документация PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt&5 Documentation</source> <translation>Документация PyQt&5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2343"/> + <location filename="../UI/UserInterface.py" line="2360"/> <source>Open PyQt5 Documentation</source> <translation>Открыть документацию PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5105"/> + <location filename="../UI/UserInterface.py" line="5132"/> <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="2295"/> + <location filename="../UI/UserInterface.py" line="2312"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация Qt4</b><p>Показать документацию Qt4. В зависимости от выбранных настроек документация будет показана во внутреннем обозревателе, внешнем web браузере или в Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2326"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация Qt5</b><p>Показать документацию Qt5. В зависимости от выбранных настроек документация будет показана во внутреннем обозревателе, внешнем web браузере или в Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2325"/> + <location filename="../UI/UserInterface.py" line="2342"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация PyQt4</b><p>Показать документацию PyQt4. В зависимости от выбранных настроек документация будет показана во внутреннем обозревателе, внешнем web браузере или в Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345"/> + <location filename="../UI/UserInterface.py" line="2362"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация PyQt5</b><p>Показать документацию PyQt5. В зависимости от выбранных настроек документация будет показана во внутреннем обозревателе, внешнем web браузере или в Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368"/> + <location filename="../UI/UserInterface.py" line="2385"/> <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="2431"/> + <location filename="../UI/UserInterface.py" line="2448"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация PySide</b><p>Показать документацию PySide. В зависимости от выбранных настроек документация будет показана во внутреннем обозревателе, внешнем web браузере или в Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> @@ -61977,7 +62035,7 @@ <translation><b>Показать журнал ошибок...</b><p>Показать журнал ошибок.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6191"/> <source>Version Check</source> <translation>Проверка версии</translation> </message> @@ -62042,32 +62100,32 @@ <translation><b>Показать внешние инструменты</b><p>Открытие диалога отображения пути и версий внешних инструментов, используемых Eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2410"/> + <location filename="../UI/UserInterface.py" line="2427"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Eric6 не поддерживает Qt3.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <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="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>Eric6 is up to date</source> <translation>Eric6 не требует обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>You are using the latest version of eric6</source> <translation>Вы используете самую последнюю версию eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>Настройка Eric6 ещё не выполнена. Сейчас будет запущен диалог конфигурации.</translation> </message> @@ -62077,17 +62135,17 @@ <translation>Генерация панели инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3410"/> + <location filename="../UI/UserInterface.py" line="3437"/> <source>&User Tools</source> <translation>&Инструменты пользователя</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482"/> + <location filename="../UI/UserInterface.py" line="3509"/> <source>No User Tools Configured</source> <translation>Инструменты пользователя не сконфигурированы</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6154"/> + <location filename="../UI/UserInterface.py" line="6207"/> <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> @@ -62111,6 +62169,16 @@ <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="2189"/> + <source>Clear private data</source> + <translation type="unfinished">Очистить приватные данные</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <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> </context> <context> <name>UserPropertiesDialog</name> @@ -65429,17 +65497,17 @@ <translation>Позиция: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065"/> + <location filename="../ViewManager/ViewManager.py" line="5066"/> <source>&Clear</source> <translation>&Очистить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5059"/> + <location filename="../ViewManager/ViewManager.py" line="5060"/> <source>&Add</source> <translation>&Добавить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5062"/> + <location filename="../ViewManager/ViewManager.py" line="5063"/> <source>&Edit...</source> <translation>&Правка...</translation> </message> @@ -66001,27 +66069,27 @@ <translation>Список исключений пользователя</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>Edit Spelling Dictionary</source> <translation>Редактировать орфографический словарь</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6242"/> + <location filename="../ViewManager/ViewManager.py" line="6243"/> <source>Editing {0}</source> <translation>Редактирование {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6227"/> + <location filename="../ViewManager/ViewManager.py" line="6228"/> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл словаря<b>{0}</b></p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6254"/> + <location filename="../ViewManager/ViewManager.py" line="6255"/> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>Невозможно записать файл словаря<b>{0}</b></p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>The spelling dictionary was saved successfully.</source> <translation>Файл словаря успешно сохранён.</translation> </message> @@ -68123,7 +68191,7 @@ <context> <name>WebBrowserWindow</name> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3153"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3154"/> <source>eric6 Web Browser</source> <translation>Eric6 Web браузер</translation> </message> @@ -68143,7 +68211,7 @@ <translation>Поиск</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1714"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1715"/> <source>JavaScript Console</source> <translation>Консоль JavaScript</translation> </message> @@ -68200,7 +68268,7 @@ <translation><b>Новое окно</b><p>Открывается новое окно web-браузера в текущем приватном режиме.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>New Private Window</source> <translation>Новое приватное окно</translation> </message> @@ -68226,7 +68294,7 @@ <translation><b>Новое приватное окно</b><p>Открытие нового приватного окна web-бразера путем запуска новой копии web-браузера в приватном режиме.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>Open File</source> <translation>Открыть файл</translation> </message> @@ -69131,7 +69199,7 @@ <translation><b>Показать исходный текст страницы</b><p>Показать исходный текст страницы в редакторе.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2662"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2663"/> <source>Full Screen</source> <translation>Полный экран</translation> </message> @@ -69447,526 +69515,526 @@ <translation><b>Переиндексировать документацию</b><p>Переиндексировать документацию.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1504"/> <source>Clear private data</source> <translation>Очистить приватные данные</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/> <source>&Clear private data</source> - <translation>&Очистить личные данные</translation> - </message> - <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/> + <translation type="obsolete">&Очистить личные данные</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1506"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Очистить личные данные</b><p>Очистить личные данные: удалить историю просмотров, историю поиска или базу данных иконок.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear icons database</source> <translation>Очистить базу данных иконок</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear &icons database</source> <translation>Очистить базу данных &иконок</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1521"/> <source>Clear the database of favicons</source> <translation>Очистить базу данных иконок</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1522"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1523"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>Очистить базу данных иконок</b><p>Очистить базу данных иконок ранее посещённых WEB сайтов.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1532"/> <source>Manage saved Favicons</source> <translation>Управление сохраненными фавиконами</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1538"/> <source>Show a dialog to manage the saved favicons</source> <translation>Отображение диалога управления сохраненными фавиконами</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1539"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/> <source><b>Manage saved Favicons</b><p>This shows a dialog to manage the saved favicons of previously visited URLs.</p></source> <translation><b>Управление сохраненными фавиконами</b><p>Отображение диалога управлениея сохраненными фавиконами из посещенных ранее URLs.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search Engines</source> <translation>Настройка поисковых систем</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search &Engines...</source> <translation>Настройка &поисковых систем...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1553"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1554"/> <source>Configure the available search engines</source> <translation>Настройка доступных поисковых систем</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1556"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation><b>Настройка доступных поисковых систем...</b><p>Открытие диалога настройки поисковых систем.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords</source> <translation>Менеджер сохранённых паролей</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords...</source> <translation>Менеджер сохранённых паролей...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1572"/> <source>Manage the saved passwords</source> <translation>Управление сохранёнными паролями</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1573"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1574"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation><b>Менеджер сохранения паролей...</b>Открытие диалога управления сохранёнными паролями<p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>Ad Block</source> <translation>Ad Block</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>&Ad Block...</source> <translation>&Ad Block...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1588"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Настройка AdBlock подписки и правил</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1589"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1590"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Показать диалог для настройки AdBlock подписок и правил.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors</source> <translation>Управление ошибками сертификата SSL</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors...</source> <translation>Управление ошибками сертификата SSL...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1604"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1605"/> <source>Manage the accepted SSL certificate Errors</source> <translation>Управление принятыми ошибками сертификата SSL</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1606"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/> <source><b>Manage SSL Certificate Errors...</b><p>Opens a dialog to manage the accepted SSL certificate errors.</p></source> <translation><b>Управление ошибками сертификата SSL...</b><p>Открытие диалога управления принятыми ошибками сертификата SSL.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1616"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1617"/> <source>Downloads</source> <translation>Загрузки</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1620"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1621"/> <source>Shows the downloads window</source> <translation>Показать окно загрузки</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1622"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation><b>Загрузки</b><p>Показать окно загрузки.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>RSS Feeds Dialog</source> <translation>Каналы RSS</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>&RSS Feeds Dialog...</source> <translation>Каналы &RSS...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation>Ctrl+Shift+F</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1637"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1638"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation>Показать сконфигурированные каналы RSS.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1639"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation><b>Каналы RSS...</b><p>Показывает сконфигурированные каналы RSS. Позволяет изменить их настройки.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Siteinfo Dialog</source> <translation>Информация о сервере</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>&Siteinfo Dialog...</source> <translation>&Информация о сервере...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/> <source>Open a dialog showing some information about the current site.</source> <translation>Отображение диалога с информацией о текущем сервере.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1658"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation><b>Информация о сервере...</b><p>Отображение диалога с информацией о текущем сервере.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage User Agent Settings</source> <translation>Настройка агента пользователя</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage &User Agent Settings</source> <translation>Настройка &агента пользователя</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/> <source>Shows a dialog to manage the User Agent settings</source> <translation>Показывает диалог настройки агента пользователя</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1672"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation><b>Настройка агента пользователя</b><p>Отображение диалога настройки агента пользователя.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>Synchronize data</source> <translation>Синхронизация данных</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>&Synchronize Data...</source> <translation>&Синхронизация данных...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1686"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/> <source>Shows a dialog to synchronize data via the network</source> <translation>Отображение диалога синхронизации данных через сеть</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1689"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation><b>Синхронизация данных...</b><p>Отображение диалога синхронизации данных через сеть.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values</source> <translation>Управление сохраненными значениями масштабирования</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values...</source> <translation>Управление сохраненными значениями масштабирования...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1705"/> <source>Manage the saved zoom values</source> <translation>Управление сохраненными значениями масштабирования</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1706"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation><b>Управление сохраненными значениями масштабирования...</b><p>Открытие диалога для управления сохраненными значениями масштабирования.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1718"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/> <source>Toggle the JavaScript console window</source> <translation>Переключение окна консоли JavaScript</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1720"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1721"/> <source><b>JavaScript Console</b><p>This toggles the JavaScript console window.</p></source> <translation><b>Консоль JavaScript</b><p>Переключение окна консоли JavaScript.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1765"/> <source>&File</source> <translation>&Файл</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1787"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1788"/> <source>&Edit</source> <translation>&Правка</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1804"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1805"/> <source>&View</source> <translation>&Вид</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1812"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1813"/> <source>Text Encoding</source> <translation>Кодировка текста</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1818"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1819"/> <source>&Go</source> <translation>&Перейти</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1833"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/> <source>H&istory</source> <translation>И&стория</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1845"/> <source>&Bookmarks</source> <translation>&Закладки</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1861"/> <source>&Settings</source> <translation>&Настройка</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1887"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1888"/> <source>Global User Agent</source> <translation>Глобальный агент пользователя</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1900"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1901"/> <source>&Tools</source> <translation>&Инструменты</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1907"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1908"/> <source>&Window</source> <translation>&Окно</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1920"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1921"/> <source>&Help</source> <translation>&Справка</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1931"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1932"/> <source>File</source> <translation>Файл</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1959"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1960"/> <source>Edit</source> <translation>Редактировать</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1971"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1972"/> <source>View</source> <translation>Вид</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1980"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/> <source>Find</source> <translation>Найти</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1988"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1989"/> <source>Filter</source> <translation>Фильтр</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1993"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1994"/> <source>Filtered by: </source> <translation>Фильтровать по: </translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2000"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2001"/> <source>Settings</source> <translation>Настройка</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2011"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2012"/> <source>Tools</source> <translation>Инструменты</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2020"/> <source>Help</source> <translation>Справка</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2026"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2027"/> <source>Go</source> <translation>Перейти</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2080"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/> <source>VirusTotal</source> <translation>VirusTotal</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2084"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2085"/> <source>Scan current site</source> <translation>Проверить текущий сервер</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>IP Address Report</source> <translation>Отчет IP адреса</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Domain Report</source> <translation>Отчет домена</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить процесс.<br>Убедитесь, что он доступен как <b>{0}</b>.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>OK</source> <translation>OK</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2305"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2306"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p><p>It is based on QtWebEngine {1} and Chrome {2}.</p></source> <translation><b>Еric6 Web-браузер - {0}</b><p>Eric6 Web-браузер - это комбинированный браузер для отображения файла справки и HTML. Он является частью набора инструментов среды разработки eric6.</p><p>Базируются на основе QtWebEngine {1} и Chrome {2}.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2425"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2426"/> <source>Saved Tabs</source> <translation>Сохраненные вкладки</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2669"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2670"/> <source>Restore Window</source> <translation>Восстановить окно</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2970"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2971"/> <source>Could not find an associated content.</source> <translation>Невозможно найти соответствующее содержание.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3073"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3074"/> <source>Updating search index</source> <translation>Обновление поискового индекса</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3143"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3144"/> <source>Looking for Documentation...</source> <translation>Идёт поиск помощи...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3178"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3179"/> <source>Unfiltered</source> <translation>Unfiltered</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3197"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3198"/> <source>Help Engine</source> <translation>Движок для системы справки</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3724"/> - <source>ISO</source> - <translation>ISO</translation> - </message> - <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3725"/> - <source>Windows</source> - <translation>Windows</translation> + <source>ISO</source> + <translation>ISO</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3726"/> - <source>ISCII</source> - <translation>ISCII</translation> + <source>Windows</source> + <translation>Windows</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3727"/> - <source>Unicode</source> - <translation>Юникод</translation> + <source>ISCII</source> + <translation>ISCII</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3728"/> - <source>Other</source> - <translation>Другое</translation> + <source>Unicode</source> + <translation>Юникод</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3729"/> + <source>Other</source> + <translation>Другое</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3730"/> <source>IBM</source> <translation>IBM</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3751"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3752"/> <source>Default Encoding</source> <translation>Кодировка по умолчанию</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source>VirusTotal Scan</source> <translation>Проверка VirusTotal</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation><p>Невозможно запланировать проверку VirusTotal.<p> <p>Причина: {0}</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4043"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4044"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation>Введите действительный адрес IPv4 в четырехкомпонентой нотации с точками:</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>The given IP address is not in dotted quad notation.</source> <translation>Данный IP адрес приведен не в четырехкомпонентой нотации с точками.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Enter a valid domain name:</source> <translation>Введите действительное имя домена:</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1729"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1730"/> <source>Tab Manager</source> <translation>Менеджер вкладок</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/> <source>Shows the tab manager window</source> <translation>Отображение окна менеджера вкладок</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1735"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/> <source><b>Tab Manager</b><p>Shows the tab manager window.</p></source> <translation><b>Менеджер вкладок</b><p>Отображение окна менеджера вкладок.</p></translation> </message> @@ -70002,7 +70070,7 @@ <translation type="unfinished"><b>Сохранить как...</b><p>Сохранить текущую страницу в файл.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>HTML Files (*.html *.htm *.mhtml);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_tr.ts Tue Aug 23 19:02:43 2016 +0200 +++ b/i18n/eric6_tr.ts Wed Aug 24 20:00:29 2016 +0200 @@ -2805,6 +2805,64 @@ </message> </context> <context> + <name>ClearPrivateDataDialog</name> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="14"/> + <source>Clear Private Data</source> + <translation type="unfinished">Özel Verileri Temizle</translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="23"/> + <source>Select to clear the list of recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="26"/> + <source>Recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="36"/> + <source>Select to clear the list of recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="39"/> + <source>Recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="49"/> + <source>Select to clear the list of recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="52"/> + <source>Recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="62"/> + <source>Select to clear the debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="65"/> + <source>Debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="75"/> + <source>Select to clear the shell histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="78"/> + <source>Shell histories</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>ClickToFlash</name> <message> <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.ui" line="43"/> @@ -5292,7 +5350,7 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1765"/> + <location filename="../Debugger/DebugUI.py" line="1780"/> <source>Run Script</source> <translation>Betiği Çalıştır</translation> </message> @@ -5312,7 +5370,7 @@ <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="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>Run Project</source> <translation>Projeyi Çalıştır</translation> </message> @@ -5412,7 +5470,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1887"/> + <location filename="../Debugger/DebugUI.py" line="1902"/> <source>Debug Script</source> <translation>Betik Hata Ayıklama</translation> </message> @@ -5432,7 +5490,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <source>Debug Project</source> <translation>Proje Hata Ayıklama</translation> </message> @@ -5582,7 +5640,7 @@ <translation><b>Dur</b><p>Çalışan hata ayıklama oturumunu durdur.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> <translation>Değerlendir</translation> </message> @@ -5602,7 +5660,7 @@ <translation><b>Değerlendirme</b><p>Hata ayıklaması yapılan program metni içinde geçenr ifadeleri değerlendir. Sonuç kabuk penceresinde gösterilir.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> <translation>Gerçekleştir</translation> </message> @@ -5792,144 +5850,144 @@ <translation>Hata Ayıklama</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1021"/> + <location filename="../Debugger/DebugUI.py" line="1036"/> <source><p>The program has terminated with an exit status of {0}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1026"/> + <location filename="../Debugger/DebugUI.py" line="1041"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1073"/> + <location filename="../Debugger/DebugUI.py" line="1088"/> <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="1092"/> + <location filename="../Debugger/DebugUI.py" line="1107"/> <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="1110"/> + <location filename="../Debugger/DebugUI.py" line="1125"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1151"/> - <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="1166"/> + <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="1181"/> <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="1230"/> + <location filename="../Debugger/DebugUI.py" line="1245"/> <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="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <source>Breakpoint Condition Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <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="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <source>Watch Expression Error</source> <translation>Gözetleme İfade hatası</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <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="1365"/> + <location filename="../Debugger/DebugUI.py" line="1380"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1384"/> <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="1375"/> + <location filename="../Debugger/DebugUI.py" line="1390"/> <source>Watch expression already exists</source> <translation>Hali hazırda gözetleme ifadesi var</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1540"/> + <location filename="../Debugger/DebugUI.py" line="1555"/> <source>Coverage of Project</source> <translation>Proje Kapsamı</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1527"/> + <location filename="../Debugger/DebugUI.py" line="1542"/> <source>Coverage of Script</source> <translation>Betik Kapsamı</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <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="1659"/> + <location filename="../Debugger/DebugUI.py" line="1674"/> <source>Profile of Project</source> <translation>Proje Kesiti</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1646"/> + <location filename="../Debugger/DebugUI.py" line="1661"/> <source>Profile of Script</source> <translation>Betik Kesiti</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <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="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> <translation>Değerlendilecek ifadeleri giriniz</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> <translation>Çalıştırılacak ifadeleri giriniz</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1047"/> + <location filename="../Debugger/DebugUI.py" line="1062"/> <source>The program has terminated with an exit status of {0}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1051"/> + <location filename="../Debugger/DebugUI.py" line="1066"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1057"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1035"/> + <location filename="../Debugger/DebugUI.py" line="1050"/> <source>The program has terminated with an exit status of {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1038"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>"{0}" has terminated with an exit status of {1}.</source> <translation type="unfinished"></translation> </message> @@ -5949,7 +6007,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1216"/> + <location filename="../Debugger/DebugUI.py" line="1231"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> @@ -18652,7 +18710,7 @@ <translation><b>Yeni Pencere</b><p>Bu yeni bir yardım gözatıcı penceresi açar.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Open File</source> <translation>Dosya Aç</translation> </message> @@ -19412,7 +19470,7 @@ <translation><b>Sayfa kaynağını göster</b><p>Sayfa kaynağını bir düzenleyicide göster.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2380"/> + <location filename="../Helpviewer/HelpWindow.py" line="2381"/> <source>Full Screen</source> <translation>Tam Ekran</translation> </message> @@ -19627,227 +19685,227 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1355"/> + <location filename="../Helpviewer/HelpWindow.py" line="1356"/> <source>Clear private data</source> <translation>Özel verileri temizle</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="1350"/> <source>&Clear private data</source> - <translation>&Özel verileri temizle</translation> - </message> - <message> - <location filename="../Helpviewer/HelpWindow.py" line="1357"/> + <translation type="obsolete">&Özel verileri temizle</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="1358"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear icons database</source> <translation>İkon veritabanını temizle</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear &icons database</source> <translation>İkon ver&itabanını temizle</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1372"/> + <location filename="../Helpviewer/HelpWindow.py" line="1373"/> <source>Clear the database of favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1374"/> + <location filename="../Helpviewer/HelpWindow.py" line="1375"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search Engines</source> <translation>Arama Motoru Ayarları</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1388"/> + <location filename="../Helpviewer/HelpWindow.py" line="1389"/> <source>Configure the available search engines</source> <translation>Ulaşılabilen Arama motorunu ayarla</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1390"/> + <location filename="../Helpviewer/HelpWindow.py" line="1391"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation><b>Arama Motoru Ayarlanıyor...</b><p>Ulaşılabilen arama motorunu ayarlamak için bir diyalog açılır.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords</source> <translation>Kaydedilmiş Parolaları Yönet</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords...</source> <translation>Kaydedilmiş Parolaları Yönet...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1406"/> + <location filename="../Helpviewer/HelpWindow.py" line="1407"/> <source>Manage the saved passwords</source> <translation>Kaydedilmiş parolaları yönet</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1408"/> + <location filename="../Helpviewer/HelpWindow.py" line="1409"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation><b>Kaydadilmiş Parolaların Yönetimi...</b><p>Kaydedilmiş parolalları yönetmek için bir diyalog açılır.</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>Ad Block</source> <translation>Engel ekle</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>&Ad Block...</source> <translation>&Engel Ekle...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1422"/> + <location filename="../Helpviewer/HelpWindow.py" line="1423"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1424"/> + <location filename="../Helpviewer/HelpWindow.py" line="1425"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1475"/> + <location filename="../Helpviewer/HelpWindow.py" line="1476"/> <source>Show the network monitor dialog</source> <translation>Ağ Gözleyicisi diyaloğunu göster</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1604"/> + <location filename="../Helpviewer/HelpWindow.py" line="1605"/> <source>&File</source> <translation>&Dosya</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1627"/> + <location filename="../Helpviewer/HelpWindow.py" line="1628"/> <source>&Edit</source> <translation>Düz&en</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1635"/> + <location filename="../Helpviewer/HelpWindow.py" line="1636"/> <source>&View</source> <translation>&Görünüm</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1652"/> + <location filename="../Helpviewer/HelpWindow.py" line="1653"/> <source>&Go</source> <translation>&Git</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1667"/> + <location filename="../Helpviewer/HelpWindow.py" line="1668"/> <source>H&istory</source> <translation>Geçmi&ş</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1675"/> + <location filename="../Helpviewer/HelpWindow.py" line="1676"/> <source>&Bookmarks</source> <translation>&Yerimleri</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1690"/> + <location filename="../Helpviewer/HelpWindow.py" line="1691"/> <source>&Settings</source> <translation>Ayar&lar</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1732"/> + <location filename="../Helpviewer/HelpWindow.py" line="1733"/> <source>&Tools</source> <translation>&Araçlar</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1741"/> + <location filename="../Helpviewer/HelpWindow.py" line="1742"/> <source>&Window</source> <translation>&Pencere</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1752"/> + <location filename="../Helpviewer/HelpWindow.py" line="1753"/> <source>&Help</source> <translation>&Yardım</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1763"/> + <location filename="../Helpviewer/HelpWindow.py" line="1764"/> <source>File</source> <translation>Dosya</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1789"/> + <location filename="../Helpviewer/HelpWindow.py" line="1790"/> <source>Edit</source> <translation>Düzen</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1794"/> + <location filename="../Helpviewer/HelpWindow.py" line="1795"/> <source>View</source> <translation>Görünüm</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1803"/> + <location filename="../Helpviewer/HelpWindow.py" line="1804"/> <source>Find</source> <translation>Bul</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1811"/> + <location filename="../Helpviewer/HelpWindow.py" line="1812"/> <source>Filter</source> <translation>Süzgeç</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1816"/> + <location filename="../Helpviewer/HelpWindow.py" line="1817"/> <source>Filtered by: </source> <translation>Süzülen: </translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1823"/> + <location filename="../Helpviewer/HelpWindow.py" line="1824"/> <source>Settings</source> <translation>Ayarlar</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1843"/> + <location filename="../Helpviewer/HelpWindow.py" line="1844"/> <source>Help</source> <translation>Yardım</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1850"/> + <location filename="../Helpviewer/HelpWindow.py" line="1851"/> <source>Go</source> <translation>Git</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Yardım Dosyaları (*.html *.htm);;PDF Dosyaları (*.pdf);;CHM Dosyaları (*.chm);;Tüm Dosyalar (*)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2171"/> + <location filename="../Helpviewer/HelpWindow.py" line="2172"/> <source>Saved Tabs</source> <translation>Sekmeleri Kaydet</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2690"/> + <location filename="../Helpviewer/HelpWindow.py" line="2691"/> <source>Could not find an associated content.</source> <translation>Birleştirilmiş bir içerek bulunamadı.</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2813"/> + <location filename="../Helpviewer/HelpWindow.py" line="2814"/> <source>Updating search index</source> <translation>Arama index yenileniyor</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2883"/> + <location filename="../Helpviewer/HelpWindow.py" line="2884"/> <source>Looking for Documentation...</source> <translation>Dökümanlara bakılıyor...</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2918"/> + <location filename="../Helpviewer/HelpWindow.py" line="2919"/> <source>Unfiltered</source> <translation>Süzülmemiş</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2937"/> + <location filename="../Helpviewer/HelpWindow.py" line="2938"/> <source>Help Engine</source> <translation>Yardım Motoru</translation> </message> @@ -19887,145 +19945,145 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search &Engines...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1486"/> + <location filename="../Helpviewer/HelpWindow.py" line="1487"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1490"/> + <location filename="../Helpviewer/HelpWindow.py" line="1491"/> <source>Shows the downloads window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1492"/> + <location filename="../Helpviewer/HelpWindow.py" line="1493"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1646"/> + <location filename="../Helpviewer/HelpWindow.py" line="1647"/> <source>Text Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2410"/> + <location filename="../Helpviewer/HelpWindow.py" line="2411"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. HTML5 offline storage will be deactivated. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3452"/> - <source>ISO</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Helpviewer/HelpWindow.py" line="3453"/> - <source>Windows</source> - <translation>Windows</translation> + <source>ISO</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3454"/> - <source>ISCII</source> - <translation type="unfinished"></translation> + <source>Windows</source> + <translation>Windows</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3455"/> - <source>Unicode</source> - <translation>Evrensel kod</translation> + <source>ISCII</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3456"/> - <source>Other</source> - <translation>Diğer</translation> + <source>Unicode</source> + <translation>Evrensel kod</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3457"/> + <source>Other</source> + <translation>Diğer</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="3458"/> <source>IBM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3479"/> + <location filename="../Helpviewer/HelpWindow.py" line="3480"/> <source>Default Encoding</source> <translation>Varsayılan Kodlama</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1903"/> + <location filename="../Helpviewer/HelpWindow.py" line="1904"/> <source>VirusTotal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1907"/> + <location filename="../Helpviewer/HelpWindow.py" line="1908"/> <source>Scan current site</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source>VirusTotal Scan</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1507"/> + <location filename="../Helpviewer/HelpWindow.py" line="1508"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1509"/> + <location filename="../Helpviewer/HelpWindow.py" line="1510"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished">Ctrl+Shift+I</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1525"/> + <location filename="../Helpviewer/HelpWindow.py" line="1526"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1527"/> + <location filename="../Helpviewer/HelpWindow.py" line="1528"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1835"/> + <location filename="../Helpviewer/HelpWindow.py" line="1836"/> <source>Tools</source> <translation type="unfinished">Araçlar</translation> </message> @@ -20042,47 +20100,47 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>Network Monitor</source> <translation type="unfinished">Ağ Gözleyicisi</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>&Network Monitor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1477"/> + <location filename="../Helpviewer/HelpWindow.py" line="1478"/> <source><b>Network Monitor...</b><p>Shows the network monitor dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2387"/> + <location filename="../Helpviewer/HelpWindow.py" line="2388"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1540"/> + <location filename="../Helpviewer/HelpWindow.py" line="1541"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1542"/> + <location filename="../Helpviewer/HelpWindow.py" line="1543"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1719"/> + <location filename="../Helpviewer/HelpWindow.py" line="1720"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> @@ -20112,42 +20170,42 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>Synchronize data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>&Synchronize Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1556"/> + <location filename="../Helpviewer/HelpWindow.py" line="1557"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1558"/> + <location filename="../Helpviewer/HelpWindow.py" line="1559"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>ClickToFlash</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>&ClickToFlash...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1439"/> + <location filename="../Helpviewer/HelpWindow.py" line="1440"/> <source>Configure ClickToFlash whitelist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1441"/> + <location filename="../Helpviewer/HelpWindow.py" line="1442"/> <source><b>ClickToFlash...</b><p>Opens a dialog to configure the ClickToFlash whitelist.</p></source> <translation type="unfinished"></translation> </message> @@ -20192,22 +20250,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1458"/> + <location filename="../Helpviewer/HelpWindow.py" line="1459"/> <source>Manage the saved SSL certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1460"/> + <location filename="../Helpviewer/HelpWindow.py" line="1461"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation type="unfinished"></translation> </message> @@ -20252,7 +20310,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2893"/> + <location filename="../Helpviewer/HelpWindow.py" line="2894"/> <source>eric6 Web Browser</source> <translation type="unfinished">Eric5 Web Gözatıcısı {6 ?}</translation> </message> @@ -20267,32 +20325,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2077"/> + <location filename="../Helpviewer/HelpWindow.py" line="2078"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3743"/> + <location filename="../Helpviewer/HelpWindow.py" line="3744"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> @@ -20337,22 +20395,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1574"/> + <location filename="../Helpviewer/HelpWindow.py" line="1575"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1576"/> + <location filename="../Helpviewer/HelpWindow.py" line="1577"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> @@ -39945,7 +40003,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Profile Data</source> <translation>Veri Kesiti</translation> </message> @@ -39965,7 +40023,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Application Diagram</source> <translation>Uygulama Şeması</translation> </message> @@ -39985,7 +40043,7 @@ <translation><b>Uygulama Şeması...</b><p>Bu projenin bir şemasını gösterir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source>Create Package List</source> <translation>Paket Listesini Oluştur</translation> </message> @@ -39995,7 +40053,7 @@ <translation>&Paket Listesini Üret</translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source>Create Plugin Archive</source> <translation>Eklenti Arşivi Oluştur</translation> </message> @@ -40075,87 +40133,87 @@ <translation>T&emizle</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>Search New Files</source> <translation>Yeni Dosyaları Ara</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>There were no new files found to be added.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source>Version Control System</source> <translation>Sürüm Kontrol Sistemi</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4488"/> + <location filename="../Project/Project.py" line="4489"/> <source>Coverage Data</source> <translation>Veri Kapsamı</translation> </message> <message> - <location filename="../Project/Project.py" line="4538"/> + <location filename="../Project/Project.py" line="4539"/> <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="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Code Coverage</source> <translation>Kod Koruyucu</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Please select a coverage file</source> <translation>Lütfen bir koruyucu dosya seçiniz</translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Please select a profile file</source> <translation>Lütfen kesit dosyasını seçiniz</translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Include module names?</source> <translation>Modül isimleri dahil edilsin mi?</translation> </message> <message> - <location filename="../Project/Project.py" line="4733"/> + <location filename="../Project/Project.py" line="4734"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4793"/> + <location filename="../Project/Project.py" line="4794"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4801"/> + <location filename="../Project/Project.py" line="4802"/> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> + <location filename="../Project/Project.py" line="4816"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4854"/> + <location filename="../Project/Project.py" line="4855"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4923"/> + <location filename="../Project/Project.py" line="4924"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -40220,12 +40278,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4358"/> + <location filename="../Project/Project.py" line="4359"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -40260,12 +40318,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4828"/> + <location filename="../Project/Project.py" line="4829"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4877"/> + <location filename="../Project/Project.py" line="4878"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation type="unfinished"></translation> </message> @@ -48456,131 +48514,131 @@ <translation><b>Kabu Penceresi</b><p>Bu basit bir yorumlayıcı penceresidir. Koşturulan programın hata yakalamasının yapılacağı bir arayüzdür.Bunun anlamı programda hata yakalamaya başladığınızda kabuk üzerinden istediğiniz comutu girebileceğinizdir.</p><p>İmleç tuşları ile daha önceden girilen komutlar arasında dolaşabilirsiniz. Aşağı yada yukarı tuşlarına bastıktan sonra klavyeden gireceğiniz harf ve kelimelere göre arama başlatırsınız.</p><p>Kabuğun bazı özel komutları vardır. 'reset'kabuğu sıfırlar ve yeni bir tane başlatır. 'clear' kabuk penceresini temziler. 'start'kullanılan kabuk dilinden bir sonraki kabuk diline geçirir. Desteklenen diller 'languages' komutu ile listelenir. Bu komutlar (except 'languages') sağ tuş menusü ilede ulaşılabilir.</p><p>Bazı metinleri girdikten sonra tab tuşuna bazarsanız tamamlanabilecek kelimelerin bir listesi gelir. Konuyla ilgili kelimelri bu listede seçebilirsiniz.Eğer girilebilecek tek bir seçenek varsa , bu otomat,k olarak eklenir.</p><p> Pasif hata ayıklama modunda bu tamamlanana kadar IDLE kullanılamaz.Bu durum pencere başlığında farklı çıktılar ile gösterilir.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="194"/> + <location filename="../QScintilla/Shell.py" line="197"/> <source>Passive >>> </source> <translation>Pasif >>></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="209"/> + <location filename="../QScintilla/Shell.py" line="212"/> <source>Start</source> <translation>Başla</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="214"/> + <location filename="../QScintilla/Shell.py" line="217"/> <source>History</source> <translation>Geçmiş</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="215"/> + <location filename="../QScintilla/Shell.py" line="218"/> <source>Select entry</source> <translation>Girişi Seç</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="216"/> + <location filename="../QScintilla/Shell.py" line="219"/> <source>Show</source> <translation>Göster</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="228"/> + <location filename="../QScintilla/Shell.py" line="231"/> <source>Clear</source> <translation>Temizle</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="221"/> + <location filename="../QScintilla/Shell.py" line="224"/> <source>Cut</source> <translation>Kes</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="222"/> + <location filename="../QScintilla/Shell.py" line="225"/> <source>Copy</source> <translation>Kopyala</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="223"/> + <location filename="../QScintilla/Shell.py" line="226"/> <source>Paste</source> <translation>Yapıştır</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="229"/> + <location filename="../QScintilla/Shell.py" line="232"/> <source>Reset</source> <translation>Başadön</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="230"/> + <location filename="../QScintilla/Shell.py" line="233"/> <source>Reset and Clear</source> <translation>Başadön ve temizle</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="235"/> + <location filename="../QScintilla/Shell.py" line="238"/> <source>Configure...</source> <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select History</source> <translation>Geçmişi Seç</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>geçmişte yapılanları göster (ençok gösterilenleri seç).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="642"/> + <location filename="../QScintilla/Shell.py" line="662"/> <source>Passive Debug Mode</source> <translation>Pasif Hata Ayıklama Modu</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="643"/> + <location filename="../QScintilla/Shell.py" line="663"/> <source> Not connected</source> <translation> Bağlantı yok</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="645"/> + <location filename="../QScintilla/Shell.py" line="665"/> <source>No.</source> <translation>NO.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="647"/> + <location filename="../QScintilla/Shell.py" line="667"/> <source>{0} on {1}, {2}</source> <translation>{0} üzerin {1}, {2}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="785"/> + <location filename="../QScintilla/Shell.py" line="805"/> <source>StdOut: {0}</source> <translation>Stdçıktı:{0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="793"/> + <location filename="../QScintilla/Shell.py" line="813"/> <source>StdErr: {0}</source> <translation>stdhata: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1401"/> + <location filename="../QScintilla/Shell.py" line="1421"/> <source>Shell language "{0}" not supported. </source> <translation>Kabuk dili "{0}" desteklenmiyor. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> bir dosya değil.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="226"/> + <location filename="../QScintilla/Shell.py" line="229"/> <source>Find</source> <translation type="unfinished">Bul</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="686"/> + <location filename="../QScintilla/Shell.py" line="706"/> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -48588,26 +48646,26 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="718"/> + <location filename="../QScintilla/Shell.py" line="738"/> <source>Unspecified syntax error. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="696"/> + <location filename="../QScintilla/Shell.py" line="716"/> <source>Exception "{0}" {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="720"/> + <location filename="../QScintilla/Shell.py" line="740"/> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="743"/> + <location filename="../QScintilla/Shell.py" line="763"/> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished"></translation> @@ -57840,17 +57898,17 @@ <translation>Görev süzgeçlerinin etkin olan hiç süzgeçi yok. Bu süzgeçlerin ayarlarını yapmak ister misiniz?</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Extracting project tasks...</source> <translation>Proje görevleri çıkarılıyor...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Abort</source> <translation>Vazgeç</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="707"/> + <location filename="../Tasks/TaskViewer.py" line="706"/> <source>Extracting project tasks... {0}</source> <translation>Proje görevleri çıkarılıyor... @@ -57877,12 +57935,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="702"/> + <location filename="../Tasks/TaskViewer.py" line="701"/> <source>Tasks</source> <translation type="unfinished">Görevler</translation> </message> @@ -60634,7 +60692,7 @@ <translation>İndirmek için mümkün olan sürümü göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <source>Report Bug</source> <translation>Hata Raporu</translation> </message> @@ -60674,7 +60732,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2657"/> + <location filename="../UI/UserInterface.py" line="2676"/> <source>Unittest</source> <translation>Birimtest</translation> </message> @@ -60734,7 +60792,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>Unittest Project</source> <translation>Proje Birimtesti</translation> </message> @@ -61019,7 +61077,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5544"/> + <location filename="../UI/UserInterface.py" line="5571"/> <source>Export Keyboard Shortcuts</source> <translation>Kılavye Kısa Yollarını Dışa Aktar</translation> </message> @@ -61039,7 +61097,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Import Keyboard Shortcuts</source> <translation>Klavye kısayollarını İçe Aktar</translation> </message> @@ -61059,182 +61117,182 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Activate current editor</source> <translation>Geçerli düzenleyiciyi aktif yap</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Show next</source> <translation>Sonrakini göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Show previous</source> <translation>Öncekini göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Switch between tabs</source> <translation>Sekmeler arasında değiştir</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>Plugin Infos</source> <translation>Eklenti Bilgisi</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>&Plugin Infos...</source> <translation>Eklenti Bil&gisi...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2224"/> + <location filename="../UI/UserInterface.py" line="2241"/> <source>Show Plugin Infos</source> <translation>Eklenti Bilgisini Göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2225"/> + <location filename="../UI/UserInterface.py" line="2242"/> <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="2238"/> + <location filename="../UI/UserInterface.py" line="2255"/> <source>Install Plugins</source> <translation>Eklenti Kur</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2233"/> + <location filename="../UI/UserInterface.py" line="2250"/> <source>&Install Plugins...</source> <translation>Ekle&nti Kur...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239"/> + <location filename="../UI/UserInterface.py" line="2256"/> <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="2251"/> + <location filename="../UI/UserInterface.py" line="2268"/> <source>Uninstall Plugin</source> <translation>Eklenti Kaldır</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2246"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>&Uninstall Plugin...</source> <translation>Ekle&nti Kaldır...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2252"/> + <location filename="../UI/UserInterface.py" line="2269"/> <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="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin Repository</source> <translation>Eklenti Havuzu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin &Repository...</source> <translation>Eklenti Hav&uzu...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2281"/> <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="2266"/> + <location filename="../UI/UserInterface.py" line="2283"/> <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="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt4 Documentation</source> <translation>Qt4 Belgeleri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt&4 Documentation</source> <translation>Qt&4 Belgeleri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2294"/> + <location filename="../UI/UserInterface.py" line="2311"/> <source>Open Qt4 Documentation</source> <translation>QT4 Belgelerini Aç</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt4 Documentation</source> <translation>PyQt4 Belgeleri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2324"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Open PyQt4 Documentation</source> <translation>PyQt4 Begelerini aç</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>Eric API Documentation</source> <translation>Eric API Belgeleri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>&Eric API Documentation</source> <translation>&Eric API Dökümanı</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2408"/> - <source>Open Eric API Documentation</source> - <translation>Eric API Belgelerini Aç</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2425"/> + <source>Open Eric API Documentation</source> + <translation>Eric API Belgelerini Aç</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2442"/> <source>PySide Documentation</source> <translation>PySide Belgeleri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>Py&Side Documentation</source> <translation>Py&Side Belgeleri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2446"/> <source>Open PySide Documentation</source> <translation>PySide belgelerini açın</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2472"/> - <source>&Unittest</source> - <translation>Bir&imtest</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2489"/> + <source>&Unittest</source> + <translation>Bir&imtest</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506"/> <source>E&xtras</source> <translation>İla&veler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2494"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source>Wi&zards</source> <translation>Sihirba&z</translation> </message> @@ -61244,364 +61302,364 @@ <translation type="obsolete">&Araçlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2502"/> + <location filename="../UI/UserInterface.py" line="2519"/> <source>Select Tool Group</source> <translation>Araç Grubunu Seç</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2510"/> + <location filename="../UI/UserInterface.py" line="2527"/> <source>Se&ttings</source> <translation>Ayar&lar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2533"/> + <location filename="../UI/UserInterface.py" line="2552"/> <source>&Window</source> <translation>&Pencere</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2577"/> <source>&Toolbars</source> <translation>&Araççubuğu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2569"/> + <location filename="../UI/UserInterface.py" line="2588"/> <source>P&lugins</source> <translation>Ek&lentiler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2597"/> <source>Configure...</source> <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583"/> + <location filename="../UI/UserInterface.py" line="2602"/> <source>&Help</source> <translation>&Yardım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2656"/> + <location filename="../UI/UserInterface.py" line="2675"/> <source>Tools</source> <translation>Araçlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2658"/> + <location filename="../UI/UserInterface.py" line="2677"/> <source>Settings</source> <translation>Ayarlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <source>Help</source> <translation>Yardım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2660"/> + <location filename="../UI/UserInterface.py" line="2679"/> <source>Profiles</source> <translation>Kesitler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2661"/> + <location filename="../UI/UserInterface.py" line="2680"/> <source>Plugins</source> <translation>Eklentiler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2814"/> + <location filename="../UI/UserInterface.py" line="2841"/> <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="2821"/> + <location filename="../UI/UserInterface.py" line="2848"/> <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="2828"/> + <location filename="../UI/UserInterface.py" line="2855"/> <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="2835"/> + <location filename="../UI/UserInterface.py" line="2862"/> <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="2842"/> + <location filename="../UI/UserInterface.py" line="2869"/> <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="2849"/> + <location filename="../UI/UserInterface.py" line="2876"/> <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="2924"/> + <location filename="../UI/UserInterface.py" line="2951"/> <source>External Tools/{0}</source> <translation>Harici Araçlar/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3021"/> + <location filename="../UI/UserInterface.py" line="3048"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Sürüm Numaraları</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360"/> + <location filename="../UI/UserInterface.py" line="6413"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <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="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>Restart application</source> <translation>Uygulmayı yeniden başlat</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <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="3435"/> + <location filename="../UI/UserInterface.py" line="3462"/> <source>Configure Tool Groups ...</source> <translation>Alet Grupları Ayarlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3439"/> + <location filename="../UI/UserInterface.py" line="3466"/> <source>Configure current Tool Group ...</source> <translation>Geçerli alet grubunu ayarla...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3390"/> + <location filename="../UI/UserInterface.py" line="3417"/> <source>&Builtin Tools</source> <translation>Ya&pılandırma Araçları</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3407"/> + <location filename="../UI/UserInterface.py" line="3434"/> <source>&Plugin Tools</source> <translation>Eklen&ti Araçları</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3558"/> + <location filename="../UI/UserInterface.py" line="3585"/> <source>&Show all</source> <translation>Hepsini Gö&ster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3560"/> + <location filename="../UI/UserInterface.py" line="3587"/> <source>&Hide all</source> <translation>&Hepsini gizle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt 3 support</source> <translation>Qt3 Desteği</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <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="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <source>Process Generation Error</source> <translation>İşlem Üretecinde Hata</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4295"/> + <location filename="../UI/UserInterface.py" line="4322"/> <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="4362"/> + <location filename="../UI/UserInterface.py" line="4389"/> <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="4413"/> + <location filename="../UI/UserInterface.py" line="4440"/> <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="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <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="4455"/> + <location filename="../UI/UserInterface.py" line="4482"/> <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="4475"/> + <location filename="../UI/UserInterface.py" line="4502"/> <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="4523"/> + <location filename="../UI/UserInterface.py" line="4550"/> <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="4578"/> + <location filename="../UI/UserInterface.py" line="4605"/> <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="4599"/> + <location filename="../UI/UserInterface.py" line="4626"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>External Tools</source> <translation>Harici Araçlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4717"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4738"/> + <location filename="../UI/UserInterface.py" line="4765"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <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="4830"/> + <location filename="../UI/UserInterface.py" line="4857"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <source>Documentation Missing</source> <translation>Eksik Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <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="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source>Documentation</source> <translation>Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5039"/> + <location filename="../UI/UserInterface.py" line="5066"/> <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="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <source>Save tasks</source> <translation>Görevleri kaydet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <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="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <source>Read tasks</source> <translation>Görevler Okunuyor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <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="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <source>Save session</source> <translation>Oturumu kaydet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <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="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <source>Read session</source> <translation>Oturumu oku</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <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="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>&Cancel</source> <translation>&Vazgeç</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6196"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <source>Update available</source> <translation>Güncelleme mümkün değil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Error during updates check</source> <translation>Güncellemeleri kontrol esnasında hata</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Could not perform updates check.</source> <translation>Güncellemelere ulaşamıyorum.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6346"/> + <location filename="../UI/UserInterface.py" line="6399"/> <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="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>First time usage</source> <translation>İlk kullanım</translation> </message> @@ -61626,67 +61684,67 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2383"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384"/> + <location filename="../UI/UserInterface.py" line="2401"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2403"/> <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="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6205"/> + <location filename="../UI/UserInterface.py" line="6258"/> <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="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <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> @@ -61772,12 +61830,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4696"/> <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="6406"/> + <location filename="../UI/UserInterface.py" line="6459"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -61997,7 +62055,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2538"/> + <location filename="../UI/UserInterface.py" line="2557"/> <source>&Windows</source> <translation type="unfinished">&Pencereler</translation> </message> @@ -62072,22 +62130,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt5 Documentation</source> <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt&5 Documentation</source> <translation type="unfinished">Qt&4 Belgeleri {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308"/> + <location filename="../UI/UserInterface.py" line="2325"/> <source>Open Qt5 Documentation</source> <translation type="unfinished">QT4 Belgelerini Aç {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2860"/> + <location filename="../UI/UserInterface.py" line="2887"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation type="unfinished"></translation> </message> @@ -62132,62 +62190,62 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt5 Documentation</source> <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt&5 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2343"/> + <location filename="../UI/UserInterface.py" line="2360"/> <source>Open PyQt5 Documentation</source> <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5105"/> + <location filename="../UI/UserInterface.py" line="5132"/> <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="2295"/> + <location filename="../UI/UserInterface.py" line="2312"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2326"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2325"/> + <location filename="../UI/UserInterface.py" line="2342"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345"/> + <location filename="../UI/UserInterface.py" line="2362"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368"/> + <location filename="../UI/UserInterface.py" line="2385"/> <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="2431"/> + <location filename="../UI/UserInterface.py" line="2448"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -62207,7 +62265,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6191"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -62272,32 +62330,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2410"/> + <location filename="../UI/UserInterface.py" line="2427"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <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="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <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="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <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> @@ -62307,17 +62365,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3410"/> + <location filename="../UI/UserInterface.py" line="3437"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482"/> + <location filename="../UI/UserInterface.py" line="3509"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6154"/> + <location filename="../UI/UserInterface.py" line="6207"/> <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> @@ -62341,6 +62399,16 @@ <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="2189"/> + <source>Clear private data</source> + <translation type="unfinished">Özel verileri temizle</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <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> </context> <context> <name>UserPropertiesDialog</name> @@ -65655,17 +65723,17 @@ <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065"/> + <location filename="../ViewManager/ViewManager.py" line="5066"/> <source>&Clear</source> <translation>T&emizle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5059"/> + <location filename="../ViewManager/ViewManager.py" line="5060"/> <source>&Add</source> <translation>&Ekle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5062"/> + <location filename="../ViewManager/ViewManager.py" line="5063"/> <source>&Edit...</source> <translation>Düz&en...</translation> </message> @@ -66243,27 +66311,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>Edit Spelling Dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6242"/> + <location filename="../ViewManager/ViewManager.py" line="6243"/> <source>Editing {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6227"/> + <location filename="../ViewManager/ViewManager.py" line="6228"/> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6254"/> + <location filename="../ViewManager/ViewManager.py" line="6255"/> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished"></translation> </message> @@ -68312,7 +68380,7 @@ <context> <name>WebBrowserWindow</name> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3153"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3154"/> <source>eric6 Web Browser</source> <translation type="unfinished"></translation> </message> @@ -68332,7 +68400,7 @@ <translation type="unfinished">Ara</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1714"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1715"/> <source>JavaScript Console</source> <translation type="unfinished"></translation> </message> @@ -68389,7 +68457,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>New Private Window</source> <translation type="unfinished"></translation> </message> @@ -68415,7 +68483,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>Open File</source> <translation type="unfinished">Dosya Aç</translation> </message> @@ -69319,7 +69387,7 @@ <translation type="unfinished"><b>Sayfa kaynağını göster</b><p>Sayfa kaynağını bir düzenleyicide göster.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2662"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2663"/> <source>Full Screen</source> <translation type="unfinished">Tam Ekran</translation> </message> @@ -69634,409 +69702,409 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1504"/> <source>Clear private data</source> <translation type="unfinished">Özel verileri temizle</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/> <source>&Clear private data</source> - <translation type="unfinished">&Özel verileri temizle</translation> - </message> - <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/> + <translation type="obsolete">&Özel verileri temizle</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1506"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear icons database</source> <translation type="unfinished">İkon veritabanını temizle</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear &icons database</source> <translation type="unfinished">İkon ver&itabanını temizle</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1521"/> <source>Clear the database of favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1522"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1523"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1532"/> <source>Manage saved Favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1538"/> <source>Show a dialog to manage the saved favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1539"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/> <source><b>Manage saved Favicons</b><p>This shows a dialog to manage the saved favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search Engines</source> <translation type="unfinished">Arama Motoru Ayarları</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search &Engines...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1553"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1554"/> <source>Configure the available search engines</source> <translation type="unfinished">Ulaşılabilen Arama motorunu ayarla</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1556"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation type="unfinished"><b>Arama Motoru Ayarlanıyor...</b><p>Ulaşılabilen arama motorunu ayarlamak için bir diyalog açılır.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords</source> <translation type="unfinished">Kaydedilmiş Parolaları Yönet</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords...</source> <translation type="unfinished">Kaydedilmiş Parolaları Yönet...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1572"/> <source>Manage the saved passwords</source> <translation type="unfinished">Kaydedilmiş parolaları yönet</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1573"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1574"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation type="unfinished"><b>Kaydadilmiş Parolaların Yönetimi...</b><p>Kaydedilmiş parolalları yönetmek için bir diyalog açılır.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>Ad Block</source> <translation type="unfinished">Engel ekle</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>&Ad Block...</source> <translation type="unfinished">&Engel Ekle...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1588"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1589"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1590"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1604"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1605"/> <source>Manage the accepted SSL certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1606"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/> <source><b>Manage SSL Certificate Errors...</b><p>Opens a dialog to manage the accepted SSL certificate errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1616"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1617"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1620"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1621"/> <source>Shows the downloads window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1622"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1637"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1638"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1639"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished">Ctrl+Shift+I</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1658"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1672"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>Synchronize data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>&Synchronize Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1686"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1689"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1705"/> <source>Manage the saved zoom values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1706"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1718"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/> <source>Toggle the JavaScript console window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1720"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1721"/> <source><b>JavaScript Console</b><p>This toggles the JavaScript console window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1765"/> <source>&File</source> <translation type="unfinished">&Dosya</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1787"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1788"/> <source>&Edit</source> <translation type="unfinished">Düz&en</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1804"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1805"/> <source>&View</source> <translation type="unfinished">&Görünüm</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1812"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1813"/> <source>Text Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1818"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1819"/> <source>&Go</source> <translation type="unfinished">&Git</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1833"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/> <source>H&istory</source> <translation type="unfinished">Geçmi&ş</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1845"/> <source>&Bookmarks</source> <translation type="unfinished">&Yerimleri</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1861"/> <source>&Settings</source> <translation type="unfinished">Ayar&lar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1887"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1888"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1900"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1901"/> <source>&Tools</source> <translation type="unfinished">&Araçlar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1907"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1908"/> <source>&Window</source> <translation type="unfinished">&Pencere</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1920"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1921"/> <source>&Help</source> <translation type="unfinished">&Yardım</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1931"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1932"/> <source>File</source> <translation type="unfinished">Dosya</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1959"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1960"/> <source>Edit</source> <translation type="unfinished">Düzen</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1971"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1972"/> <source>View</source> <translation type="unfinished">Görünüm</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1980"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/> <source>Find</source> <translation type="unfinished">Bul</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1988"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1989"/> <source>Filter</source> <translation type="unfinished">Süzgeç</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1993"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1994"/> <source>Filtered by: </source> <translation type="unfinished">Süzülen: </translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2000"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2001"/> <source>Settings</source> <translation type="unfinished">Ayarlar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2011"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2012"/> <source>Tools</source> <translation type="unfinished">Araçlar</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2020"/> <source>Help</source> <translation type="unfinished">Yardım</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2026"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2027"/> <source>Go</source> <translation type="unfinished">Git</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2080"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/> <source>VirusTotal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2084"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2085"/> <source>Scan current site</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"><p>İşlem başlatılamıyor.<br>Bu durum büyük olasılıkla şundan kaynaklanıyto <b>{0}</b>.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>OK</source> <translation type="unfinished">TAMAM</translation> </message> @@ -70046,118 +70114,118 @@ <translation type="obsolete">Yardım Dosyaları (*.html *.htm);;PDF Dosyaları (*.pdf);;CHM Dosyaları (*.chm);;Tüm Dosyalar (*)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2305"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2306"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p><p>It is based on QtWebEngine {1} and Chrome {2}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2425"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2426"/> <source>Saved Tabs</source> <translation type="unfinished">Sekmeleri Kaydet</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2669"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2670"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2970"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2971"/> <source>Could not find an associated content.</source> <translation type="unfinished">Birleştirilmiş bir içerek bulunamadı.</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3073"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3074"/> <source>Updating search index</source> <translation type="unfinished">Arama index yenileniyor</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3143"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3144"/> <source>Looking for Documentation...</source> <translation type="unfinished">Dökümanlara bakılıyor...</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3178"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3179"/> <source>Unfiltered</source> <translation type="unfinished">Süzülmemiş</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3197"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3198"/> <source>Help Engine</source> <translation type="unfinished">Yardım Motoru</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3724"/> - <source>ISO</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3725"/> - <source>Windows</source> - <translation type="unfinished">Windows</translation> + <source>ISO</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3726"/> - <source>ISCII</source> - <translation type="unfinished"></translation> + <source>Windows</source> + <translation type="unfinished">Windows</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3727"/> - <source>Unicode</source> - <translation type="unfinished">Evrensel kod</translation> + <source>ISCII</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3728"/> - <source>Other</source> - <translation type="unfinished">Diğer</translation> + <source>Unicode</source> + <translation type="unfinished">Evrensel kod</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3729"/> + <source>Other</source> + <translation type="unfinished">Diğer</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3730"/> <source>IBM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3751"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3752"/> <source>Default Encoding</source> <translation type="unfinished">Varsayılan Kodlama</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source>VirusTotal Scan</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4043"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4044"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1729"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1730"/> <source>Tab Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/> <source>Shows the tab manager window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1735"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/> <source><b>Tab Manager</b><p>Shows the tab manager window.</p></source> <translation type="unfinished"></translation> </message> @@ -70193,7 +70261,7 @@ <translation type="unfinished"><b>Farklı Kaydet...</b><p>Geçerli sayfayı harddiske kaydet.</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>HTML Files (*.html *.htm *.mhtml);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_zh_CN.ts Tue Aug 23 19:02:43 2016 +0200 +++ b/i18n/eric6_zh_CN.ts Wed Aug 24 20:00:29 2016 +0200 @@ -2813,6 +2813,64 @@ </message> </context> <context> + <name>ClearPrivateDataDialog</name> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="14"/> + <source>Clear Private Data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="23"/> + <source>Select to clear the list of recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="26"/> + <source>Recently opened files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="36"/> + <source>Select to clear the list of recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="39"/> + <source>Recently opened projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="49"/> + <source>Select to clear the list of recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="52"/> + <source>Recently opened multi projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="62"/> + <source>Select to clear the debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="65"/> + <source>Debug histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="75"/> + <source>Select to clear the shell histories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/ClearPrivateDataDialog.ui" line="78"/> + <source>Shell histories</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>ClickToFlash</name> <message> <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.ui" line="43"/> @@ -5293,7 +5351,7 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1765"/> + <location filename="../Debugger/DebugUI.py" line="1780"/> <source>Run Script</source> <translation>运行脚本</translation> </message> @@ -5313,7 +5371,7 @@ <translation><b>运行脚本</b><p>设置命令行参数,并在调试器之外运行脚本。如果文件未对更改进行保存,则可能会先行保存。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>Run Project</source> <translation>运行项目</translation> </message> @@ -5413,7 +5471,7 @@ <translation><b>剖析项目</b><p>设置命令行参数,并剖析当前项目。如果当前项目的文件未保存则会先行保存。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1887"/> + <location filename="../Debugger/DebugUI.py" line="1902"/> <source>Debug Script</source> <translation>调试脚本</translation> </message> @@ -5433,7 +5491,7 @@ <translation><b>调试脚本</b><p>设置命令行参数,并将当前行设为当前编辑窗口首先执行的 Python 声明。如果文件未保存则会先行保存。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <source>Debug Project</source> <translation>调试项目</translation> </message> @@ -5583,7 +5641,7 @@ <translation><b>中止</b><p>中止正在运行中的调试会话。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> <translation>赋值</translation> </message> @@ -5603,7 +5661,7 @@ <translation><b>赋值</b><p>在调试程序的当前上下文中为表达式赋值。结果显示在命令行窗口中。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> <translation>执行</translation> </message> @@ -5781,72 +5839,72 @@ <translation>调试</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1073"/> + <location filename="../Debugger/DebugUI.py" line="1088"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>被调试的程序包含一个未指定的语法错误。</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1110"/> + <location filename="../Debugger/DebugUI.py" line="1125"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>产生了一个未处理的异常。详细信息参见命令行窗口。</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1230"/> + <location filename="../Debugger/DebugUI.py" line="1245"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>被调试的程序意外终止。</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <source>Breakpoint Condition Error</source> <translation>断点条件错误</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <source>Watch Expression Error</source> <translation>监视表达式出错</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1375"/> + <location filename="../Debugger/DebugUI.py" line="1390"/> <source>Watch expression already exists</source> <translation>监视表达式已存在</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1540"/> + <location filename="../Debugger/DebugUI.py" line="1555"/> <source>Coverage of Project</source> <translation>项目覆盖率</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1527"/> + <location filename="../Debugger/DebugUI.py" line="1542"/> <source>Coverage of Script</source> <translation>脚本覆盖率</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1795"/> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1659"/> + <location filename="../Debugger/DebugUI.py" line="1674"/> <source>Profile of Project</source> <translation>项目轮廓</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1646"/> + <location filename="../Debugger/DebugUI.py" line="1661"/> <source>Profile of Script</source> <translation>脚本轮廓</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1917"/> <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="2194"/> + <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> <translation>输入赋值语句</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2223"/> + <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> <translation>输入执行语句</translation> </message> @@ -5863,74 +5921,74 @@ <translation>Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1021"/> + <location filename="../Debugger/DebugUI.py" line="1036"/> <source><p>The program has terminated with an exit status of {0}.</p></source> <translation><p>程序已终止,其返回值为 {0}。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1026"/> + <location filename="../Debugger/DebugUI.py" line="1041"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> <translation><p><b>{0}</b> 已终止,其返回值为 {1}。</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1092"/> + <location filename="../Debugger/DebugUI.py" line="1107"/> <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="1151"/> - <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="1166"/> + <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="1181"/> <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="1299"/> + <location filename="../Debugger/DebugUI.py" line="1314"/> <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="1335"/> + <location filename="../Debugger/DebugUI.py" line="1350"/> <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="1365"/> + <location filename="../Debugger/DebugUI.py" line="1380"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1369"/> + <location filename="../Debugger/DebugUI.py" line="1384"/> <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="1047"/> + <location filename="../Debugger/DebugUI.py" line="1062"/> <source>The program has terminated with an exit status of {0}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1051"/> + <location filename="../Debugger/DebugUI.py" line="1066"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1042"/> + <location filename="../Debugger/DebugUI.py" line="1057"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1035"/> + <location filename="../Debugger/DebugUI.py" line="1050"/> <source>The program has terminated with an exit status of {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1038"/> + <location filename="../Debugger/DebugUI.py" line="1053"/> <source>"{0}" has terminated with an exit status of {1}.</source> <translation type="unfinished"></translation> </message> @@ -5950,7 +6008,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1216"/> + <location filename="../Debugger/DebugUI.py" line="1231"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> @@ -18618,7 +18676,7 @@ <translation><b>新建窗口</b><p>打开一个新的帮助浏览窗口。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Open File</source> <translation>打开文件</translation> </message> @@ -19156,87 +19214,87 @@ <translation><b>首选项</b><p>将应用程序的配置项设定为你喜欢的值。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear icons database</source> <translation>清除图标数据库</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1372"/> + <location filename="../Helpviewer/HelpWindow.py" line="1373"/> <source>Clear the database of favicons</source> <translation>清除喜好图标数据库</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1374"/> + <location filename="../Helpviewer/HelpWindow.py" line="1375"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>清除图标数据库</b><p>清除以前访问过的 URL 的喜好图标的数据库。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1604"/> + <location filename="../Helpviewer/HelpWindow.py" line="1605"/> <source>&File</source> <translation>文件(&F)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1627"/> + <location filename="../Helpviewer/HelpWindow.py" line="1628"/> <source>&Edit</source> <translation>编辑(&E)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1635"/> + <location filename="../Helpviewer/HelpWindow.py" line="1636"/> <source>&View</source> <translation>视图(&V)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1652"/> + <location filename="../Helpviewer/HelpWindow.py" line="1653"/> <source>&Go</source> <translation>跳转(&G)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1667"/> + <location filename="../Helpviewer/HelpWindow.py" line="1668"/> <source>H&istory</source> <translation>历史(&I)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1675"/> + <location filename="../Helpviewer/HelpWindow.py" line="1676"/> <source>&Bookmarks</source> <translation>书签(&B)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1752"/> + <location filename="../Helpviewer/HelpWindow.py" line="1753"/> <source>&Help</source> <translation>帮助(&H)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1763"/> + <location filename="../Helpviewer/HelpWindow.py" line="1764"/> <source>File</source> <translation>文件</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1789"/> + <location filename="../Helpviewer/HelpWindow.py" line="1790"/> <source>Edit</source> <translation>编辑</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1794"/> + <location filename="../Helpviewer/HelpWindow.py" line="1795"/> <source>View</source> <translation>视图</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1803"/> + <location filename="../Helpviewer/HelpWindow.py" line="1804"/> <source>Find</source> <translation>查找</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1843"/> + <location filename="../Helpviewer/HelpWindow.py" line="1844"/> <source>Help</source> <translation>帮助</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1850"/> + <location filename="../Helpviewer/HelpWindow.py" line="1851"/> <source>Go</source> <translation>跳转</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2029"/> + <location filename="../Helpviewer/HelpWindow.py" line="2030"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>帮助文件 (*.html *.htm);;PDF 文件 (*.pdf);;CHM 文件 (*.chm);;所有文件 (*)</translation> </message> @@ -19296,22 +19354,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1741"/> + <location filename="../Helpviewer/HelpWindow.py" line="1742"/> <source>&Window</source> <translation>窗口(&W)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1811"/> + <location filename="../Helpviewer/HelpWindow.py" line="1812"/> <source>Filter</source> <translation>过滤器</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1816"/> + <location filename="../Helpviewer/HelpWindow.py" line="1817"/> <source>Filtered by: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2690"/> + <location filename="../Helpviewer/HelpWindow.py" line="2691"/> <source>Could not find an associated content.</source> <translation type="unfinished"></translation> </message> @@ -19376,22 +19434,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2813"/> + <location filename="../Helpviewer/HelpWindow.py" line="2814"/> <source>Updating search index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2883"/> + <location filename="../Helpviewer/HelpWindow.py" line="2884"/> <source>Looking for Documentation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2918"/> + <location filename="../Helpviewer/HelpWindow.py" line="2919"/> <source>Unfiltered</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2937"/> + <location filename="../Helpviewer/HelpWindow.py" line="2938"/> <source>Help Engine</source> <translation>帮助引擎</translation> </message> @@ -19411,7 +19469,7 @@ <translation><b>隐私浏览</b>启用隐私浏览。浏览器在这个模式下不再记录浏览历史。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2380"/> + <location filename="../Helpviewer/HelpWindow.py" line="2381"/> <source>Full Screen</source> <translation>全屏幕</translation> </message> @@ -19441,37 +19499,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1355"/> + <location filename="../Helpviewer/HelpWindow.py" line="1356"/> <source>Clear private data</source> <translation>清空隐私数据</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="1350"/> <source>&Clear private data</source> - <translation>清空隐私数据(&C)</translation> - </message> - <message> - <location filename="../Helpviewer/HelpWindow.py" line="1357"/> + <translation type="obsolete">清空隐私数据(&C)</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="1358"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>清空隐私数据</b><p>清空隐私数据,例如浏览历史、搜索历史或 favicon 数据库。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1367"/> + <location filename="../Helpviewer/HelpWindow.py" line="1368"/> <source>Clear &icons database</source> <translation>清空图标数据库(&I)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1475"/> + <location filename="../Helpviewer/HelpWindow.py" line="1476"/> <source>Show the network monitor dialog</source> <translation>显示网络监视对话框</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1690"/> + <location filename="../Helpviewer/HelpWindow.py" line="1691"/> <source>&Settings</source> <translation>设置(&S)</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1732"/> + <location filename="../Helpviewer/HelpWindow.py" line="1733"/> <source>&Tools</source> <translation>工具(&T)</translation> </message> @@ -19536,7 +19594,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1823"/> + <location filename="../Helpviewer/HelpWindow.py" line="1824"/> <source>Settings</source> <translation>设置</translation> </message> @@ -19719,7 +19777,7 @@ <translation><b>将所有选项卡加入书签…</b><p>打开一个对话框来将所有打开的选项卡加入一个新的书签文件夹。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2171"/> + <location filename="../Helpviewer/HelpWindow.py" line="2172"/> <source>Saved Tabs</source> <translation>已保存的选项卡</translation> </message> @@ -19783,57 +19841,57 @@ <translation><b>另存为…</b><p>将当前页面保存至磁盘。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search Engines</source> <translation>配置搜索引擎</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1388"/> + <location filename="../Helpviewer/HelpWindow.py" line="1389"/> <source>Configure the available search engines</source> <translation>配置可用的搜索引擎</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1390"/> + <location filename="../Helpviewer/HelpWindow.py" line="1391"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords</source> <translation>管理已保存的密码</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1400"/> + <location filename="../Helpviewer/HelpWindow.py" line="1401"/> <source>Manage Saved Passwords...</source> <translation>管理已保存的密码…</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1406"/> + <location filename="../Helpviewer/HelpWindow.py" line="1407"/> <source>Manage the saved passwords</source> <translation>管理已保存的密码</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1408"/> + <location filename="../Helpviewer/HelpWindow.py" line="1409"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation><b>管理已保存的密码…</b><p>打开一个对话框以管理已保存的密码。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>Ad Block</source> <translation>Ad Block</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1416"/> + <location filename="../Helpviewer/HelpWindow.py" line="1417"/> <source>&Ad Block...</source> <translation>&Ad Block…</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1422"/> + <location filename="../Helpviewer/HelpWindow.py" line="1423"/> <source>Configure AdBlock subscriptions and rules</source> <translation>配置 AdBlock 订阅组和规则</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1424"/> + <location filename="../Helpviewer/HelpWindow.py" line="1425"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block…</b><p>打开一个对话框以配置 AdBlock 订阅组和规则。</p></translation> </message> @@ -19873,145 +19931,145 @@ <translation><b>离线存储…</b><p>打开一个对话框来配置离线存储。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1383"/> + <location filename="../Helpviewer/HelpWindow.py" line="1384"/> <source>Configure Search &Engines...</source> <translation>配置搜索引擎(&E)…</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2410"/> + <location filename="../Helpviewer/HelpWindow.py" line="2411"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. HTML5 offline storage will be deactivated. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1646"/> + <location filename="../Helpviewer/HelpWindow.py" line="1647"/> <source>Text Encoding</source> <translation>文本编码</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3452"/> - <source>ISO</source> - <translation>ISO</translation> - </message> - <message> <location filename="../Helpviewer/HelpWindow.py" line="3453"/> - <source>Windows</source> - <translation>Windows</translation> + <source>ISO</source> + <translation>ISO</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3454"/> - <source>ISCII</source> - <translation type="unfinished"></translation> + <source>Windows</source> + <translation>Windows</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3455"/> - <source>Unicode</source> - <translation>Unicode</translation> + <source>ISCII</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3456"/> - <source>Other</source> - <translation>其它</translation> + <source>Unicode</source> + <translation>Unicode</translation> </message> <message> <location filename="../Helpviewer/HelpWindow.py" line="3457"/> + <source>Other</source> + <translation>其它</translation> + </message> + <message> + <location filename="../Helpviewer/HelpWindow.py" line="3458"/> <source>IBM</source> <translation>IBM</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3479"/> + <location filename="../Helpviewer/HelpWindow.py" line="3480"/> <source>Default Encoding</source> <translation>默认编码</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1486"/> + <location filename="../Helpviewer/HelpWindow.py" line="1487"/> <source>Downloads</source> <translation>下载</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1490"/> + <location filename="../Helpviewer/HelpWindow.py" line="1491"/> <source>Shows the downloads window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1492"/> + <location filename="../Helpviewer/HelpWindow.py" line="1493"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1903"/> + <location filename="../Helpviewer/HelpWindow.py" line="1904"/> <source>VirusTotal</source> <translation>VirusTotal</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1907"/> + <location filename="../Helpviewer/HelpWindow.py" line="1908"/> <source>Scan current site</source> <translation>扫描当前站点</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source>VirusTotal Scan</source> <translation>VirusTotal 扫描</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3717"/> + <location filename="../Helpviewer/HelpWindow.py" line="3718"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1501"/> + <location filename="../Helpviewer/HelpWindow.py" line="1502"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation>Ctrl+Shift+F</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1507"/> + <location filename="../Helpviewer/HelpWindow.py" line="1508"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1509"/> + <location filename="../Helpviewer/HelpWindow.py" line="1510"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1519"/> + <location filename="../Helpviewer/HelpWindow.py" line="1520"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1525"/> + <location filename="../Helpviewer/HelpWindow.py" line="1526"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1527"/> + <location filename="../Helpviewer/HelpWindow.py" line="1528"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1835"/> + <location filename="../Helpviewer/HelpWindow.py" line="1836"/> <source>Tools</source> <translation>工具</translation> </message> @@ -20028,47 +20086,47 @@ <translation>缩小</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>Network Monitor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1470"/> + <location filename="../Helpviewer/HelpWindow.py" line="1471"/> <source>&Network Monitor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1477"/> + <location filename="../Helpviewer/HelpWindow.py" line="1478"/> <source><b>Network Monitor...</b><p>Shows the network monitor dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2387"/> + <location filename="../Helpviewer/HelpWindow.py" line="2388"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1536"/> + <location filename="../Helpviewer/HelpWindow.py" line="1537"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1540"/> + <location filename="../Helpviewer/HelpWindow.py" line="1541"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1542"/> + <location filename="../Helpviewer/HelpWindow.py" line="1543"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1719"/> + <location filename="../Helpviewer/HelpWindow.py" line="1720"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> @@ -20098,42 +20156,42 @@ <translation><b>保存屏幕页面截图…</b><p>将当前页面保存为屏幕截图。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>Synchronize data</source> <translation>同步数据</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1551"/> + <location filename="../Helpviewer/HelpWindow.py" line="1552"/> <source>&Synchronize Data...</source> <translation>同步数据(&S)…</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1556"/> + <location filename="../Helpviewer/HelpWindow.py" line="1557"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1558"/> + <location filename="../Helpviewer/HelpWindow.py" line="1559"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>ClickToFlash</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1433"/> + <location filename="../Helpviewer/HelpWindow.py" line="1434"/> <source>&ClickToFlash...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1439"/> + <location filename="../Helpviewer/HelpWindow.py" line="1440"/> <source>Configure ClickToFlash whitelist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1441"/> + <location filename="../Helpviewer/HelpWindow.py" line="1442"/> <source><b>ClickToFlash...</b><p>Opens a dialog to configure the ClickToFlash whitelist.</p></source> <translation type="unfinished"></translation> </message> @@ -20178,22 +20236,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates</source> <translation type="unfinished">管理 SSL 证书</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1452"/> + <location filename="../Helpviewer/HelpWindow.py" line="1453"/> <source>Manage SSL Certificates...</source> <translation>管理 SSL 证书…</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1458"/> + <location filename="../Helpviewer/HelpWindow.py" line="1459"/> <source>Manage the saved SSL certificates</source> <translation>管理保存的 SSL 证书</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1460"/> + <location filename="../Helpviewer/HelpWindow.py" line="1461"/> <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> @@ -20238,7 +20296,7 @@ <translation><b>保存可见屏幕页面截图…</b><p>将当前页面的可见部分保存为屏幕截图。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2893"/> + <location filename="../Helpviewer/HelpWindow.py" line="2894"/> <source>eric6 Web Browser</source> <translation>eric6 网页浏览器</translation> </message> @@ -20253,32 +20311,32 @@ <translation><b>退出</b><p>退出 eric6 网页浏览器。</p></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="2077"/> + <location filename="../Helpviewer/HelpWindow.py" line="2078"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3743"/> + <location filename="../Helpviewer/HelpWindow.py" line="3744"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3752"/> + <location filename="../Helpviewer/HelpWindow.py" line="3753"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="3762"/> + <location filename="../Helpviewer/HelpWindow.py" line="3763"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> @@ -20323,22 +20381,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values</source> <translation>管理保存的缩放值</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1568"/> + <location filename="../Helpviewer/HelpWindow.py" line="1569"/> <source>Manage Saved Zoom Values...</source> <translation>管理保存的缩放值…</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1574"/> + <location filename="../Helpviewer/HelpWindow.py" line="1575"/> <source>Manage the saved zoom values</source> <translation>管理保存的缩放值</translation> </message> <message> - <location filename="../Helpviewer/HelpWindow.py" line="1576"/> + <location filename="../Helpviewer/HelpWindow.py" line="1577"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation><b>管理保存的缩放值…</b><p>打开一个对话框来管理已保存的缩放值。</p></translation> </message> @@ -39767,7 +39825,7 @@ <translation><b>代码覆盖率…</b><p>显示项目中所有 Python 文件的代码覆盖率。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Profile Data</source> <translation>剖析数据</translation> </message> @@ -39787,7 +39845,7 @@ <translation><b>剖析数据…</b><p>显示项目的剖析数据。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Application Diagram</source> <translation>应用程序图</translation> </message> @@ -39807,7 +39865,7 @@ <translation><b>应用程序图…</b><p>显示项目的图表。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source>Create Package List</source> <translation>创建程序包列表</translation> </message> @@ -39817,7 +39875,7 @@ <translation>创建程序包(&P)列表</translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source>Create Plugin Archive</source> <translation>创建插件存档</translation> </message> @@ -39897,62 +39955,62 @@ <translation>清除(&C)</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>Search New Files</source> <translation>搜索新文件</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4225"/> <source>There were no new files found to be added.</source> <translation>没有要添加的新文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source>Version Control System</source> <translation>版本控制系统</translation> </message> <message> - <location filename="../Project/Project.py" line="4488"/> + <location filename="../Project/Project.py" line="4489"/> <source>Coverage Data</source> <translation>覆盖率数据</translation> </message> <message> - <location filename="../Project/Project.py" line="4538"/> + <location filename="../Project/Project.py" line="4539"/> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Code Coverage</source> <translation>代码覆盖率</translation> </message> <message> - <location filename="../Project/Project.py" line="4511"/> + <location filename="../Project/Project.py" line="4512"/> <source>Please select a coverage file</source> <translation>请选择一个覆盖率文件</translation> </message> <message> - <location filename="../Project/Project.py" line="4561"/> + <location filename="../Project/Project.py" line="4562"/> <source>Please select a profile file</source> <translation>请选择一个剖析文件</translation> </message> <message> - <location filename="../Project/Project.py" line="4615"/> + <location filename="../Project/Project.py" line="4616"/> <source>Include module names?</source> <translation>包含模块名?</translation> </message> <message> - <location filename="../Project/Project.py" line="4733"/> + <location filename="../Project/Project.py" line="4734"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>文件 <b>PKGLIST</b> 已存在。</p><p>是否覆盖?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4793"/> + <location filename="../Project/Project.py" line="4794"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation><p>文件 <b>PKGLIST</b> 不存在。终止…</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4801"/> + <location filename="../Project/Project.py" line="4802"/> <source>The project does not have a main script defined. Aborting...</source> <translation>项目未定义主脚本。终止…</translation> </message> @@ -40087,27 +40145,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4370"/> + <location filename="../Project/Project.py" line="4371"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4773"/> + <location filename="../Project/Project.py" line="4774"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> + <location filename="../Project/Project.py" line="4816"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4854"/> + <location filename="../Project/Project.py" line="4855"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4923"/> + <location filename="../Project/Project.py" line="4924"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -40182,12 +40240,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4358"/> + <location filename="../Project/Project.py" line="4359"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4965"/> + <location filename="../Project/Project.py" line="4966"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -40222,12 +40280,12 @@ <translation type="unfinished">b>创建插件存档(临时)</b><p>通过 PKGLIST 文件给出的文件列表创建一个 Eric4 插件存档文件。存档名从主脚本名构建。修改主脚本的版本项以反映临时的版本。</p> {5 ?} {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4828"/> + <location filename="../Project/Project.py" line="4829"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4877"/> + <location filename="../Project/Project.py" line="4878"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation type="unfinished"></translation> </message> @@ -48562,130 +48620,130 @@ <translation><b>命令行窗口</b><p>就是一个运行在窗口中的解释器。该解释器用于运行被调试的程序。也就是说你可以在调试程序时执行任何命令。</p><p>在输入命令时可以使用方向键。也可以使用向上或向下键重新调用已运行过的命令。在一些文字后按下向上或向下键将开始增量搜索。</p><p>命令行具有一些特殊命令。“reset”重新开始一个新的命令行。“clear”清除命令行窗口的显示。“start”用于开关命令行语言,其后必须加上一个支持的语言。支持的语言可通过“languages”命令列出。这些命令(“languages”除外)也可以通过上下文菜单进行调用。</p><p>在一些输入的文字后按下 Tab 键将显示一个可用命令行列表。可能通过该列表选择相关的条目。仅有一个条目可用时,将自动插入该条目。</p><p>在被动调试模式中,命令行只在要调试的程序连接到 IDE 以后才有效,直到调试完成。这一点将通过不同的提示符和窗口标题来指示。</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="194"/> + <location filename="../QScintilla/Shell.py" line="197"/> <source>Passive >>> </source> <translation>被动 >>></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="209"/> + <location filename="../QScintilla/Shell.py" line="212"/> <source>Start</source> <translation>开始</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="214"/> + <location filename="../QScintilla/Shell.py" line="217"/> <source>History</source> <translation>历史</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="215"/> + <location filename="../QScintilla/Shell.py" line="218"/> <source>Select entry</source> <translation>选择条目</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="216"/> + <location filename="../QScintilla/Shell.py" line="219"/> <source>Show</source> <translation>显示</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="228"/> + <location filename="../QScintilla/Shell.py" line="231"/> <source>Clear</source> <translation>清除</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="222"/> + <location filename="../QScintilla/Shell.py" line="225"/> <source>Copy</source> <translation>复制</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="223"/> + <location filename="../QScintilla/Shell.py" line="226"/> <source>Paste</source> <translation>粘贴</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="229"/> + <location filename="../QScintilla/Shell.py" line="232"/> <source>Reset</source> <translation>重置</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="230"/> + <location filename="../QScintilla/Shell.py" line="233"/> <source>Reset and Clear</source> <translation>重置并清除</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="235"/> + <location filename="../QScintilla/Shell.py" line="238"/> <source>Configure...</source> <translation>配置…</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select History</source> <translation>选择历史</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="591"/> + <location filename="../QScintilla/Shell.py" line="599"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>选择历史条目以执行(最常用的显示在最后)。</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="642"/> + <location filename="../QScintilla/Shell.py" line="662"/> <source>Passive Debug Mode</source> <translation>被动调试模式</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="643"/> + <location filename="../QScintilla/Shell.py" line="663"/> <source> Not connected</source> <translation> 没有连接</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="645"/> + <location filename="../QScintilla/Shell.py" line="665"/> <source>No.</source> <translation>No.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source>Drop Error</source> <translation>降落误差</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="221"/> + <location filename="../QScintilla/Shell.py" line="224"/> <source>Cut</source> <translation>剪切</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="647"/> + <location filename="../QScintilla/Shell.py" line="667"/> <source>{0} on {1}, {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="785"/> + <location filename="../QScintilla/Shell.py" line="805"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="793"/> + <location filename="../QScintilla/Shell.py" line="813"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1401"/> + <location filename="../QScintilla/Shell.py" line="1421"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1686"/> + <location filename="../QScintilla/Shell.py" line="1706"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"><p><b>{0}</b> 不是一个文件。</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="226"/> + <location filename="../QScintilla/Shell.py" line="229"/> <source>Find</source> <translation type="unfinished">查找</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="686"/> + <location filename="../QScintilla/Shell.py" line="706"/> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -48693,26 +48751,26 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="718"/> + <location filename="../QScintilla/Shell.py" line="738"/> <source>Unspecified syntax error. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="696"/> + <location filename="../QScintilla/Shell.py" line="716"/> <source>Exception "{0}" {1} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="720"/> + <location filename="../QScintilla/Shell.py" line="740"/> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="743"/> + <location filename="../QScintilla/Shell.py" line="763"/> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished"></translation> @@ -57997,17 +58055,17 @@ <translation>任务过滤器不包含任务激活过滤器。要配置过滤器设置吗?</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Extracting project tasks...</source> <translation>提取项目任务…</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>Abort</source> <translation>终止</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="707"/> + <location filename="../Tasks/TaskViewer.py" line="706"/> <source>Extracting project tasks... {0}</source> <translation type="unfinished"></translation> @@ -58033,12 +58091,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="698"/> + <location filename="../Tasks/TaskViewer.py" line="697"/> <source>%v/%m Files</source> <translation type="unfinished">%v/%m 文件</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="702"/> + <location filename="../Tasks/TaskViewer.py" line="701"/> <source>Tasks</source> <translation type="unfinished">任务</translation> </message> @@ -60745,7 +60803,7 @@ <translation>显示可以下载的版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <source>Report Bug</source> <translation>报告错误</translation> </message> @@ -60785,7 +60843,7 @@ <translation><b>请求功能…</b><p>打开一个对话框并发送一个功能请求。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2657"/> + <location filename="../UI/UserInterface.py" line="2676"/> <source>Unittest</source> <translation>单元测试</translation> </message> @@ -60845,7 +60903,7 @@ <translation><b>脚本单元测试</b><p>对当前脚本运动单元测试。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>Unittest Project</source> <translation>项目单元测试</translation> </message> @@ -61100,7 +61158,7 @@ <translation><b>键盘快捷键</b><p>将程序的键盘快捷键设置成你喜欢的按键。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5544"/> + <location filename="../UI/UserInterface.py" line="5571"/> <source>Export Keyboard Shortcuts</source> <translation>导出键盘快捷键</translation> </message> @@ -61120,7 +61178,7 @@ <translation><b>导出键盘快捷键</b><p>导出程序的键盘快捷键。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Import Keyboard Shortcuts</source> <translation>导入键盘快捷键</translation> </message> @@ -61140,167 +61198,167 @@ <translation><b>导入键盘快捷键</b><p>导入程序的键盘快捷键。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Activate current editor</source> <translation>激活当前编辑器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183"/> + <location filename="../UI/UserInterface.py" line="2200"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Show next</source> <translation>显示下一个</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2193"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Show previous</source> <translation>显示上一个</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Switch between tabs</source> <translation>在选项卡间切换</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2211"/> + <location filename="../UI/UserInterface.py" line="2228"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>Plugin Infos</source> <translation>插件信息</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2220"/> + <location filename="../UI/UserInterface.py" line="2237"/> <source>&Plugin Infos...</source> <translation>插件信息(&P)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2224"/> + <location filename="../UI/UserInterface.py" line="2241"/> <source>Show Plugin Infos</source> <translation>显示插件信息</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2225"/> + <location filename="../UI/UserInterface.py" line="2242"/> <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="2238"/> + <location filename="../UI/UserInterface.py" line="2255"/> <source>Install Plugins</source> <translation>安装插件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2233"/> + <location filename="../UI/UserInterface.py" line="2250"/> <source>&Install Plugins...</source> <translation>安装插件(&I)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239"/> + <location filename="../UI/UserInterface.py" line="2256"/> <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="2251"/> + <location filename="../UI/UserInterface.py" line="2268"/> <source>Uninstall Plugin</source> <translation>卸载插件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2246"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>&Uninstall Plugin...</source> <translation>卸载插件(&U)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2252"/> + <location filename="../UI/UserInterface.py" line="2269"/> <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="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin Repository</source> <translation>插件储存库</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259"/> + <location filename="../UI/UserInterface.py" line="2276"/> <source>Plugin &Repository...</source> <translation>插件储存库(&R)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2264"/> + <location filename="../UI/UserInterface.py" line="2281"/> <source>Show Plugins available for download</source> <translation>显示可以下载的插件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2266"/> + <location filename="../UI/UserInterface.py" line="2283"/> <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="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt4 Documentation</source> <translation>Qt4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290"/> + <location filename="../UI/UserInterface.py" line="2307"/> <source>Qt&4 Documentation</source> <translation>Qt&4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2294"/> + <location filename="../UI/UserInterface.py" line="2311"/> <source>Open Qt4 Documentation</source> <translation>打开 Qt4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt4 Documentation</source> <translation>PyQt4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2324"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Open PyQt4 Documentation</source> <translation>打开 PyQt4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>Eric API Documentation</source> <translation>Eric API 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404"/> + <location filename="../UI/UserInterface.py" line="2421"/> <source>&Eric API Documentation</source> <translation>&Eric API 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2408"/> + <location filename="../UI/UserInterface.py" line="2425"/> <source>Open Eric API Documentation</source> <translation>打开 Eric API 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2472"/> - <source>&Unittest</source> - <translation>单元测试(&U)</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="2489"/> + <source>&Unittest</source> + <translation>单元测试(&U)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506"/> <source>E&xtras</source> <translation>附加程序(&X)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2494"/> + <location filename="../UI/UserInterface.py" line="2511"/> <source>Wi&zards</source> <translation>向导(&Z)</translation> </message> @@ -61310,257 +61368,257 @@ <translation type="obsolete">工具(&T)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2502"/> + <location filename="../UI/UserInterface.py" line="2519"/> <source>Select Tool Group</source> <translation>选择工具组</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2510"/> + <location filename="../UI/UserInterface.py" line="2527"/> <source>Se&ttings</source> <translation>设置(&T)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2533"/> + <location filename="../UI/UserInterface.py" line="2552"/> <source>&Window</source> <translation>窗口(&W)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2577"/> <source>&Toolbars</source> <translation>工具栏(&T)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2569"/> + <location filename="../UI/UserInterface.py" line="2588"/> <source>P&lugins</source> <translation>插件(&L)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2578"/> + <location filename="../UI/UserInterface.py" line="2597"/> <source>Configure...</source> <translation>配置…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583"/> + <location filename="../UI/UserInterface.py" line="2602"/> <source>&Help</source> <translation>帮助(&H)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2656"/> + <location filename="../UI/UserInterface.py" line="2675"/> <source>Tools</source> <translation>工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2658"/> + <location filename="../UI/UserInterface.py" line="2677"/> <source>Settings</source> <translation>设置</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <source>Help</source> <translation>帮助</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2660"/> + <location filename="../UI/UserInterface.py" line="2679"/> <source>Profiles</source> <translation>模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2661"/> + <location filename="../UI/UserInterface.py" line="2680"/> <source>Plugins</source> <translation>插件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2814"/> + <location filename="../UI/UserInterface.py" line="2841"/> <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="2821"/> + <location filename="../UI/UserInterface.py" line="2848"/> <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="2828"/> + <location filename="../UI/UserInterface.py" line="2855"/> <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="2835"/> + <location filename="../UI/UserInterface.py" line="2862"/> <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="2842"/> + <location filename="../UI/UserInterface.py" line="2869"/> <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="2849"/> + <location filename="../UI/UserInterface.py" line="2876"/> <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="3021"/> + <location filename="../UI/UserInterface.py" line="3048"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>版本号</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360"/> + <location filename="../UI/UserInterface.py" line="6413"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3076"/> + <location filename="../UI/UserInterface.py" line="3103"/> <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="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>Restart application</source> <translation>重启程序</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3356"/> + <location filename="../UI/UserInterface.py" line="3383"/> <source>The application needs to be restarted. Do it now?</source> <translation>程序需要重启。现在重启?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3435"/> + <location filename="../UI/UserInterface.py" line="3462"/> <source>Configure Tool Groups ...</source> <translation>配置工具组…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3439"/> + <location filename="../UI/UserInterface.py" line="3466"/> <source>Configure current Tool Group ...</source> <translation>配置当前工具组…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3390"/> + <location filename="../UI/UserInterface.py" line="3417"/> <source>&Builtin Tools</source> <translation>内建工具(&B)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3407"/> + <location filename="../UI/UserInterface.py" line="3434"/> <source>&Plugin Tools</source> <translation>插件工具(&P)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3558"/> + <location filename="../UI/UserInterface.py" line="3585"/> <source>&Show all</source> <translation>全部显示(&S)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3560"/> + <location filename="../UI/UserInterface.py" line="3587"/> <source>&Hide all</source> <translation>全部隐藏(&H)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4189"/> + <location filename="../UI/UserInterface.py" line="4216"/> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <source>Problem</source> <translation>问题</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <source>Process Generation Error</source> <translation>进程生成错误</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Open Browser</source> <translation>打开浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5349"/> + <location filename="../UI/UserInterface.py" line="5376"/> <source>Could not start a web browser</source> <translation>无法启动网络浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4441"/> + <location filename="../UI/UserInterface.py" line="4468"/> <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="4475"/> + <location filename="../UI/UserInterface.py" line="4502"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>External Tools</source> <translation>外部工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <source>Documentation Missing</source> <translation>文档缺失</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source>Documentation</source> <translation>文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5039"/> + <location filename="../UI/UserInterface.py" line="5066"/> <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="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <source>Save tasks</source> <translation>保存任务</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <source>Read tasks</source> <translation>读取任务</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <source>Save session</source> <translation>保存会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <source>Read session</source> <translation>读取会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <source>Drop Error</source> <translation>降落误差</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Error during updates check</source> <translation>检查更新时出错</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>&Cancel</source> <translation>取消(&C)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <source>Update available</source> <translation>可用更新</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322"/> + <location filename="../UI/UserInterface.py" line="6375"/> <source>Could not perform updates check.</source> <translation>无法完成更新检查。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6346"/> + <location filename="../UI/UserInterface.py" line="6399"/> <source><h3>Available versions</h3><table></source> <translation><h3>可用版本</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>First time usage</source> <translation>第一次使用</translation> </message> @@ -61640,27 +61698,27 @@ <translation>图标编辑器(&I)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt 3 support</source> <translation>Qt 3 支持</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5213"/> + <location filename="../UI/UserInterface.py" line="5240"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation><p>PySide 文档的起始位置尚未配置。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>PySide Documentation</source> <translation>PySide 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2425"/> + <location filename="../UI/UserInterface.py" line="2442"/> <source>Py&Side Documentation</source> <translation>Py&Side 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2429"/> + <location filename="../UI/UserInterface.py" line="2446"/> <source>Open PySide Documentation</source> <translation>打开 PySide 文档</translation> </message> @@ -61680,111 +61738,111 @@ <translation>{0} - {1} - {2} - 被动模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2924"/> + <location filename="../UI/UserInterface.py" line="2951"/> <source>External Tools/{0}</source> <translation>外部工具/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4567"/> + <location filename="../UI/UserInterface.py" line="4594"/> <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="4295"/> + <location filename="../UI/UserInterface.py" line="4322"/> <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="4362"/> + <location filename="../UI/UserInterface.py" line="4389"/> <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="4413"/> + <location filename="../UI/UserInterface.py" line="4440"/> <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="4455"/> + <location filename="../UI/UserInterface.py" line="4482"/> <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="4523"/> + <location filename="../UI/UserInterface.py" line="4550"/> <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="4578"/> + <location filename="../UI/UserInterface.py" line="4605"/> <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="4599"/> + <location filename="../UI/UserInterface.py" line="4626"/> <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="4690"/> + <location filename="../UI/UserInterface.py" line="4717"/> <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="4699"/> + <location filename="../UI/UserInterface.py" line="4726"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4738"/> + <location filename="../UI/UserInterface.py" line="4765"/> <source>Starting process '{0} {1}'. </source> <translation>正在启动进程“{0} {1}”。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4754"/> + <location filename="../UI/UserInterface.py" line="4781"/> <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="4830"/> + <location filename="../UI/UserInterface.py" line="4857"/> <source>Process '{0}' has exited. </source> <translation>进程“{0}”已退出。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5228"/> + <location filename="../UI/UserInterface.py" line="5255"/> <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="5702"/> + <location filename="../UI/UserInterface.py" line="5755"/> <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="5731"/> + <location filename="../UI/UserInterface.py" line="5784"/> <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="5749"/> + <location filename="../UI/UserInterface.py" line="5802"/> <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="5780"/> + <location filename="../UI/UserInterface.py" line="5833"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="6022"/> <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="6143"/> + <location filename="../UI/UserInterface.py" line="6196"/> <source>Trying host {0}</source> <translation>正在尝试主机 {0}</translation> </message> @@ -61819,57 +61877,57 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5568"/> + <location filename="../UI/UserInterface.py" line="5595"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>键盘快捷键文件 (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python 3 Documentation</source> <translation>Python 3 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362"/> + <location filename="../UI/UserInterface.py" line="2379"/> <source>Python &3 Documentation</source> <translation>Python &3 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2383"/> <source>Open Python 3 Documentation</source> <translation>打开 Python 3 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python 2 Documentation</source> <translation>Python 2 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380"/> + <location filename="../UI/UserInterface.py" line="2397"/> <source>Python &2 Documentation</source> <translation>Python &2 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384"/> + <location filename="../UI/UserInterface.py" line="2401"/> <source>Open Python 2 Documentation</source> <translation>打开 Python 2 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2403"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <source>Error getting versions information</source> <translation>获取版本信息出错</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6205"/> + <location filename="../UI/UserInterface.py" line="6258"/> <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="6212"/> + <location filename="../UI/UserInterface.py" line="6265"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>过去7天均无法获取版本信息。请连线并再试一次。</translation> </message> @@ -61955,12 +62013,12 @@ <translation><b>快照</b><p>打开一个对话框来截取屏幕一个区域的快照。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4669"/> + <location filename="../UI/UserInterface.py" line="4696"/> <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="6406"/> + <location filename="../UI/UserInterface.py" line="6459"/> <source>Select Workspace Directory</source> <translation>选择工作区目录</translation> </message> @@ -62180,7 +62238,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2538"/> + <location filename="../UI/UserInterface.py" line="2557"/> <source>&Windows</source> <translation>窗口(&W)</translation> </message> @@ -62255,22 +62313,22 @@ <translation><b>Qt 语言家</b><p>启动 Qt 语言家。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt5 Documentation</source> <translation>Qt5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2304"/> + <location filename="../UI/UserInterface.py" line="2321"/> <source>Qt&5 Documentation</source> <translation>Qt&5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308"/> + <location filename="../UI/UserInterface.py" line="2325"/> <source>Open Qt5 Documentation</source> <translation>打开 Qt5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2860"/> + <location filename="../UI/UserInterface.py" line="2887"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation><p>状态栏的这一部分允许对当前编辑器、shell 或终端进行缩放。</p></translation> </message> @@ -62315,62 +62373,62 @@ <translation><b>编辑消息过滤器</b><p>打开对话框来编辑消息过滤器,使得不期望的错误信息不再在错误窗口中显示。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2337"/> <source>PyQt&4 Documentation</source> <translation>PyQt&4 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt5 Documentation</source> <translation>PyQt5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2339"/> + <location filename="../UI/UserInterface.py" line="2356"/> <source>PyQt&5 Documentation</source> <translation>PyQt&5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2343"/> + <location filename="../UI/UserInterface.py" line="2360"/> <source>Open PyQt5 Documentation</source> <translation>打开 PyQt5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5105"/> + <location filename="../UI/UserInterface.py" line="5132"/> <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="2295"/> + <location filename="../UI/UserInterface.py" line="2312"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>Qt4 文档</b><p>显示 Qt4 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2309"/> + <location filename="../UI/UserInterface.py" line="2326"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>Qt5 文档</b><p>显示 Qt5 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2325"/> + <location filename="../UI/UserInterface.py" line="2342"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>PyQt4 文档</b><p>显示 PyQt4 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345"/> + <location filename="../UI/UserInterface.py" line="2362"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>PyQt5 文档</b><p>显示 PyQt5 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368"/> + <location filename="../UI/UserInterface.py" line="2385"/> <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> <message> - <location filename="../UI/UserInterface.py" line="2431"/> + <location filename="../UI/UserInterface.py" line="2448"/> <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, or execute a web browser or Qt Assistant. </p></source> <translation><b>PySide 文档</b><p>显示 PySide 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6134"/> + <location filename="../UI/UserInterface.py" line="6187"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -62390,7 +62448,7 @@ <translation><b>显示错误日志…</b><p>打开一个对话框显示最近的错误日志。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6191"/> <source>Version Check</source> <translation>版本检查</translation> </message> @@ -62455,32 +62513,32 @@ <translation><b>显示外部工具</b><p>打开一个对话框显示 eric6 使用的所有外部工具的路径和版本。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2410"/> + <location filename="../UI/UserInterface.py" line="2427"/> <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="4388"/> + <location filename="../UI/UserInterface.py" line="4415"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt 版本3 不被 eric6 支持。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6302"/> + <location filename="../UI/UserInterface.py" line="6355"/> <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="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>Eric6 is up to date</source> <translation>Eric6 已是最新版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6315"/> + <location filename="../UI/UserInterface.py" line="6368"/> <source>You are using the latest version of eric6</source> <translation>您正在使用 eric6 的最新版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387"/> + <location filename="../UI/UserInterface.py" line="6440"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>尚未配置 eric6。将打开配置对话框。</translation> </message> @@ -62490,17 +62548,17 @@ <translation>生成插件工具栏…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3410"/> + <location filename="../UI/UserInterface.py" line="3437"/> <source>&User Tools</source> <translation>用户工具(&U)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482"/> + <location filename="../UI/UserInterface.py" line="3509"/> <source>No User Tools Configured</source> <translation>没有配置的用户工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6154"/> + <location filename="../UI/UserInterface.py" line="6207"/> <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> @@ -62524,6 +62582,16 @@ <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="2189"/> + <source>Clear private data</source> + <translation type="unfinished">清空隐私数据</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2191"/> + <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> </context> <context> <name>UserPropertiesDialog</name> @@ -65826,17 +65894,17 @@ <translation>文件已改变</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065"/> + <location filename="../ViewManager/ViewManager.py" line="5066"/> <source>&Clear</source> <translation>清除(&C)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5059"/> + <location filename="../ViewManager/ViewManager.py" line="5060"/> <source>&Add</source> <translation>添加(&A)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5062"/> + <location filename="../ViewManager/ViewManager.py" line="5063"/> <source>&Edit...</source> <translation>编辑(&E)…</translation> </message> @@ -66459,27 +66527,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>Edit Spelling Dictionary</source> <translation type="unfinished">编辑拼写字典</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6242"/> + <location filename="../ViewManager/ViewManager.py" line="6243"/> <source>Editing {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6227"/> + <location filename="../ViewManager/ViewManager.py" line="6228"/> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6254"/> + <location filename="../ViewManager/ViewManager.py" line="6255"/> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6267"/> + <location filename="../ViewManager/ViewManager.py" line="6268"/> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished"></translation> </message> @@ -68508,7 +68576,7 @@ <context> <name>WebBrowserWindow</name> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3153"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3154"/> <source>eric6 Web Browser</source> <translation type="unfinished"></translation> </message> @@ -68528,7 +68596,7 @@ <translation type="unfinished">搜索</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1714"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1715"/> <source>JavaScript Console</source> <translation type="unfinished"></translation> </message> @@ -68585,7 +68653,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>New Private Window</source> <translation type="unfinished"></translation> </message> @@ -68611,7 +68679,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>Open File</source> <translation type="unfinished">打开文件</translation> </message> @@ -69515,7 +69583,7 @@ <translation type="unfinished"><b>显示页面源代码</b><p>在编辑器中显示页面源代码。</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2662"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2663"/> <source>Full Screen</source> <translation type="unfinished">全屏幕</translation> </message> @@ -69830,409 +69898,409 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1504"/> <source>Clear private data</source> <translation type="unfinished">清空隐私数据</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/> <source>&Clear private data</source> - <translation type="unfinished">清空隐私数据(&C)</translation> - </message> - <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/> + <translation type="obsolete">清空隐私数据(&C)</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1506"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"><b>清空隐私数据</b><p>清空隐私数据,例如浏览历史、搜索历史或 favicon 数据库。</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear icons database</source> <translation type="unfinished">清除图标数据库</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/> <source>Clear &icons database</source> <translation type="unfinished">清空图标数据库(&I)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1521"/> <source>Clear the database of favicons</source> <translation type="unfinished">清除喜好图标数据库</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1522"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1523"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation type="unfinished"><b>清除图标数据库</b><p>清除以前访问过的 URL 的喜好图标的数据库。</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1532"/> <source>Manage saved Favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1538"/> <source>Show a dialog to manage the saved favicons</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1539"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/> <source><b>Manage saved Favicons</b><p>This shows a dialog to manage the saved favicons of previously visited URLs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search Engines</source> <translation type="unfinished">配置搜索引擎</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1548"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/> <source>Configure Search &Engines...</source> <translation type="unfinished">配置搜索引擎(&E)…</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1553"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1554"/> <source>Configure the available search engines</source> <translation type="unfinished">配置可用的搜索引擎</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1556"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords</source> <translation type="unfinished">管理已保存的密码</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1565"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/> <source>Manage Saved Passwords...</source> <translation type="unfinished">管理已保存的密码…</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1572"/> <source>Manage the saved passwords</source> <translation type="unfinished">管理已保存的密码</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1573"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1574"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation type="unfinished"><b>管理已保存的密码…</b><p>打开一个对话框以管理已保存的密码。</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>Ad Block</source> <translation type="unfinished">Ad Block</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1582"/> <source>&Ad Block...</source> <translation type="unfinished">&Ad Block…</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1588"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished">配置 AdBlock 订阅组和规则</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1589"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1590"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"><b>Ad Block…</b><p>打开一个对话框以配置 AdBlock 订阅组和规则。</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/> <source>Manage SSL Certificate Errors...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1604"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1605"/> <source>Manage the accepted SSL certificate Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1606"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/> <source><b>Manage SSL Certificate Errors...</b><p>Opens a dialog to manage the accepted SSL certificate errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1616"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1617"/> <source>Downloads</source> <translation type="unfinished">下载</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1620"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1621"/> <source>Shows the downloads window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1622"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>RSS Feeds Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>&RSS Feeds Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation type="unfinished">Ctrl+Shift+F</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1637"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1638"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1639"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Siteinfo Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>&Siteinfo Dialog...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1649"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1650"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation type="unfinished">Ctrl+Shift+I</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/> <source>Open a dialog showing some information about the current site.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1658"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1667"/> <source>Manage &User Agent Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/> <source>Shows a dialog to manage the User Agent settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1672"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>Synchronize data</source> <translation type="unfinished">同步数据</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/> <source>&Synchronize Data...</source> <translation type="unfinished">同步数据(&S)…</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1686"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/> <source>Shows a dialog to synchronize data via the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1689"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values</source> <translation type="unfinished">管理保存的缩放值</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1699"/> <source>Manage Saved Zoom Values...</source> <translation type="unfinished">管理保存的缩放值…</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1705"/> <source>Manage the saved zoom values</source> <translation type="unfinished">管理保存的缩放值</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1706"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/> <source><b>Manage Saved Zoom Values...</b><p>Opens a dialog to manage the saved zoom values.</p></source> <translation type="unfinished"><b>管理保存的缩放值…</b><p>打开一个对话框来管理已保存的缩放值。</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1718"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/> <source>Toggle the JavaScript console window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1720"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1721"/> <source><b>JavaScript Console</b><p>This toggles the JavaScript console window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1765"/> <source>&File</source> <translation type="unfinished">文件(&F)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1787"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1788"/> <source>&Edit</source> <translation type="unfinished">编辑(&E)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1804"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1805"/> <source>&View</source> <translation type="unfinished">视图(&V)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1812"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1813"/> <source>Text Encoding</source> <translation type="unfinished">文本编码</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1818"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1819"/> <source>&Go</source> <translation type="unfinished">跳转(&G)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1833"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/> <source>H&istory</source> <translation type="unfinished">历史(&I)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1845"/> <source>&Bookmarks</source> <translation type="unfinished">书签(&B)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1861"/> <source>&Settings</source> <translation type="unfinished">设置(&S)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1887"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1888"/> <source>Global User Agent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1900"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1901"/> <source>&Tools</source> <translation type="unfinished">工具(&T)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1907"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1908"/> <source>&Window</source> <translation type="unfinished">窗口(&W)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1920"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1921"/> <source>&Help</source> <translation type="unfinished">帮助(&H)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1931"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1932"/> <source>File</source> <translation type="unfinished">文件</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1959"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1960"/> <source>Edit</source> <translation type="unfinished">编辑</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1971"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1972"/> <source>View</source> <translation type="unfinished">视图</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1980"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/> <source>Find</source> <translation type="unfinished">查找</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1988"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1989"/> <source>Filter</source> <translation type="unfinished">过滤器</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1993"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1994"/> <source>Filtered by: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2000"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2001"/> <source>Settings</source> <translation type="unfinished">设置</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2011"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2012"/> <source>Tools</source> <translation type="unfinished">工具</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2020"/> <source>Help</source> <translation type="unfinished">帮助</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2026"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2027"/> <source>Go</source> <translation type="unfinished">跳转</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2080"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/> <source>VirusTotal</source> <translation type="unfinished">VirusTotal</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2084"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2085"/> <source>Scan current site</source> <translation type="unfinished">扫描当前站点</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>IP Address Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Domain Report</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"><p>无法启动进程。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2221"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2222"/> <source>OK</source> <translation type="unfinished">确定</translation> </message> @@ -70242,118 +70310,118 @@ <translation type="obsolete">帮助文件 (*.html *.htm);;PDF 文件 (*.pdf);;CHM 文件 (*.chm);;所有文件 (*)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2305"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2306"/> <source><b>eric6 Web Browser - {0}</b><p>The eric6 Web Browser is a combined help file and HTML browser. It is part of the eric6 development toolset.</p><p>It is based on QtWebEngine {1} and Chrome {2}.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2425"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2426"/> <source>Saved Tabs</source> <translation type="unfinished">已保存的选项卡</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2669"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2670"/> <source>Restore Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2970"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2971"/> <source>Could not find an associated content.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3073"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3074"/> <source>Updating search index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3143"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3144"/> <source>Looking for Documentation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3178"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3179"/> <source>Unfiltered</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3197"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3198"/> <source>Help Engine</source> <translation type="unfinished">帮助引擎</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3724"/> - <source>ISO</source> - <translation type="unfinished">ISO</translation> - </message> - <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3725"/> - <source>Windows</source> - <translation type="unfinished">Windows</translation> + <source>ISO</source> + <translation type="unfinished">ISO</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3726"/> - <source>ISCII</source> - <translation type="unfinished"></translation> + <source>Windows</source> + <translation type="unfinished">Windows</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3727"/> - <source>Unicode</source> - <translation type="unfinished">Unicode</translation> + <source>ISCII</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3728"/> - <source>Other</source> - <translation type="unfinished">其它</translation> + <source>Unicode</source> + <translation type="unfinished">Unicode</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="3729"/> + <source>Other</source> + <translation type="unfinished">其它</translation> + </message> + <message> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3730"/> <source>IBM</source> <translation type="unfinished">IBM</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="3751"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="3752"/> <source>Default Encoding</source> <translation type="unfinished">默认编码</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source>VirusTotal Scan</source> <translation type="unfinished">VirusTotal 扫描</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4017"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4043"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4044"/> <source>Enter a valid IPv4 address in dotted quad notation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4052"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4053"/> <source>The given IP address is not in dotted quad notation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="4062"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="4063"/> <source>Enter a valid domain name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1729"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1730"/> <source>Tab Manager</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/> <source>Shows the tab manager window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="1735"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/> <source><b>Tab Manager</b><p>Shows the tab manager window.</p></source> <translation type="unfinished"></translation> </message> @@ -70389,7 +70457,7 @@ <translation type="unfinished"><b>另存为…</b><p>将当前页面保存至磁盘。</p></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserWindow.py" line="2254"/> + <location filename="../WebBrowser/WebBrowserWindow.py" line="2255"/> <source>HTML Files (*.html *.htm *.mhtml);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation type="unfinished"></translation> </message>