Sat, 02 Apr 2022 11:23:11 +0200
Merged with branch 'eric7' to prepare a new release.
--- a/docs/changelog Fri Mar 04 18:07:10 2022 +0100 +++ b/docs/changelog Sat Apr 02 11:23:11 2022 +0200 @@ -1,5 +1,18 @@ Change Log ---------- +Version 22.4: +- bug fixes +- General + -- added capability to upgrade PyQt packages eric depends on from within eric + -- added capability to upgrade eric from within eric +- pip Interface + -- added a vulnerability check for installed packages based on "Safety DB" + -- added a widget to show a package dependency tree + -- added a button to search for more packages (i.e. one more page of results) +- Third Party packages + -- upgraded coverage to 6.3.2 + -- upgraded mccabe to version 0.7.0 + Version 22.3: - bug fixes - General
--- a/eric7.epj Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7.epj Sat Apr 02 11:23:11 2022 +0200 @@ -61,12 +61,17 @@ "CopyrightMinFileSize": 0, "DocstringType": "eric", "EnabledCheckerCategories": "C, D, E, M, N, Y, W", - "ExcludeFiles": "*/ThirdParty/*, */coverage/*, */Ui_*.py, */Examples/*, */*_rc.py,*/pycodestyle.py,*/pyflakes/checker.py,*/mccabe.py,*/eradicate.py,*/ast_unparse.py", + "ExcludeFiles": "*/ThirdParty/*, */coverage/*, */Ui_*.py, */Examples/*, */*_rc.py,*/pycodestyle.py,*/pyflakes/checker.py,*/mccabe.py,*/eradicate.py,*/ast_unparse.py,*/piplicenses.py", "ExcludeMessages": "C101,E265,E266,E305,E402,M201,M301,M302,M303,M304,M305,M306,M307,M308,M311,M312,M313,M314,M315,M321,M701,M702,M811,M834,N802,N803,N807,N808,N821,W293,W504,Y119,Y401,Y402", "FixCodes": "", "FixIssues": false, "FutureChecker": "", "HangClosing": false, + "ImportsChecker": { + "ApplicationPackageNames": [], + "BanRelativeImports": "", + "BannedModules": [] + }, "IncludeMessages": "", "LineComplexity": 25, "LineComplexityScore": 10, @@ -718,7 +723,9 @@ "eric7/Preferences/ConfigurationPages/InterfaceLightPage.ui", "eric7/HelpViewer/HelpBookmarkPropertiesDialog.ui", "eric7/HelpViewer/HelpBookmarksImportDialog.ui", - "eric7/MicroPython/BoardDataDialog.ui" + "eric7/MicroPython/BoardDataDialog.ui", + "eric7/UI/VersionsDialog.ui", + "eric7/PipInterface/PipLicensesDialog.ui" ], "HASH": "df7daa8781250f7664e6ecaeaf1361fa2efd39ee", "IDLPARAMS": { @@ -2313,7 +2320,14 @@ "eric7/HelpViewer/HelpBookmarkPropertiesDialog.py", "eric7/HelpViewer/HelpBookmarksImportDialog.py", "eric7/MicroPython/BoardDataDialog.py", - "eric7/__main__.py" + "eric7/__main__.py", + "eric7/UI/VersionsDialog.py", + "eric7/UI/upgrader.py", + "eric7/PipInterface/PipVulnerabilityChecker.py", + "scripts/install-dependencies.py", + "eric7/DebugClients/Python/coverage/lcovreport.py", + "eric7/PipInterface/PipLicensesDialog.py", + "eric7/PipInterface/piplicenses.py" ], "SPELLEXCLUDES": "Dictionaries/excludes.dic", "SPELLLANGUAGE": "en_US", @@ -2391,4 +2405,4 @@ "VCSOTHERDATA": {}, "VERSION": "7.x" } -} +} \ No newline at end of file
--- a/eric7/APIs/Python3/eric7.api Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/APIs/Python3/eric7.api Sat Apr 02 11:23:11 2022 +0200 @@ -3047,18 +3047,25 @@ eric7.PipInterface.Pip.Pip.cacheList?4(venvName) eric7.PipInterface.Pip.Pip.cachePurge?4(venvName) eric7.PipInterface.Pip.Pip.cacheRemove?4(venvName) +eric7.PipInterface.Pip.Pip.checkPackageOutdated?4(packageStart, envName) +eric7.PipInterface.Pip.Pip.getDependecyTree?4(envName, localPackages=True, usersite=False, reverse=False) +eric7.PipInterface.Pip.Pip.getFrozenPackages?4(envName, localPackages=True, usersite=False, requirement=None) eric7.PipInterface.Pip.Pip.getIndexUrl?4() eric7.PipInterface.Pip.Pip.getIndexUrlPypi?4() eric7.PipInterface.Pip.Pip.getIndexUrlSearch?4() eric7.PipInterface.Pip.Pip.getInstalledPackages?4(envName, localPackages=True, notRequired=False, usersite=False) +eric7.PipInterface.Pip.Pip.getLicenses?4(envName, localPackages=True, usersite=False, summary=False) +eric7.PipInterface.Pip.Pip.getLicensesSummary?4(envName, localPackages=True, usersite=False) eric7.PipInterface.Pip.Pip.getNetworkAccessManager?4() eric7.PipInterface.Pip.Pip.getOutdatedPackages?4(envName, localPackages=True, notRequired=False, usersite=False) eric7.PipInterface.Pip.Pip.getPackageDetails?4(name, version) +eric7.PipInterface.Pip.Pip.getPackageVersions?4(name) eric7.PipInterface.Pip.Pip.getProjectEnvironmentString?4() eric7.PipInterface.Pip.Pip.getUserConfig?4() eric7.PipInterface.Pip.Pip.getVirtualenvConfig?4(venvName) eric7.PipInterface.Pip.Pip.getVirtualenvInterpreter?4(venvName) eric7.PipInterface.Pip.Pip.getVirtualenvNames?4(noRemote=False, noConda=False) +eric7.PipInterface.Pip.Pip.getVulnerabilityChecker?4() eric7.PipInterface.Pip.Pip.installPackages?4(packages, venvName="", userSite=False, interpreter="", forceReinstall=False) eric7.PipInterface.Pip.Pip.installPip?4(venvName, userSite=False) eric7.PipInterface.Pip.Pip.installRequirements?4(venvName) @@ -3081,15 +3088,22 @@ eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_buttonBox_clicked?4(button) eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_copyButton_clicked?4() eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_insertButton_clicked?4() -eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_localCheckBox_clicked?4(checked) +eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_localCheckBox_clicked?4() eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_replaceAllButton_clicked?4() eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_replaceSelectionButton_clicked?4() eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_requirementsEdit_textChanged?4() eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_requirementsFilePicker_textChanged?4(txt) eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_saveButton_clicked?4() eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_saveToButton_clicked?4() +eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.on_userCheckBox_clicked?4() eric7.PipInterface.PipFreezeDialog.PipFreezeDialog.start?4(venvName) eric7.PipInterface.PipFreezeDialog.PipFreezeDialog?1(pip, parent=None) +eric7.PipInterface.PipLicensesDialog.PipLicensesDialog.LicensesLicenseColumn?7 +eric7.PipInterface.PipLicensesDialog.PipLicensesDialog.LicensesPackageColumn?7 +eric7.PipInterface.PipLicensesDialog.PipLicensesDialog.LicensesVersionColumn?7 +eric7.PipInterface.PipLicensesDialog.PipLicensesDialog.SummaryCountColumn?7 +eric7.PipInterface.PipLicensesDialog.PipLicensesDialog.SummaryLicenseColumn?7 +eric7.PipInterface.PipLicensesDialog.PipLicensesDialog?1(pip, environment, localPackages=True, usersite=False, parent=None) eric7.PipInterface.PipPackageDetailsDialog.PipPackageDetailsDialog.ButtonInstall?7 eric7.PipInterface.PipPackageDetailsDialog.PipPackageDetailsDialog.ButtonRemove?7 eric7.PipInterface.PipPackageDetailsDialog.PipPackageDetailsDialog.ButtonUpgrade?7 @@ -3098,37 +3112,57 @@ eric7.PipInterface.PipPackagesInputDialog.PipPackagesInputDialog.getData?4() eric7.PipInterface.PipPackagesInputDialog.PipPackagesInputDialog.on_packagesEdit_textChanged?4(txt) eric7.PipInterface.PipPackagesInputDialog.PipPackagesInputDialog?1(pip, title, install=True, parent=None) +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.AvailableVersionColumn?7 +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.DepInstalledVersionColumn?7 +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.DepPackageColumn?7 +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.DepRequiredVersionColumn?7 +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.InstalledVersionColumn?7 +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.PackageColumn?7 eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.SearchVersionRole?7 eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.ShowProcessClassifiersMode?7 eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.ShowProcessEntryPointsMode?7 eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.ShowProcessFilesListMode?7 eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.ShowProcessGeneralMode?7 +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.VulnerabilityColumn?7 +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.VulnerabilityRole?7 eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.executeInstallPackages?4(packages, userSite=False) eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.executeUninstallPackages?4(packages) eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.executeUpgradePackages?4(packages) eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.getPip?4() -eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_environmentsComboBox_currentIndexChanged?4(index) +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_dependenciesList_itemActivated?4(item, column) +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_dependenciesList_itemPressed?4(item, column) +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_dependenciesList_itemSelectionChanged?4() +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_environmentsComboBox_currentTextChanged?4(name) eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_installButton_clicked?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_installUserSiteButton_clicked?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_installedFilesCheckBox_clicked?4(checked) -eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_localCheckBox_clicked?4(checked) -eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_notRequiredCheckBox_clicked?4(checked) +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_localCheckBox_clicked?4() +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_localDepCheckBox_clicked?4() +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_notRequiredCheckBox_clicked?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_packagesList_itemActivated?4(item, column) +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_packagesList_itemPressed?4(item, column) eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_packagesList_itemSelectionChanged?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_refreshButton_clicked?4() +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_refreshDependenciesButton_clicked?4() +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_requiresButton_toggled?4(checked) eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_searchButton_clicked?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_searchEditName_returnPressed?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_searchEditName_textChanged?4(txt) +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_searchMoreButton_clicked?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_searchResultList_itemActivated?4(item, column) eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_searchResultList_itemSelectionChanged?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_searchToggleButton_toggled?4(checked) +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_showDepPackageDetailsButton_clicked?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_showDetailsButton_clicked?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_showPackageDetailsButton_clicked?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_uninstallButton_clicked?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_upgradeAllButton_clicked?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_upgradeButton_clicked?4() -eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_userCheckBox_clicked?4(checked) +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_userCheckBox_clicked?4() +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_userDepCheckBox_clicked?4() eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_verboseCheckBox_clicked?4(checked) +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_viewToggleButton_toggled?4(checked) +eric7.PipInterface.PipPackagesWidget.PipPackagesWidget.on_vulnerabilityCheckBox_clicked?4(checked) eric7.PipInterface.PipPackagesWidget.PipPackagesWidget?1(pip, parent=None) eric7.PipInterface.PipPackagesWidget.PypiSearchResultsParser.ClassPrefix?7 eric7.PipInterface.PipPackagesWidget.PypiSearchResultsParser.getResults?4() @@ -3136,6 +3170,52 @@ eric7.PipInterface.PipPackagesWidget.PypiSearchResultsParser.handle_endtag?4(tag) eric7.PipInterface.PipPackagesWidget.PypiSearchResultsParser.handle_starttag?4(tag, attrs) eric7.PipInterface.PipPackagesWidget.PypiSearchResultsParser?1(data) +eric7.PipInterface.PipVulnerabilityChecker.PipVulnerabilityChecker.FullDbFile?7 +eric7.PipInterface.PipVulnerabilityChecker.PipVulnerabilityChecker.SummaryDbFile?7 +eric7.PipInterface.PipVulnerabilityChecker.PipVulnerabilityChecker.check?4(packages) +eric7.PipInterface.PipVulnerabilityChecker.PipVulnerabilityChecker.updateVulnerabilityDb?4() +eric7.PipInterface.PipVulnerabilityChecker.PipVulnerabilityChecker?1(pip, parent=None) +eric7.PipInterface.PipVulnerabilityChecker.VulnerabilityCheckError.FullDbUnavailable?7 +eric7.PipInterface.PipVulnerabilityChecker.VulnerabilityCheckError.OK?7 +eric7.PipInterface.PipVulnerabilityChecker.VulnerabilityCheckError.SummaryDbUnavailable?7 +eric7.PipInterface.piplicenses.CompatibleArgumentParser._verify_args?5(args: CustomNamespace) +eric7.PipInterface.piplicenses.CompatibleArgumentParser.parse_args?4(args: Optional[Sequence[Text]] = None, namespace: CustomNamespace = None) +eric7.PipInterface.piplicenses.CustomHelpFormatter._expand_help?5(action: argparse.Action) +eric7.PipInterface.piplicenses.CustomHelpFormatter._format_action?5(action: argparse.Action) +eric7.PipInterface.piplicenses.CustomHelpFormatter._split_lines?5(text: Text, width: int) +eric7.PipInterface.piplicenses.CustomHelpFormatter?1(prog: Text, indent_increment: int = 2, max_help_position: int = 24, width: Optional[int] = None) +eric7.PipInterface.piplicenses.DEFAULT_OUTPUT_FIELDS?7 +eric7.PipInterface.piplicenses.FIELDS_TO_METADATA_KEYS?7 +eric7.PipInterface.piplicenses.FIELD_NAMES?7 +eric7.PipInterface.piplicenses.FromArg.ALL?7 +eric7.PipInterface.piplicenses.FromArg.CLASSIFIER?7 +eric7.PipInterface.piplicenses.FromArg.META?7 +eric7.PipInterface.piplicenses.FromArg.MIXED?7 +eric7.PipInterface.piplicenses.LICENSE_UNKNOWN?7 +eric7.PipInterface.piplicenses.MAP_DEST_TO_ENUM?7 +eric7.PipInterface.piplicenses.METADATA_KEYS?7 +eric7.PipInterface.piplicenses.OrderArg.AUTHOR?7 +eric7.PipInterface.piplicenses.OrderArg.COUNT?7 +eric7.PipInterface.piplicenses.OrderArg.LICENSE?7 +eric7.PipInterface.piplicenses.OrderArg.NAME?7 +eric7.PipInterface.piplicenses.OrderArg.URL?7 +eric7.PipInterface.piplicenses.SUMMARY_OUTPUT_FIELDS?7 +eric7.PipInterface.piplicenses.SYSTEM_PACKAGES?7 +eric7.PipInterface.piplicenses.choices_from_enum?4(enum_cls: NoValueEnum) +eric7.PipInterface.piplicenses.create_licenses_list?4(args: "CustomNamespace", output_fields=DEFAULT_OUTPUT_FIELDS) +eric7.PipInterface.piplicenses.create_output_string?4(args: "CustomNamespace") +eric7.PipInterface.piplicenses.create_parser?4() +eric7.PipInterface.piplicenses.create_summary_list?4(args: "CustomNamespace") +eric7.PipInterface.piplicenses.enum_key_to_value?4(enum_key: Enum) +eric7.PipInterface.piplicenses.find_license_from_classifier?4(message) +eric7.PipInterface.piplicenses.get_installed_distributions?4(local_only=True, user_only=False) +eric7.PipInterface.piplicenses.get_output_fields?4(args: "CustomNamespace") +eric7.PipInterface.piplicenses.get_packages?4(args: "CustomNamespace") +eric7.PipInterface.piplicenses.get_pkg_included_file?4(pkg, file_names) +eric7.PipInterface.piplicenses.get_pkg_info?4(pkg) +eric7.PipInterface.piplicenses.main?4() +eric7.PipInterface.piplicenses.select_license_by_source?4(from_source, license_classifier, license_meta) +eric7.PipInterface.piplicenses.value_to_enum_key?4(value: str) eric7.PluginManager.PluginDetailsDialog.PluginDetailsDialog.on_activeCheckBox_clicked?4() eric7.PluginManager.PluginDetailsDialog.PluginDetailsDialog.on_autoactivateCheckBox_clicked?4() eric7.PluginManager.PluginDetailsDialog.PluginDetailsDialog?1(details, parent=None) @@ -9829,7 +9909,7 @@ eric7.UI.UserInterface.UserInterface.maxMenuFilePathLen?7 eric7.UI.UserInterface.UserInterface.networkAccessManager?4() eric7.UI.UserInterface.UserInterface.onlineStateChanged?7 -eric7.UI.UserInterface.UserInterface.performVersionCheck?4(manual=True, alternative=0, showVersions=False) +eric7.UI.UserInterface.UserInterface.performVersionCheck?4() eric7.UI.UserInterface.UserInterface.preferencesChanged?7 eric7.UI.UserInterface.UserInterface.processArgs?4(args) eric7.UI.UserInterface.UserInterface.processInstallInfoFile?4() @@ -9839,7 +9919,6 @@ eric7.UI.UserInterface.UserInterface.removeSideWidget?4(widget) eric7.UI.UserInterface.UserInterface.reregisterToolbar?4(name, text, category="") eric7.UI.UserInterface.UserInterface.setDebugProfile?4(save=True) -eric7.UI.UserInterface.UserInterface.showAvailableVersionsInfo?4() eric7.UI.UserInterface.UserInterface.showEmailDialog?4(mode, attachFile=None, deleteAttachFile=False) eric7.UI.UserInterface.UserInterface.showEvent?4(evt) eric7.UI.UserInterface.UserInterface.showFindFileByNameDialog?4() @@ -9852,8 +9931,17 @@ eric7.UI.UserInterface.UserInterface.showReplaceFilesWidget?4(txt="", searchDir="", openFiles=False) eric7.UI.UserInterface.UserInterface.showSideWidget?4(widget) eric7.UI.UserInterface.UserInterface.unregisterToolbar?4(name) +eric7.UI.UserInterface.UserInterface.upgradeEric?4() +eric7.UI.UserInterface.UserInterface.upgradeEricPyQt?4() +eric7.UI.UserInterface.UserInterface.upgradePyQt?4() eric7.UI.UserInterface.UserInterface.versionIsNewer?4(required, snapshot=None) eric7.UI.UserInterface.UserInterface?1(app, locale, splash, plugin, disabledPlugins, noOpenAtStartup, noCrashOpenAtStartup, disableCrashSession, restartArguments, originalPathString) +eric7.UI.VersionsDialog.VersionsDialog?1(parent, title, text) +eric7.UI.upgrader._ericPackages?8 +eric7.UI.upgrader._pyqtPackages?8 +eric7.UI.upgrader.doUpgrade?4(packages) +eric7.UI.upgrader.main?4() +eric7.UI.upgrader.startEric?4(args) eric7.Utilities.AutoSaver.AutoSaver.AUTOSAVE_IN?7 eric7.Utilities.AutoSaver.AutoSaver.MAXWAIT?7 eric7.Utilities.AutoSaver.AutoSaver.changeOccurred?4() @@ -10508,6 +10596,7 @@ eric7.VirtualEnv.VirtualenvManager.VirtualenvManager.addVirtualEnv?4(venvName, venvDirectory, venvInterpreter="", isGlobal=False, isConda=False, isRemote=False, execPath="") eric7.VirtualEnv.VirtualenvManager.VirtualenvManager.createVirtualEnv?4(baseDir="") eric7.VirtualEnv.VirtualenvManager.VirtualenvManager.deleteVirtualEnvs?4(venvNames) +eric7.VirtualEnv.VirtualenvManager.VirtualenvManager.environmentForInterpreter?4(interpreter) eric7.VirtualEnv.VirtualenvManager.VirtualenvManager.getDefaultEnvironment?4() eric7.VirtualEnv.VirtualenvManager.VirtualenvManager.getEnvironmentEntries?4() eric7.VirtualEnv.VirtualenvManager.VirtualenvManager.getVirtualEnvironmentsBaseDir?4() @@ -12481,6 +12570,8 @@ install-debugclients.shutilCopy?4(src, dst, perm=0o644) install-debugclients.sourceDir?7 install-debugclients.usage?4(rcode=2) +install-dependencies.main?4() +install-dependencies.pipInstall?4(packageName) install-i18n.configDir?7 install-i18n.getConfigDir?4() install-i18n.installTranslations?4()
--- a/eric7/APIs/Python3/eric7.bas Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/APIs/Python3/eric7.bas Sat Apr 02 11:23:11 2022 +0200 @@ -96,6 +96,7 @@ ColorDialogWizardDialog QDialog Ui_ColorDialogWizardDialog CompareDialog QWidget Ui_CompareDialog CompareWindow EricMainWindow +CompatibleArgumentParser argparse.ArgumentParser CompleterBase QObject CompleterPython CompleterBase CompleterRuby CompleterBase @@ -127,6 +128,8 @@ CooperationServer QTcpServer CorbaPage ConfigurationPageBase Ui_CorbaPage CreateDialogCodeDialog QDialog Ui_CreateDialogCodeDialog +CustomHelpFormatter argparse.HelpFormatter +CustomNamespace argparse.Namespace DCTestResult TestResult DateTimeVisitor ast.NodeVisitor DebugClient DebugBase DebugClientBase ThreadExtension @@ -336,6 +339,7 @@ FontDialogWizard QObject FontDialogWizardDialog QDialog Ui_FontDialogWizardDialog FrameScroller QObject +FromArg NoValueEnum FtpDirLineParser QObject FtpDirLineParserError Exception FtpSyncHandler SyncHandler @@ -662,6 +666,7 @@ NetworkUrlInterceptor QWebEngineUrlRequestInterceptor NewDialogClassDialog QDialog Ui_NewDialogClassDialog NewPythonPackageDialog QDialog Ui_NewPythonPackageDialog +NoValueEnum Enum NodeTypeEnum enum.IntEnum NotificationFrame QFrame Ui_NotificationFrame NotificationTypes enum.Enum @@ -680,6 +685,7 @@ OpenSearchReader QXmlStreamReader OpenSearchWriter QXmlStreamWriter OperaImporter BookmarksImporter +OrderArg NoValueEnum PackageDiagramBuilder UMLDiagramBuilder PackageItem UMLItem PackageModel UMLModel @@ -699,10 +705,12 @@ PipDialog QDialog Ui_PipDialog PipFileSelectionDialog QDialog Ui_PipFileSelectionDialog PipFreezeDialog QDialog Ui_PipFreezeDialog +PipLicensesDialog QDialog Ui_PipLicensesDialog PipPackageDetailsDialog QDialog Ui_PipPackageDetailsDialog PipPackagesInputDialog QDialog Ui_PipPackagesInputDialog PipPackagesWidget QWidget Ui_PipPackagesWidget PipPage ConfigurationPageBase Ui_PipPage +PipVulnerabilityChecker QObject PixmapDiagram EricMainWindow PluginActivationError PluginError PluginClassFormatError PluginError @@ -830,6 +838,7 @@ SearchReplaceWidget QWidget SearchWidget QWidget Ui_SearchWidget SecurityPage ConfigurationPageBase Ui_SecurityPage +SelectAction argparse.Action SendRefererWhitelistDialog QDialog Ui_SendRefererWhitelistDialog Service ClbrBaseClasses.Class VisibilityMixin ServiceMethod ClbrBaseClasses.Function VisibilityMixin @@ -1026,6 +1035,7 @@ VcsStatusMonitorThread QThread VcsSubversionPlugin QObject VersionControl QObject +VersionsDialog QDialog Ui_VersionsDialog ViewManager QWidget ViewProfileDialog QDialog ViewmanagerPage ConfigurationPageBase Ui_ViewmanagerPage @@ -1045,6 +1055,7 @@ VisibilityMixin ClbrBaseClasses.ClbrVisibilityMixinBase VmListspacePlugin QObject VmTabviewPlugin QObject +VulnerabilityCheckError enum.Enum WatchPointModel QAbstractItemModel WatchPointViewer QTreeView WebBrowserAppearancePage ConfigurationPageBase Ui_WebBrowserAppearancePage
--- a/eric7/DebugClients/Python/coverage/cmdline.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/cmdline.py Sat Apr 02 11:23:11 2022 +0200 @@ -3,7 +3,6 @@ """Command-line support for coverage.py.""" - import glob import optparse # pylint: disable=deprecated-module import os @@ -18,16 +17,22 @@ from coverage import env from coverage.collector import CTracer from coverage.config import CoverageConfig +from coverage.control import DEFAULT_DATAFILE from coverage.data import combinable_files, debug_data_file -from coverage.debug import info_formatter, info_header, short_stack +from coverage.debug import info_header, short_stack, write_formatted_info from coverage.exceptions import _BaseCoverageException, _ExceptionDuringRun, NoSource from coverage.execfile import PyRunner from coverage.results import Numbers, should_fail_under +# When adding to this file, alphabetization is important. Look for +# "alphabetize" comments throughout. class Opts: """A namespace class for individual options we'll build parsers from.""" + # Keep these entries alphabetized (roughly) by the option name as it + # appears on the command line. + append = optparse.make_option( '-a', '--append', action='store_true', help="Append coverage data to .coverage, otherwise it starts clean each time.", @@ -52,13 +57,33 @@ help="The context label to record for this coverage run.", ) contexts = optparse.make_option( - '', '--contexts', action='store', - metavar="REGEX1,REGEX2,...", + '', '--contexts', action='store', metavar="REGEX1,REGEX2,...", help=( "Only display data from lines covered in the given contexts. " + "Accepts Python regexes, which must be quoted." ), ) + combine_datafile = optparse.make_option( + '', '--data-file', action='store', metavar="DATAFILE", + help=( + "Base name of the data files to operate on. " + + "Defaults to '.coverage'. [env: COVERAGE_FILE]" + ), + ) + input_datafile = optparse.make_option( + '', '--data-file', action='store', metavar="INFILE", + help=( + "Read coverage data for report generation from this file. " + + "Defaults to '.coverage'. [env: COVERAGE_FILE]" + ), + ) + output_datafile = optparse.make_option( + '', '--data-file', action='store', metavar="OUTFILE", + help=( + "Write the recorded coverage data to this file. " + + "Defaults to '.coverage'. [env: COVERAGE_FILE]" + ), + ) debug = optparse.make_option( '', '--debug', action='store', metavar="OPTS", help="Debug options, separated by commas. [env: COVERAGE_DEBUG]", @@ -80,8 +105,7 @@ help="Ignore errors while reading source files.", ) include = optparse.make_option( - '', '--include', action='store', - metavar="PAT1,PAT2,...", + '', '--include', action='store', metavar="PAT1,PAT2,...", help=( "Include only files whose paths match one of these patterns. " + "Accepts shell-style wildcards, which must be quoted." @@ -106,23 +130,24 @@ ), ) omit = optparse.make_option( - '', '--omit', action='store', - metavar="PAT1,PAT2,...", + '', '--omit', action='store', metavar="PAT1,PAT2,...", help=( "Omit files whose paths match one of these patterns. " + "Accepts shell-style wildcards, which must be quoted." ), ) output_xml = optparse.make_option( - '-o', '', action='store', dest="outfile", - metavar="OUTFILE", + '-o', '', action='store', dest="outfile", metavar="OUTFILE", help="Write the XML report to this file. Defaults to 'coverage.xml'", ) output_json = optparse.make_option( - '-o', '', action='store', dest="outfile", - metavar="OUTFILE", + '-o', '', action='store', dest="outfile", metavar="OUTFILE", help="Write the JSON report to this file. Defaults to 'coverage.json'", ) + output_lcov = optparse.make_option( + '-o', '', action='store', dest='outfile', metavar="OUTFILE", + help="Write the LCOV report to this file. Defaults to 'coverage.lcov'", + ) json_pretty_print = optparse.make_option( '', '--pretty-print', action='store_true', help="Format the JSON for human readers.", @@ -131,7 +156,7 @@ '-p', '--parallel-mode', action='store_true', help=( "Append the machine name, process id and random number to the " + - ".coverage data file name to simplify collecting data from " + + "data file name to simplify collecting data from " + "many processes." ), ) @@ -172,8 +197,10 @@ ) sort = optparse.make_option( '--sort', action='store', metavar='COLUMN', - help="Sort the report by the named column: name, stmts, miss, branch, brpart, or cover. " + + help=( + "Sort the report by the named column: name, stmts, miss, branch, brpart, or cover. " + "Default is name." + ), ) source = optparse.make_option( '', '--source', action='store', metavar="SRC1,SRC2,...", @@ -209,12 +236,14 @@ add_help_option=False, *args, **kwargs ) self.set_defaults( + # Keep these arguments alphabetized by their names. action=None, append=None, branch=None, concurrency=None, context=None, contexts=None, + data_file=None, debug=None, directory=None, fail_under=None, @@ -313,6 +342,11 @@ # Include the sub-command for this parser as part of the command. return f"{program_name} {self.cmd}" +# In lists of Opts, keep them alphabetized by the option names as they appear +# on the command line, since these lists determine the order of the options in +# the help output. +# +# In COMMANDS, keep the keys (command names) alphabetized. GLOBAL_ARGS = [ Opts.debug, @@ -320,11 +354,12 @@ Opts.rcfile, ] -CMDS = { +COMMANDS = { 'annotate': CmdOptionParser( "annotate", [ Opts.directory, + Opts.input_datafile, Opts.ignore_errors, Opts.include, Opts.omit, @@ -340,6 +375,7 @@ "combine", [ Opts.append, + Opts.combine_datafile, Opts.keep, Opts.quiet, ] + GLOBAL_ARGS, @@ -364,12 +400,16 @@ "'data' to show a summary of the collected data; " + "'sys' to show installation information; " + "'config' to show the configuration; " + - "'premain' to show what is calling coverage." + "'premain' to show what is calling coverage; " + + "'pybehave' to show internal flags describing Python behavior." ), ), 'erase': CmdOptionParser( - "erase", GLOBAL_ARGS, + "erase", + [ + Opts.combine_datafile + ] + GLOBAL_ARGS, description="Erase previously collected coverage data.", ), @@ -384,6 +424,7 @@ [ Opts.contexts, Opts.directory, + Opts.input_datafile, Opts.fail_under, Opts.ignore_errors, Opts.include, @@ -408,6 +449,7 @@ "json", [ Opts.contexts, + Opts.input_datafile, Opts.fail_under, Opts.ignore_errors, Opts.include, @@ -418,13 +460,29 @@ Opts.show_contexts, ] + GLOBAL_ARGS, usage="[options] [modules]", - description="Generate a JSON report of coverage results." + description="Generate a JSON report of coverage results.", + ), + + 'lcov': CmdOptionParser( + "lcov", + [ + Opts.input_datafile, + Opts.fail_under, + Opts.ignore_errors, + Opts.include, + Opts.output_lcov, + Opts.omit, + Opts.quiet, + ] + GLOBAL_ARGS, + usage="[options] [modules]", + description="Generate an LCOV report of coverage results.", ), 'report': CmdOptionParser( "report", [ Opts.contexts, + Opts.input_datafile, Opts.fail_under, Opts.ignore_errors, Opts.include, @@ -437,7 +495,7 @@ Opts.skip_empty, ] + GLOBAL_ARGS, usage="[options] [modules]", - description="Report coverage statistics on modules." + description="Report coverage statistics on modules.", ), 'run': CmdOptionParser( @@ -447,6 +505,7 @@ Opts.branch, Opts.concurrency, Opts.context, + Opts.output_datafile, Opts.include, Opts.module, Opts.omit, @@ -456,12 +515,13 @@ Opts.timid, ] + GLOBAL_ARGS, usage="[options] <pyfile> [program options]", - description="Run a Python program, measuring code execution." + description="Run a Python program, measuring code execution.", ), 'xml': CmdOptionParser( "xml", [ + Opts.input_datafile, Opts.fail_under, Opts.ignore_errors, Opts.include, @@ -471,7 +531,7 @@ Opts.skip_empty, ] + GLOBAL_ARGS, usage="[options] [modules]", - description="Generate an XML report of coverage results." + description="Generate an XML report of coverage results.", ), } @@ -546,7 +606,7 @@ if self.global_option: parser = GlobalOptionParser() else: - parser = CMDS.get(argv[0]) + parser = COMMANDS.get(argv[0]) if not parser: show_help(f"Unknown command: {argv[0]!r}") return ERR @@ -574,6 +634,7 @@ # Do something. self.coverage = Coverage( + data_file=options.data_file or DEFAULT_DATAFILE, data_suffix=options.parallel_mode, cover_pylib=options.pylib, timid=options.timid, @@ -625,10 +686,10 @@ total = None if options.action == "report": total = self.coverage.report( + precision=options.precision, show_missing=options.show_missing, skip_covered=options.skip_covered, skip_empty=options.skip_empty, - precision=options.precision, sort=options.sort, **report_args ) @@ -637,27 +698,31 @@ elif options.action == "html": total = self.coverage.html_report( directory=options.directory, - title=options.title, + precision=options.precision, skip_covered=options.skip_covered, skip_empty=options.skip_empty, show_contexts=options.show_contexts, - precision=options.precision, + title=options.title, **report_args ) elif options.action == "xml": - outfile = options.outfile total = self.coverage.xml_report( - outfile=outfile, skip_empty=options.skip_empty, + outfile=options.outfile, + skip_empty=options.skip_empty, **report_args ) elif options.action == "json": - outfile = options.outfile total = self.coverage.json_report( - outfile=outfile, + outfile=options.outfile, pretty_print=options.pretty_print, show_contexts=options.show_contexts, **report_args - ) + ) + elif options.action == "lcov": + total = self.coverage.lcov_report( + outfile=options.outfile, + **report_args + ) else: # There are no other possible actions. raise AssertionError @@ -667,6 +732,8 @@ # value, so we can get fail_under from the config file. if options.fail_under is not None: self.coverage.set_option("report:fail_under", options.fail_under) + if options.precision is not None: + self.coverage.set_option("report:precision", options.precision) fail_under = self.coverage.get_option("report:fail_under") precision = self.coverage.get_option("report:precision") @@ -698,7 +765,7 @@ if options.action == "help": if args: for a in args: - parser = CMDS.get(a) + parser = COMMANDS.get(a) if parser: show_help(parser=parser) else: @@ -777,32 +844,28 @@ """Implementation of 'coverage debug'.""" if not args: - show_help("What information would you like: config, data, sys, premain?") + show_help("What information would you like: config, data, sys, premain, pybehave?") return ERR if args[1:]: show_help("Only one topic at a time, please") return ERR - if args[0] == 'sys': - sys_info = self.coverage.sys_info() - print(info_header("sys")) - for line in info_formatter(sys_info): - print(f" {line}") - elif args[0] == 'data': + if args[0] == "sys": + write_formatted_info(print, "sys", self.coverage.sys_info()) + elif args[0] == "data": print(info_header("data")) data_file = self.coverage.config.data_file debug_data_file(data_file) for filename in combinable_files(data_file): print("-----") debug_data_file(filename) - elif args[0] == 'config': - print(info_header("config")) - config_info = sorted(self.coverage.config.__dict__.items()) - for line in info_formatter(config_info): - print(f" {line}") + elif args[0] == "config": + write_formatted_info(print, "config", self.coverage.config.debug_info()) elif args[0] == "premain": print(info_header("premain")) print(short_stack()) + elif args[0] == "pybehave": + write_formatted_info(print, "pybehave", env.debug_info()) else: show_help(f"Don't know what you mean by {args[0]!r}") return ERR @@ -852,6 +915,7 @@ help Get help on using coverage.py. html Create an HTML report. json Create a JSON report of coverage results. + lcov Create an LCOV report of coverage results. report Report coverage stats on modules. run Run a Python program and measure code execution. xml Create an XML report of coverage results.
--- a/eric7/DebugClients/Python/coverage/config.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/config.py Sat Apr 02 11:23:11 2022 +0200 @@ -11,7 +11,7 @@ import re from coverage.exceptions import ConfigError -from coverage.misc import contract, isolate_module, substitute_variables +from coverage.misc import contract, isolate_module, human_sorted_items, substitute_variables from coverage.tomlconfig import TomlConfigParser, TomlDecodeError @@ -227,6 +227,9 @@ self.json_pretty_print = False self.json_show_contexts = False + # Defaults for [lcov] + self.lcov_output = "coverage.lcov" + # Defaults for [paths] self.paths = collections.OrderedDict() @@ -397,6 +400,9 @@ ('json_output', 'json:output'), ('json_pretty_print', 'json:pretty_print', 'boolean'), ('json_show_contexts', 'json:show_contexts', 'boolean'), + + # [lcov] + ('lcov_output', 'lcov:output'), ] def _set_attr_from_config_option(self, cp, attr, where, type_=''): @@ -489,6 +495,12 @@ for k, v in self.paths.items() ) + def debug_info(self): + """Make a list of (name, value) pairs for writing debug info.""" + return human_sorted_items( + (k, v) for k, v in self.__dict__.items() if not k.startswith("_") + ) + def config_files_to_try(config_file): """What config files should we try to read?
--- a/eric7/DebugClients/Python/coverage/control.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/control.py Sat Apr 02 11:23:11 2022 +0200 @@ -9,7 +9,9 @@ import os import os.path import platform +import signal import sys +import threading import time import warnings @@ -26,7 +28,8 @@ from coverage.html import HtmlReporter from coverage.inorout import InOrOut from coverage.jsonreport import JsonReporter -from coverage.misc import bool_or_none, join_regex, human_sorted, human_sorted_items +from coverage.lcovreport import LcovReporter +from coverage.misc import bool_or_none, join_regex, human_sorted from coverage.misc import DefaultValue, ensure_dir_for_file, isolate_module from coverage.plugin import FileReporter from coverage.plugin_support import Plugins @@ -60,7 +63,8 @@ cov.config = original_config -_DEFAULT_DATAFILE = DefaultValue("MISSING") +DEFAULT_DATAFILE = DefaultValue("MISSING") +_DEFAULT_DATAFILE = DEFAULT_DATAFILE # Just in case, for backwards compatibility class Coverage: """Programmatic access to coverage.py. @@ -101,7 +105,7 @@ return None def __init__( - self, data_file=_DEFAULT_DATAFILE, data_suffix=None, cover_pylib=None, + self, data_file=DEFAULT_DATAFILE, data_suffix=None, cover_pylib=None, auto_data=False, timid=None, branch=None, config_file=True, source=None, source_pkgs=None, omit=None, include=None, debug=None, concurrency=None, check_preimported=False, context=None, @@ -198,7 +202,7 @@ # data_file=None means no disk file at all. data_file missing means # use the value from the config file. self._no_disk = data_file is None - if data_file is _DEFAULT_DATAFILE: + if data_file is DEFAULT_DATAFILE: data_file = None self.config = None @@ -227,6 +231,7 @@ self._exclude_re = None self._debug = None self._file_mapper = None + self._old_sigterm = None # State machine variables: # Have we initialized everything? @@ -310,22 +315,25 @@ """Write out debug info at startup if needed.""" wrote_any = False with self._debug.without_callers(): - if self._debug.should('config'): - config_info = human_sorted_items(self.config.__dict__.items()) - config_info = [(k, v) for k, v in config_info if not k.startswith('_')] - write_formatted_info(self._debug, "config", config_info) + if self._debug.should("config"): + config_info = self.config.debug_info() + write_formatted_info(self._debug.write, "config", config_info) wrote_any = True - if self._debug.should('sys'): - write_formatted_info(self._debug, "sys", self.sys_info()) + if self._debug.should("sys"): + write_formatted_info(self._debug.write, "sys", self.sys_info()) for plugin in self._plugins: header = "sys: " + plugin._coverage_plugin_name info = plugin.sys_info() - write_formatted_info(self._debug, header, info) + write_formatted_info(self._debug.write, header, info) + wrote_any = True + + if self._debug.should("pybehave"): + write_formatted_info(self._debug.write, "pybehave", env.debug_info()) wrote_any = True if wrote_any: - write_formatted_info(self._debug, "end", ()) + write_formatted_info(self._debug.write, "end", ()) def _should_trace(self, filename, frame): """Decide whether to trace execution in `filename`. @@ -454,6 +462,8 @@ raise ConfigError( # pragma: only jython "multiprocessing is not supported on this Python" ) + if self.config.config_file is None: + raise ConfigError("multiprocessing requires a configuration file") patch_multiprocessing(rcfile=self.config.config_file) dycon = self.config.dynamic_context @@ -524,7 +534,14 @@ # It's useful to write debug info after initing for start. self._should_write_debug = True + # Register our clean-up handlers. atexit.register(self._atexit) + is_main = (threading.current_thread() == threading.main_thread()) + if is_main and not env.WINDOWS: + # The Python docs seem to imply that SIGTERM works uniformly even + # on Windows, but that's not my experience, and this agrees: + # https://stackoverflow.com/questions/35772001/x/35792192#35792192 + self._old_sigterm = signal.signal(signal.SIGTERM, self._on_sigterm) def _init_data(self, suffix): """Create a data file if we don't have one yet.""" @@ -582,15 +599,23 @@ self._collector.stop() self._started = False - def _atexit(self): + def _atexit(self, event="atexit"): """Clean up on process shutdown.""" if self._debug.should("process"): - self._debug.write(f"atexit: pid: {os.getpid()}, instance: {self!r}") + self._debug.write(f"{event}: pid: {os.getpid()}, instance: {self!r}") if self._started: self.stop() if self._auto_save: self.save() + def _on_sigterm(self, signum_unused, frame_unused): + """A handler for signal.SIGTERM.""" + self._atexit("sigterm") + # Statements after here won't be seen by metacov because we just wrote + # the data, and are about to kill the process. + signal.signal(signal.SIGTERM, self._old_sigterm) # pragma: not covered + os.kill(os.getpid(), signal.SIGTERM) # pragma: not covered + def erase(self): """Erase previously collected coverage data. @@ -1049,6 +1074,25 @@ ): return render_report(self.config.json_output, JsonReporter(self), morfs, self._message) + def lcov_report( + self, morfs=None, outfile=None, ignore_errors=None, + omit=None, include=None, contexts=None, + ): + """Generate an LCOV report of coverage results. + + Each module in 'morfs' is included in the report. 'outfile' is the + path to write the file to, "-" will write to stdout. + + See :meth 'report' for other arguments. + + .. versionadded:: 6.3 + """ + with override_config(self, + ignore_errors=ignore_errors, report_omit=omit, report_include=include, + lcov_output=outfile, report_contexts=contexts, + ): + return render_report(self.config.lcov_output, LcovReporter(self), morfs, self._message) + def sys_info(self): """Return a list of (key, value) pairs showing internal information."""
--- a/eric7/DebugClients/Python/coverage/debug.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/debug.py Sat Apr 02 11:23:11 2022 +0200 @@ -118,7 +118,10 @@ for label, data in info: if data == []: data = "-none-" - if isinstance(data, (list, set, tuple)): + if isinstance(data, tuple) and len(repr(tuple(data))) < 30: + # Convert to tuple to scrub namedtuples. + yield "%*s: %r" % (label_len, label, tuple(data)) + elif isinstance(data, (list, set, tuple)): prefix = "%*s:" % (label_len, label) for e in data: yield "%*s %s" % (label_len+1, prefix, e) @@ -127,11 +130,18 @@ yield "%*s: %s" % (label_len, label, data) -def write_formatted_info(writer, header, info): - """Write a sequence of (label,data) pairs nicely.""" - writer.write(info_header(header)) +def write_formatted_info(write, header, info): + """Write a sequence of (label,data) pairs nicely. + + `write` is a function write(str) that accepts each line of output. + `header` is a string to start the section. `info` is a sequence of + (label, data) pairs, where label is a str, and data can be a single + value, or a list/set/tuple. + + """ + write(info_header(header)) for line in info_formatter(info): - writer.write(" %s" % line) + write(f" {line}") def short_stack(limit=None, skip=0):
--- a/eric7/DebugClients/Python/coverage/disposition.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/disposition.py Sat Apr 02 11:23:11 2022 +0200 @@ -6,7 +6,9 @@ class FileDisposition: """A simple value type for recording what to do with a file.""" - pass + + def __repr__(self): + return f"<FileDisposition {self.canonical_filename!r}: trace={self.trace}>" # FileDisposition "methods": FileDisposition is a pure value object, so it can
--- a/eric7/DebugClients/Python/coverage/doc/CHANGES.rst Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/doc/CHANGES.rst Sat Apr 02 11:23:11 2022 +0200 @@ -9,8 +9,6 @@ different from a strict chronological order when there are two branches in development at the same time, such as 4.5.x and 5.0. -This list is detailed and covers changes in each pre-release version. - .. When updating the "Unreleased" header to a specific version, use this .. format. Don't forget the jump target: .. @@ -19,6 +17,96 @@ .. Version 9.8.1 — 2027-07-27 .. -------------------------- +.. _changes_632: + +Version 6.3.2 — 2022-02-20 +-------------------------- + +- Fix: adapt to pypy3.9's decorator tracing behavior. It now traces function + decorators like CPython 3.8: both the @-line and the def-line are traced. + Fixes `issue 1326`_. + +- Debug: added ``pybehave`` to the list of :ref:`cmd_debug` and + :ref:`cmd_run_debug` options. + +- Fix: show an intelligible error message if ``--concurrency=multiprocessing`` + is used without a configuration file. Closes `issue 1320`_. + +.. _issue 1320: https://github.com/nedbat/coveragepy/issues/1320 +.. _issue 1326: https://github.com/nedbat/coveragepy/issues/1326 + + +.. _changes_631: + +Version 6.3.1 — 2022-02-01 +-------------------------- + +- Fix: deadlocks could occur when terminating processes. Some of these + deadlocks (described in `issue 1310`_) are now fixed. + +- Fix: a signal handler was being set from multiple threads, causing an error: + "ValueError: signal only works in main thread". This is now fixed, closing + `issue 1312`_. + +- Fix: ``--precision`` on the command-line was being ignored while considering + ``--fail-under``. This is now fixed, thanks to + `Marcelo Trylesinski <pull 1317_>`_. + +- Fix: releases no longer provide 3.11.0-alpha wheels. Coverage.py uses CPython + internal fields which are moving during the alpha phase. Fixes `issue 1316`_. + +.. _issue 1310: https://github.com/nedbat/coveragepy/issues/1310 +.. _issue 1312: https://github.com/nedbat/coveragepy/issues/1312 +.. _issue 1316: https://github.com/nedbat/coveragepy/issues/1316 +.. _pull 1317: https://github.com/nedbat/coveragepy/pull/1317 + + +.. _changes_63: + +Version 6.3 — 2022-01-25 +------------------------ + +- Feature: Added the ``lcov`` command to generate reports in LCOV format. + Thanks, `Bradley Burns <pull 1289_>`_. Closes issues `587 <issue 587_>`_ + and `626 <issue 626_>`_. + +- Feature: the coverage data file can now be specified on the command line with + the ``--data-file`` option in any command that reads or writes data. This is + in addition to the existing ``COVERAGE_FILE`` environment variable. Closes + `issue 624`_. Thanks, `Nikita Bloshchanevich <pull 1304_>`_. + +- Feature: coverage measurement data will now be written when a SIGTERM signal + is received by the process. This includes + :meth:`Process.terminate <python:multiprocessing.Process.terminate>`, + and other ways to terminate a process. Currently this is only on Linux and + Mac; Windows is not supported. Fixes `issue 1307`_. + +- Dropped support for Python 3.6, which reached end-of-life on 2021-12-23. + +- Updated Python 3.11 support to 3.11.0a4, fixing `issue 1294`_. + +- Fix: the coverage data file is now created in a more robust way, to avoid + problems when multiple processes are trying to write data at once. Fixes + issues `1303 <issue 1303_>`_ and `883 <issue 883_>`_. + +- Fix: a .gitignore file will only be written into the HTML report output + directory if the directory is empty. This should prevent certain unfortunate + accidents of writing the file where it is not wanted. + +- Releases now have MacOS arm64 wheels for Apple Silicon, fixing `issue 1288`_. + +.. _issue 587: https://github.com/nedbat/coveragepy/issues/587 +.. _issue 624: https://github.com/nedbat/coveragepy/issues/624 +.. _issue 626: https://github.com/nedbat/coveragepy/issues/626 +.. _issue 883: https://github.com/nedbat/coveragepy/issues/883 +.. _issue 1288: https://github.com/nedbat/coveragepy/issues/1288 +.. _issue 1294: https://github.com/nedbat/coveragepy/issues/1294 +.. _issue 1303: https://github.com/nedbat/coveragepy/issues/1303 +.. _issue 1307: https://github.com/nedbat/coveragepy/issues/1307 +.. _pull 1289: https://github.com/nedbat/coveragepy/pull/1289 +.. _pull 1304: https://github.com/nedbat/coveragepy/pull/1304 + + .. _changes_62: Version 6.2 — 2021-11-26 @@ -48,16 +136,16 @@ multiprocessing wouldn't suppress the data file suffix (`issue 989`_). This is now fixed. -- Debug: The `coverage debug data` command will now sniff out combinable data +- Debug: The ``coverage debug data`` command will now sniff out combinable data files, and report on all of them. -- Debug: The `coverage debug` command used to accept a number of topics at a +- Debug: The ``coverage debug`` command used to accept a number of topics at a time, and show all of them, though this was never documented. This no longer works, to allow for command-line options in the future. .. _issue 989: https://github.com/nedbat/coveragepy/issues/989 .. _issue 1012: https://github.com/nedbat/coveragepy/issues/1012 -.. _issue 1082: https://github.com/nedbat/coveragepy/issues/1802 +.. _issue 1082: https://github.com/nedbat/coveragepy/issues/1082 .. _issue 1203: https://github.com/nedbat/coveragepy/issues/1203
--- a/eric7/DebugClients/Python/coverage/doc/CONTRIBUTORS.txt Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/doc/CONTRIBUTORS.txt Sat Apr 02 11:23:11 2022 +0200 @@ -24,6 +24,7 @@ Ben Finney Bernát Gábor Bill Hart +Bradley Burns Brandon Rhodes Brett Cannon Bruno P. Kinoshita @@ -95,6 +96,7 @@ Lex Berezhny Loïc Dachary Marc Abramowitz +Marcelo Trylesinski Marcus Cobden Marius Gedminas Mark van der Wal @@ -108,6 +110,7 @@ Mike Fiedler Naveen Yadav Nathan Land +Nikita Bloshchanevich Nils Kattenbeck Noel O'Boyle Olivier Grisel
--- a/eric7/DebugClients/Python/coverage/doc/README.rst Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/doc/README.rst Sat Apr 02 11:23:11 2022 +0200 @@ -8,7 +8,7 @@ Code coverage testing for Python. | |license| |versions| |status| -| |test-status| |quality-status| |docs| |codecov| +| |test-status| |quality-status| |docs| |metacov| | |kit| |downloads| |format| |repos| | |stars| |forks| |contributors| | |tidelift| |twitter-coveragepy| |twitter-nedbat| @@ -19,8 +19,10 @@ Coverage.py runs on these versions of Python: -* CPython 3.6 through 3.11. -* PyPy3 7.3.7. +.. PYVERSIONS + +* CPython 3.7 through 3.11.0a4. +* PyPy3 7.3.8. Documentation is on `Read the Docs`_. Code repository and issue tracker are on `GitHub`_. @@ -29,8 +31,9 @@ .. _GitHub: https://github.com/nedbat/coveragepy -**New in 6.x:** dropped support for Python 2.7 and 3.5; added support for 3.10 -match/case statements. +**New in 6.x:** dropped support for Python 2.7, 3.5, and 3.6; +write data on SIGTERM; +added support for 3.10 match/case statements. For Enterprise @@ -121,9 +124,9 @@ .. |license| image:: https://img.shields.io/pypi/l/coverage.svg :target: https://pypi.org/project/coverage/ :alt: License -.. |codecov| image:: https://codecov.io/github/nedbat/coveragepy/coverage.svg?branch=master&precision=2 - :target: https://codecov.io/github/nedbat/coveragepy?branch=master - :alt: Coverage! +.. |metacov| image:: https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/nedbat/8c6980f77988a327348f9b02bbaf67f5/raw/metacov.json + :target: https://nedbat.github.io/coverage-reports/latest.html + :alt: Coverage reports .. |repos| image:: https://repology.org/badge/tiny-repos/python:coverage.svg :target: https://repology.org/project/python:coverage/versions :alt: Packaging status
--- a/eric7/DebugClients/Python/coverage/env.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/env.py Sat Apr 02 11:23:11 2022 +0200 @@ -39,36 +39,26 @@ else: optimize_if_debug = not pep626 - # Is "if not __debug__" optimized away? - optimize_if_not_debug = (not PYPY) and (PYVERSION >= (3, 7, 0, 'alpha', 4)) + # Is "if not __debug__" optimized away? The exact details have changed + # across versions. if pep626: - optimize_if_not_debug = False - if PYPY: - optimize_if_not_debug = True - - # Is "if not __debug__" optimized away even better? - optimize_if_not_debug2 = (not PYPY) and (PYVERSION >= (3, 8, 0, 'beta', 1)) - if pep626: - optimize_if_not_debug2 = False - - # Yet another way to optimize "if not __debug__"? - optimize_if_not_debug3 = (PYPY and PYVERSION >= (3, 8)) + optimize_if_not_debug = 1 + elif PYPY: + if PYVERSION >= (3, 9): + optimize_if_not_debug = 2 + elif PYVERSION[:2] == (3, 8): + optimize_if_not_debug = 3 + else: + optimize_if_not_debug = 1 + else: + if PYVERSION >= (3, 8, 0, 'beta', 1): + optimize_if_not_debug = 2 + else: + optimize_if_not_debug = 1 # Can co_lnotab have negative deltas? negative_lnotab = not (PYPY and PYPYVERSION < (7, 2)) - # Do .pyc files conform to PEP 552? Hash-based pyc's. - hashed_pyc_pep552 = (PYVERSION >= (3, 7, 0, 'alpha', 4)) - - # Python 3.7.0b3 changed the behavior of the sys.path[0] entry for -m. It - # used to be an empty string (meaning the current directory). It changed - # to be the actual path to the current directory, so that os.chdir wouldn't - # affect the outcome. - actual_syspath0_dash_m = ( - (CPYTHON and (PYVERSION >= (3, 7, 0, 'beta', 3))) or - (PYPY and (PYPYVERSION >= (7, 3, 4))) - ) - # 3.7 changed how functions with only docstrings are numbered. docstring_only_function = (not PYPY) and ((3, 7, 0, 'beta', 5) <= PYVERSION <= (3, 10)) @@ -81,13 +71,21 @@ # When a function is decorated, does the trace function get called for the # @-line and also the def-line (new behavior in 3.8)? Or just the @-line # (old behavior)? - trace_decorated_def = (CPYTHON and PYVERSION >= (3, 8)) + trace_decorated_def = (CPYTHON and PYVERSION >= (3, 8)) or (PYPY and PYVERSION >= (3, 9)) + + # Functions are no longer claimed to start at their earliest decorator even though + # the decorators are traced? + def_ast_no_decorator = (PYPY and PYVERSION >= (3, 9)) + + # CPython 3.11 now jumps to the decorator line again while executing + # the decorator. + trace_decorator_line_again = (CPYTHON and PYVERSION > (3, 11, 0, 'alpha', 3, 0)) # Are while-true loops optimized into absolute jumps with no loop setup? nix_while_true = (PYVERSION >= (3, 8)) - # Python 3.9a1 made sys.argv[0] and other reported files absolute paths. - report_absolute_files = (PYVERSION >= (3, 9)) + # CPython 3.9a1 made sys.argv[0] and other reported files absolute paths. + report_absolute_files = (CPYTHON and PYVERSION >= (3, 9)) # Lines after break/continue/return/raise are no longer compiled into the # bytecode. They used to be marked as missing, now they aren't executable. @@ -129,4 +127,22 @@ # Environment COVERAGE_NO_CONTRACTS=1 can turn off contracts while debugging # tests to remove noise from stack traces. # $set_env.py: COVERAGE_NO_CONTRACTS - Disable PyContracts to simplify stack traces. -USE_CONTRACTS = TESTING and not bool(int(os.environ.get("COVERAGE_NO_CONTRACTS", 0))) +USE_CONTRACTS = ( + TESTING + and not bool(int(os.environ.get("COVERAGE_NO_CONTRACTS", 0))) + and (PYVERSION < (3, 11)) +) + +def debug_info(): + """Return a list of (name, value) pairs for printing debug information.""" + info = [ + (name, value) for name, value in globals().items() + if not name.startswith("_") and + name not in {"PYBEHAVIOR", "debug_info"} and + not isinstance(value, type(os)) + ] + info += [ + (name, value) for name, value in PYBEHAVIOR.__dict__.items() + if not name.startswith("_") + ] + return sorted(info)
--- a/eric7/DebugClients/Python/coverage/execfile.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/execfile.py Sat Apr 02 11:23:11 2022 +0200 @@ -80,10 +80,7 @@ This needs to happen before any importing, and without importing anything. """ if self.as_module: - if env.PYBEHAVIOR.actual_syspath0_dash_m: - path0 = os.getcwd() - else: - path0 = "" + path0 = os.getcwd() elif os.path.isdir(self.arg0): # Running a directory means running the __main__.py file in that # directory. @@ -295,18 +292,14 @@ if magic != PYC_MAGIC_NUMBER: raise NoCode(f"Bad magic number in .pyc file: {magic!r} != {PYC_MAGIC_NUMBER!r}") - date_based = True - if env.PYBEHAVIOR.hashed_pyc_pep552: - flags = struct.unpack('<L', fpyc.read(4))[0] - hash_based = flags & 0x01 - if hash_based: - fpyc.read(8) # Skip the hash. - date_based = False - if date_based: + flags = struct.unpack('<L', fpyc.read(4))[0] + hash_based = flags & 0x01 + if hash_based: + fpyc.read(8) # Skip the hash. + else: # Skip the junk in the header that we don't need. - fpyc.read(4) # Skip the moddate. - # 3.3 added another long to the header (size), skip it. - fpyc.read(4) + fpyc.read(4) # Skip the moddate. + fpyc.read(4) # Skip the size. # The rest of the file is the code object we want. code = marshal.load(fpyc)
--- a/eric7/DebugClients/Python/coverage/files.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/files.py Sat Apr 02 11:23:11 2022 +0200 @@ -145,13 +145,7 @@ @contract(returns='unicode') def abs_file(path): """Return the absolute normalized form of `path`.""" - try: - path = os.path.realpath(path) - except UnicodeError: - pass - path = os.path.abspath(path) - path = actual_path(path) - return path + return actual_path(os.path.abspath(os.path.realpath(path))) def python_reported_file(filename):
--- a/eric7/DebugClients/Python/coverage/html.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/html.py Sat Apr 02 11:23:11 2022 +0200 @@ -164,6 +164,7 @@ self.incr = IncrementalChecker(self.directory) self.datagen = HtmlDataGeneration(self.coverage) self.totals = Numbers(precision=self.config.precision) + self.directory_was_empty = False self.template_globals = { # Functions available in the templates. @@ -224,11 +225,11 @@ for static in self.STATIC_FILES: shutil.copyfile(data_filename(static), os.path.join(self.directory, static)) + # Only write the .gitignore file if the directory was originally empty. # .gitignore can't be copied from the source tree because it would # prevent the static files from being checked in. - gitigore_path = os.path.join(self.directory, ".gitignore") - if not os.path.exists(gitigore_path): - with open(gitigore_path, "w") as fgi: + if self.directory_was_empty: + with open(os.path.join(self.directory, ".gitignore"), "w") as fgi: fgi.write("# Created by coverage.py\n*\n") # The user may have extra CSS they want copied. @@ -240,6 +241,8 @@ rootname = flat_rootname(fr.relative_filename()) html_filename = rootname + ".html" ensure_dir(self.directory) + if not os.listdir(self.directory): + self.directory_was_empty = True html_path = os.path.join(self.directory, html_filename) # Get the numbers for this file.
--- a/eric7/DebugClients/Python/coverage/inorout.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/inorout.py Sat Apr 02 11:23:11 2022 +0200 @@ -124,8 +124,7 @@ pass else: if spec is not None: - if spec.origin != "namespace": - filename = spec.origin + filename = spec.origin path = list(spec.submodule_search_locations or ()) return filename, path
--- a/eric7/DebugClients/Python/coverage/jsonreport.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/jsonreport.py Sat Apr 02 11:23:11 2022 +0200 @@ -2,6 +2,7 @@ # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt """Json reporting for coverage.py""" + import datetime import json import sys @@ -27,7 +28,7 @@ `morfs` is a list of modules or file names. - `outfile` is a file object to write the json to + `outfile` is a file object to write the json to. """ outfile = outfile or sys.stdout @@ -75,7 +76,7 @@ return self.total.n_statements and self.total.pc_covered def report_one_file(self, coverage_data, analysis): - """Extract the relevant report data for a single file""" + """Extract the relevant report data for a single file.""" nums = analysis.numbers self.total += nums summary = {
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/DebugClients/Python/coverage/lcovreport.py Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,106 @@ +# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 +# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt + +"""LCOV reporting for coverage.py.""" + +import sys +import base64 +from hashlib import md5 + +from coverage.report import get_analysis_to_report + + +class LcovReporter: + """A reporter for writing LCOV coverage reports.""" + + report_type = "LCOV report" + + def __init__(self, coverage): + self.coverage = coverage + self.config = self.coverage.config + + def report(self, morfs, outfile=None): + """Renders the full lcov report. + + 'morfs' is a list of modules or filenames + + outfile is the file object to write the file into. + """ + + self.coverage.get_data() + outfile = outfile or sys.stdout + + for fr, analysis in get_analysis_to_report(self.coverage, morfs): + self.get_lcov(fr, analysis, outfile) + + def get_lcov(self, fr, analysis, outfile=None): + """Produces the lcov data for a single file. + + This currently supports both line and branch coverage, + however function coverage is not supported. + """ + outfile.write("TN:\n") + outfile.write(f"SF:{fr.relative_filename()}\n") + source_lines = fr.source().splitlines() + + for covered in sorted(analysis.executed): + # Note: Coverage.py currently only supports checking *if* a line + # has been executed, not how many times, so we set this to 1 for + # nice output even if it's technically incorrect. + + # The lines below calculate a 64-bit encoded md5 hash of the line + # corresponding to the DA lines in the lcov file, for either case + # of the line being covered or missed in coverage.py. The final two + # characters of the encoding ("==") are removed from the hash to + # allow genhtml to run on the resulting lcov file. + if source_lines: + line = source_lines[covered-1].encode("utf-8") + else: + line = b"" + hashed = base64.b64encode(md5(line).digest()).decode().rstrip("=") + outfile.write(f"DA:{covered},1,{hashed}\n") + + for missed in sorted(analysis.missing): + assert source_lines + line = source_lines[missed-1].encode("utf-8") + hashed = base64.b64encode(md5(line).digest()).decode().rstrip("=") + outfile.write(f"DA:{missed},0,{hashed}\n") + + outfile.write(f"LF:{len(analysis.statements)}\n") + outfile.write(f"LH:{len(analysis.executed)}\n") + + # More information dense branch coverage data. + missing_arcs = analysis.missing_branch_arcs() + executed_arcs = analysis.executed_branch_arcs() + for block_number, block_line_number in enumerate( + sorted(analysis.branch_stats().keys()) + ): + for branch_number, line_number in enumerate( + sorted(missing_arcs[block_line_number]) + ): + # The exit branches have a negative line number, + # this will not produce valid lcov. Setting + # the line number of the exit branch to 0 will allow + # for valid lcov, while preserving the data. + line_number = max(line_number, 0) + outfile.write(f"BRDA:{line_number},{block_number},{branch_number},-\n") + + # The start value below allows for the block number to be + # preserved between these two for loops (stopping the loop from + # resetting the value of the block number to 0). + for branch_number, line_number in enumerate( + sorted(executed_arcs[block_line_number]), + start=len(missing_arcs[block_line_number]), + ): + line_number = max(line_number, 0) + outfile.write(f"BRDA:{line_number},{block_number},{branch_number},1\n") + + # Summary of the branch coverage. + if analysis.has_arcs(): + branch_stats = analysis.branch_stats() + brf = sum(t for t, k in branch_stats.values()) + brh = brf - sum(t - k for t, k in branch_stats.values()) + outfile.write(f"BRF:{brf}\n") + outfile.write(f"BRH:{brh}\n") + + outfile.write("end_of_record\n")
--- a/eric7/DebugClients/Python/coverage/multiproc.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/multiproc.py Sat Apr 02 11:23:11 2022 +0200 @@ -27,7 +27,7 @@ """Wrapper around _bootstrap to start coverage.""" try: from coverage import Coverage # avoid circular import - cov = Coverage(data_suffix=True) + cov = Coverage(data_suffix=True, auto_data=True) cov._warn_preimported_source = False cov.start() debug = cov._debug
--- a/eric7/DebugClients/Python/coverage/parser.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/parser.py Sat Apr 02 11:23:11 2022 +0200 @@ -644,7 +644,7 @@ self.missing_arc_fragments = collections.defaultdict(list) self.block_stack = [] - # $set_env.py: COVERAGE_TRACK_ARCS - Trace every arc added while parsing code. + # $set_env.py: COVERAGE_TRACK_ARCS - Trace possible arcs added while parsing code. self.debug = bool(int(os.environ.get("COVERAGE_TRACK_ARCS", 0))) def analyze(self): @@ -664,8 +664,8 @@ def add_arc(self, start, end, smsg=None, emsg=None): """Add an arc, including message fragments to use if it is missing.""" if self.debug: # pragma: debugging - print(f"\nAdding arc: ({start}, {end}): {smsg!r}, {emsg!r}") - print(short_stack(limit=6)) + print(f"\nAdding possible arc: ({start}, {end}): {smsg!r}, {emsg!r}") + print(short_stack(limit=10)) self.arcs.add((start, end)) if smsg is not None or emsg is not None: @@ -692,7 +692,7 @@ def _line_decorated(self, node): """Compute first line number for things that can be decorated (classes and functions).""" lineno = node.lineno - if env.PYBEHAVIOR.trace_decorated_def: + if env.PYBEHAVIOR.trace_decorated_def or env.PYBEHAVIOR.def_ast_no_decorator: if node.decorator_list: lineno = node.decorator_list[0].lineno return lineno @@ -944,10 +944,11 @@ def _handle_decorated(self, node): """Add arcs for things that can be decorated (classes and functions).""" main_line = last = node.lineno - if node.decorator_list: - if env.PYBEHAVIOR.trace_decorated_def: + decs = node.decorator_list + if decs: + if env.PYBEHAVIOR.trace_decorated_def or env.PYBEHAVIOR.def_ast_no_decorator: last = None - for dec_node in node.decorator_list: + for dec_node in decs: dec_start = self.line_for_node(dec_node) if last is not None and dec_start != last: self.add_arc(last, dec_start) @@ -955,6 +956,11 @@ if env.PYBEHAVIOR.trace_decorated_def: self.add_arc(last, main_line) last = main_line + if env.PYBEHAVIOR.trace_decorator_line_again: + for top, bot in zip(decs, decs[1:]): + self.add_arc(self.line_for_node(bot), self.line_for_node(top)) + self.add_arc(self.line_for_node(decs[0]), main_line) + self.add_arc(main_line, self.line_for_node(decs[-1])) # The definition line may have been missed, but we should have it # in `self.statements`. For some constructs, `line_for_node` is # not what we'd think of as the first line in the statement, so map
--- a/eric7/DebugClients/Python/coverage/pytracer.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/pytracer.py Sat Apr 02 11:23:11 2022 +0200 @@ -10,14 +10,18 @@ from coverage import env # We need the YIELD_VALUE opcode below, in a comparison-friendly form. -YIELD_VALUE = dis.opmap['YIELD_VALUE'] +RESUME = dis.opmap.get('RESUME') +RETURN_VALUE = dis.opmap['RETURN_VALUE'] +if RESUME is None: + YIELD_VALUE = dis.opmap['YIELD_VALUE'] + YIELD_FROM = dis.opmap['YIELD_FROM'] + YIELD_FROM_OFFSET = 0 if env.PYPY else 2 # When running meta-coverage, this file can try to trace itself, which confuses # everything. Don't trace ourselves. THIS_FILE = __file__.rstrip("co") - class PyTracer: """Python implementation of the raw data tracer.""" @@ -64,7 +68,7 @@ atexit.register(setattr, self, 'in_atexit', True) def __repr__(self): - return "<PyTracer at {}: {} lines in {} files>".format( + return "<PyTracer at 0x{:x}: {} lines in {} files>".format( id(self), sum(len(v) for v in self.data.values()), len(self.data), @@ -78,13 +82,13 @@ id(self), len(self.data_stack), )) - if 0: + if 0: # if you want thread ids.. f.write(".{:x}.{:x}".format( self.thread.ident, self.threading.current_thread().ident, )) f.write(" {}".format(" ".join(map(str, args)))) - if 0: + if 0: # if you want callers.. f.write(" | ") stack = " / ".join( (fname or "???").rpartition("/")[-1] @@ -132,8 +136,7 @@ else: self.started_context = False - # Entering a new frame. Decide if we should trace - # in this file. + # Entering a new frame. Decide if we should trace in this file. self._activity = True self.data_stack.append( ( @@ -160,7 +163,14 @@ # function calls and re-entering generators. The f_lasti field is # -1 for calls, and a real offset for generators. Use <0 as the # line number for calls, and the real line number for generators. - if getattr(frame, 'f_lasti', -1) < 0: + if RESUME is not None: + # The current opcode is guaranteed to be RESUME. The argument + # determines what kind of resume it is. + oparg = frame.f_code.co_code[frame.f_lasti + 1] + real_call = (oparg == 0) + else: + real_call = (getattr(frame, 'f_lasti', -1) < 0) + if real_call: self.last_line = -frame.f_code.co_firstlineno else: self.last_line = frame.f_lineno @@ -178,9 +188,27 @@ if self.trace_arcs and self.cur_file_data: # Record an arc leaving the function, but beware that a # "return" event might just mean yielding from a generator. - # Jython seems to have an empty co_code, so just assume return. code = frame.f_code.co_code - if (not code) or code[frame.f_lasti] != YIELD_VALUE: + lasti = frame.f_lasti + if RESUME is not None: + if len(code) == lasti + 2: + # A return from the end of a code object is a real return. + real_return = True + else: + # it's a real return. + real_return = (code[lasti + 2] != RESUME) + else: + if code[lasti] == RETURN_VALUE: + real_return = True + elif code[lasti] == YIELD_VALUE: + real_return = False + elif len(code) <= lasti + YIELD_FROM_OFFSET: + real_return = True + elif code[lasti + YIELD_FROM_OFFSET] == YIELD_FROM: + real_return = False + else: + real_return = True + if real_return: first = frame.f_code.co_firstlineno self.cur_file_data.add((self.last_line, -first)) # Leaving this function, pop the filename stack. @@ -238,8 +266,10 @@ # has changed to None. dont_warn = (env.PYPY and env.PYPYVERSION >= (5, 4) and self.in_atexit and tf is None) if (not dont_warn) and tf != self._trace: # pylint: disable=comparison-with-callable - msg = f"Trace function changed, measurement is likely wrong: {tf!r}" - self.warn(msg, slug="trace-changed") + self.warn( + f"Trace function changed, data is likely wrong: {tf!r} != {self._trace!r}", + slug="trace-changed", + ) def activity(self): """Has there been any activity?"""
--- a/eric7/DebugClients/Python/coverage/results.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/results.py Sat Apr 02 11:23:11 2022 +0200 @@ -136,6 +136,21 @@ mba[l1].append(l2) return mba + @contract(returns='dict(int: list(int))') + def executed_branch_arcs(self): + """Return arcs that were executed from branch lines. + + Returns {l1:[l2a,l2b,...], ...} + + """ + executed = self.arcs_executed() + branch_lines = set(self._branch_lines()) + eba = collections.defaultdict(list) + for l1, l2 in executed: + if l1 in branch_lines: + eba[l1].append(l2) + return eba + @contract(returns='dict(int: tuple(int, int))') def branch_stats(self): """Get stats about branches.
--- a/eric7/DebugClients/Python/coverage/sqldata.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/sqldata.py Sat Apr 02 11:23:11 2022 +0200 @@ -215,7 +215,7 @@ self._dbs = {} self._pid = os.getpid() # Synchronize the operations used during collection. - self._lock = threading.Lock() + self._lock = threading.RLock() # Are we in sync with the data file? self._have_used = False @@ -231,7 +231,11 @@ """A decorator for methods that should hold self._lock.""" @functools.wraps(method) def _wrapped(self, *args, **kwargs): + if self._debug.should("lock"): + self._debug.write(f"Locking {self._lock!r} for {method.__name__}") with self._lock: + if self._debug.should("lock"): + self._debug.write(f"Locked {self._lock!r} for {method.__name__}") # pylint: disable=not-callable return method(self, *args, **kwargs) return _wrapped @@ -256,26 +260,6 @@ self._have_used = False self._current_context_id = None - def _create_db(self): - """Create a db file that doesn't exist yet. - - Initializes the schema and certain metadata. - """ - if self._debug.should("dataio"): - self._debug.write(f"Creating data file {self._filename!r}") - self._dbs[threading.get_ident()] = db = SqliteDb(self._filename, self._debug) - with db: - db.executescript(SCHEMA) - db.execute("insert into coverage_schema (version) values (?)", (SCHEMA_VERSION,)) - db.executemany( - "insert into meta (key, value) values (?, ?)", - [ - ("sys_argv", str(getattr(sys, "argv", None))), - ("version", __version__), - ("when", datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")), - ] - ) - def _open_db(self): """Open an existing db file, and read its metadata.""" if self._debug.should("dataio"): @@ -289,11 +273,14 @@ try: schema_version, = db.execute_one("select version from coverage_schema") except Exception as exc: - raise DataError( - "Data file {!r} doesn't seem to be a coverage data file: {}".format( - self._filename, exc - ) - ) from exc + if "no such table: coverage_schema" in str(exc): + self._init_db(db) + else: + raise DataError( + "Data file {!r} doesn't seem to be a coverage data file: {}".format( + self._filename, exc + ) + ) from exc else: if schema_version != SCHEMA_VERSION: raise DataError( @@ -309,13 +296,25 @@ for path, file_id in db.execute("select path, id from file"): self._file_map[path] = file_id + def _init_db(self, db): + """Write the initial contents of the database.""" + if self._debug.should("dataio"): + self._debug.write(f"Initing data file {self._filename!r}") + db.executescript(SCHEMA) + db.execute("insert into coverage_schema (version) values (?)", (SCHEMA_VERSION,)) + db.executemany( + "insert or ignore into meta (key, value) values (?, ?)", + [ + ("sys_argv", str(getattr(sys, "argv", None))), + ("version", __version__), + ("when", datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")), + ] + ) + def _connect(self): """Get the SqliteDb object to use.""" if threading.get_ident() not in self._dbs: - if os.path.exists(self._filename): - self._open_db() - else: - self._create_db() + self._open_db() return self._dbs[threading.get_ident()] def __bool__(self): @@ -349,7 +348,8 @@ if self._debug.should("dataio"): self._debug.write(f"Dumping data from data file {self._filename!r}") with self._connect() as con: - return b"z" + zlib.compress(con.dump().encode("utf-8")) + script = con.dump() + return b"z" + zlib.compress(script.encode("utf-8")) @contract(data="bytes") def loads(self, data): @@ -501,6 +501,9 @@ self._set_context_id() for filename, arcs in arc_data.items(): file_id = self._file_id(filename, add=True) + from coverage import env + if env.PYVERSION == (3, 11, 0, "alpha", 4, 0): + arcs = [(a, b) for a, b in arcs if a is not None and b is not None] data = [(file_id, self._current_context_id, fromno, tono) for fromno, tono in arcs] con.executemany( "insert or ignore into arc " + @@ -513,15 +516,19 @@ assert lines or arcs assert not (lines and arcs) if lines and self._has_arcs: + if self._debug.should("dataop"): + self._debug.write("Error: Can't add line measurements to existing branch data") raise DataError("Can't add line measurements to existing branch data") if arcs and self._has_lines: + if self._debug.should("dataop"): + self._debug.write("Error: Can't add branch measurements to existing line data") raise DataError("Can't add branch measurements to existing line data") if not self._has_arcs and not self._has_lines: self._has_lines = lines self._has_arcs = arcs with self._connect() as con: con.execute( - "insert into meta (key, value) values (?, ?)", + "insert or ignore into meta (key, value) values (?, ?)", ("has_arcs", str(int(arcs))) )
--- a/eric7/DebugClients/Python/coverage/version.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/DebugClients/Python/coverage/version.py Sat Apr 02 11:23:11 2022 +0200 @@ -5,7 +5,7 @@ # This file is exec'ed in setup.py, don't import anything! # Same semantics as sys.version_info. -version_info = (6, 2, 0, "final", 0) +version_info = (6, 3, 2, "final", 0) def _make_version(major, minor, micro, releaselevel, serial):
--- a/eric7/Documentation/Help/source.qhp Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Documentation/Help/source.qhp Sat Apr 02 11:23:11 2022 +0200 @@ -297,9 +297,12 @@ <section title="eric7.PipInterface.PipDialog" ref="eric7.PipInterface.PipDialog.html" /> <section title="eric7.PipInterface.PipFileSelectionDialog" ref="eric7.PipInterface.PipFileSelectionDialog.html" /> <section title="eric7.PipInterface.PipFreezeDialog" ref="eric7.PipInterface.PipFreezeDialog.html" /> + <section title="eric7.PipInterface.PipLicensesDialog" ref="eric7.PipInterface.PipLicensesDialog.html" /> <section title="eric7.PipInterface.PipPackageDetailsDialog" ref="eric7.PipInterface.PipPackageDetailsDialog.html" /> <section title="eric7.PipInterface.PipPackagesInputDialog" ref="eric7.PipInterface.PipPackagesInputDialog.html" /> <section title="eric7.PipInterface.PipPackagesWidget" ref="eric7.PipInterface.PipPackagesWidget.html" /> + <section title="eric7.PipInterface.PipVulnerabilityChecker" ref="eric7.PipInterface.PipVulnerabilityChecker.html" /> + <section title="eric7.PipInterface.piplicenses" ref="eric7.PipInterface.piplicenses.html" /> </section> <section title="eric7.PluginManager" ref="index-eric7.PluginManager.html"> <section title="eric7.PluginManager.PluginDetailsDialog" ref="eric7.PluginManager.PluginDetailsDialog.html" /> @@ -1091,6 +1094,8 @@ <section title="eric7.UI.SplashScreen" ref="eric7.UI.SplashScreen.html" /> <section title="eric7.UI.SymbolsWidget" ref="eric7.UI.SymbolsWidget.html" /> <section title="eric7.UI.UserInterface" ref="eric7.UI.UserInterface.html" /> + <section title="eric7.UI.VersionsDialog" ref="eric7.UI.VersionsDialog.html" /> + <section title="eric7.UI.upgrader" ref="eric7.UI.upgrader.html" /> </section> <section title="eric7.Utilities" ref="index-eric7.Utilities.html"> <section title="eric7.Utilities.ClassBrowsers" ref="index-eric7.Utilities.ClassBrowsers.html"> @@ -1435,6 +1440,7 @@ <section title="create_windows_links" ref="create_windows_links.html" /> <section title="install" ref="install.html" /> <section title="install-debugclients" ref="install-debugclients.html" /> + <section title="install-dependencies" ref="install-dependencies.html" /> <section title="install-i18n" ref="install-i18n.html" /> <section title="setup" ref="setup.html" /> <section title="uninstall" ref="uninstall.html" /> @@ -2876,6 +2882,9 @@ <keyword name="CompareWindow" id="CompareWindow" ref="eric7.UI.CompareDialog.html#CompareWindow" /> <keyword name="CompareWindow (Constructor)" id="CompareWindow (Constructor)" ref="eric7.UI.CompareDialog.html#CompareWindow.__init__" /> <keyword name="CompareWindow.eventFilter" id="CompareWindow.eventFilter" ref="eric7.UI.CompareDialog.html#CompareWindow.eventFilter" /> + <keyword name="CompatibleArgumentParser" id="CompatibleArgumentParser" ref="eric7.PipInterface.piplicenses.html#CompatibleArgumentParser" /> + <keyword name="CompatibleArgumentParser._verify_args" id="CompatibleArgumentParser._verify_args" ref="eric7.PipInterface.piplicenses.html#CompatibleArgumentParser._verify_args" /> + <keyword name="CompatibleArgumentParser.parse_args" id="CompatibleArgumentParser.parse_args" ref="eric7.PipInterface.piplicenses.html#CompatibleArgumentParser.parse_args" /> <keyword name="Completer" id="Completer" ref="eric7.DebugClients.Python.FlexCompleter.html#Completer" /> <keyword name="Completer (Constructor)" id="Completer (Constructor)" ref="eric7.DebugClients.Python.FlexCompleter.html#Completer.__init__" /> <keyword name="Completer._callable_postfix" id="Completer._callable_postfix" ref="eric7.DebugClients.Python.FlexCompleter.html#Completer._callable_postfix" /> @@ -3259,6 +3268,12 @@ <keyword name="CreateDialogCodeDialog.on_classNameCombo_activated" id="CreateDialogCodeDialog.on_classNameCombo_activated" ref="eric7.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.on_classNameCombo_activated" /> <keyword name="CreateDialogCodeDialog.on_filterEdit_textChanged" id="CreateDialogCodeDialog.on_filterEdit_textChanged" ref="eric7.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.on_filterEdit_textChanged" /> <keyword name="CreateDialogCodeDialog.on_newButton_clicked" id="CreateDialogCodeDialog.on_newButton_clicked" ref="eric7.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.on_newButton_clicked" /> + <keyword name="CustomHelpFormatter" id="CustomHelpFormatter" ref="eric7.PipInterface.piplicenses.html#CustomHelpFormatter" /> + <keyword name="CustomHelpFormatter (Constructor)" id="CustomHelpFormatter (Constructor)" ref="eric7.PipInterface.piplicenses.html#CustomHelpFormatter.__init__" /> + <keyword name="CustomHelpFormatter._expand_help" id="CustomHelpFormatter._expand_help" ref="eric7.PipInterface.piplicenses.html#CustomHelpFormatter._expand_help" /> + <keyword name="CustomHelpFormatter._format_action" id="CustomHelpFormatter._format_action" ref="eric7.PipInterface.piplicenses.html#CustomHelpFormatter._format_action" /> + <keyword name="CustomHelpFormatter._split_lines" id="CustomHelpFormatter._split_lines" ref="eric7.PipInterface.piplicenses.html#CustomHelpFormatter._split_lines" /> + <keyword name="CustomNamespace" id="CustomNamespace" ref="eric7.PipInterface.piplicenses.html#CustomNamespace" /> <keyword name="DCTestResult" id="DCTestResult" ref="eric7.DebugClients.Python.DCTestResult.html#DCTestResult" /> <keyword name="DCTestResult (Constructor)" id="DCTestResult (Constructor)" ref="eric7.DebugClients.Python.DCTestResult.html#DCTestResult.__init__" /> <keyword name="DCTestResult (Module)" id="DCTestResult (Module)" ref="eric7.DebugClients.Python.DCTestResult.html" /> @@ -6088,6 +6103,7 @@ <keyword name="FrameScroller.setScrollDivider" id="FrameScroller.setScrollDivider" ref="eric7.WebBrowser.AutoScroll.FrameScroller.html#FrameScroller.setScrollDivider" /> <keyword name="FrameScroller.startScrolling" id="FrameScroller.startScrolling" ref="eric7.WebBrowser.AutoScroll.FrameScroller.html#FrameScroller.startScrolling" /> <keyword name="FrameScroller.stopScrolling" id="FrameScroller.stopScrolling" ref="eric7.WebBrowser.AutoScroll.FrameScroller.html#FrameScroller.stopScrolling" /> + <keyword name="FromArg" id="FromArg" ref="eric7.PipInterface.piplicenses.html#FromArg" /> <keyword name="FtpDirLineParser" id="FtpDirLineParser" ref="eric7.Utilities.FtpUtilities.html#FtpDirLineParser" /> <keyword name="FtpDirLineParser (Constructor)" id="FtpDirLineParser (Constructor)" ref="eric7.Utilities.FtpUtilities.html#FtpDirLineParser.__init__" /> <keyword name="FtpDirLineParser.__ignoreLine" id="FtpDirLineParser.__ignoreLine" ref="eric7.Utilities.FtpUtilities.html#FtpDirLineParser.__ignoreLine" /> @@ -10922,6 +10938,8 @@ <keyword name="NewPythonPackageDialog (Module)" id="NewPythonPackageDialog (Module)" ref="eric7.Project.NewPythonPackageDialog.html" /> <keyword name="NewPythonPackageDialog.getData" id="NewPythonPackageDialog.getData" ref="eric7.Project.NewPythonPackageDialog.html#NewPythonPackageDialog.getData" /> <keyword name="NewPythonPackageDialog.on_packageEdit_textChanged" id="NewPythonPackageDialog.on_packageEdit_textChanged" ref="eric7.Project.NewPythonPackageDialog.html#NewPythonPackageDialog.on_packageEdit_textChanged" /> + <keyword name="NoValueEnum" id="NoValueEnum" ref="eric7.PipInterface.piplicenses.html#NoValueEnum" /> + <keyword name="NoValueEnum.__repr__" id="NoValueEnum.__repr__" ref="eric7.PipInterface.piplicenses.html#NoValueEnum.__repr__" /> <keyword name="NodeTypeEnum" id="NodeTypeEnum" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Imports.ImportsEnums.html#NodeTypeEnum" /> <keyword name="NoneSplashScreen" id="NoneSplashScreen" ref="eric7.UI.SplashScreen.html#NoneSplashScreen" /> <keyword name="NoneSplashScreen (Constructor)" id="NoneSplashScreen (Constructor)" ref="eric7.UI.SplashScreen.html#NoneSplashScreen.__init__" /> @@ -11121,6 +11139,7 @@ <keyword name="OperaImporter.importedBookmarks" id="OperaImporter.importedBookmarks" ref="eric7.WebBrowser.Bookmarks.BookmarksImporters.OperaImporter.html#OperaImporter.importedBookmarks" /> <keyword name="OperaImporter.open" id="OperaImporter.open" ref="eric7.WebBrowser.Bookmarks.BookmarksImporters.OperaImporter.html#OperaImporter.open" /> <keyword name="OperaImporter.setPath" id="OperaImporter.setPath" ref="eric7.WebBrowser.Bookmarks.BookmarksImporters.OperaImporter.html#OperaImporter.setPath" /> + <keyword name="OrderArg" id="OrderArg" ref="eric7.PipInterface.piplicenses.html#OrderArg" /> <keyword name="PDFObjectTracker" id="PDFObjectTracker" ref="eric7.QScintilla.Exporters.ExporterPDF.html#PDFObjectTracker" /> <keyword name="PDFObjectTracker (Constructor)" id="PDFObjectTracker (Constructor)" ref="eric7.QScintilla.Exporters.ExporterPDF.html#PDFObjectTracker.__init__" /> <keyword name="PDFObjectTracker.add" id="PDFObjectTracker.add" ref="eric7.QScintilla.Exporters.ExporterPDF.html#PDFObjectTracker.add" /> @@ -11139,6 +11158,7 @@ <keyword name="PDFRender.startPage" id="PDFRender.startPage" ref="eric7.QScintilla.Exporters.ExporterPDF.html#PDFRender.startPage" /> <keyword name="PDFStyle" id="PDFStyle" ref="eric7.QScintilla.Exporters.ExporterPDF.html#PDFStyle" /> <keyword name="PDFStyle (Constructor)" id="PDFStyle (Constructor)" ref="eric7.QScintilla.Exporters.ExporterPDF.html#PDFStyle.__init__" /> + <keyword name="Package" id="Package" ref="eric7.PipInterface.PipVulnerabilityChecker.html#Package" /> <keyword name="PackageDiagramBuilder" id="PackageDiagramBuilder" ref="eric7.Graphics.PackageDiagramBuilder.html#PackageDiagramBuilder" /> <keyword name="PackageDiagramBuilder (Constructor)" id="PackageDiagramBuilder (Constructor)" ref="eric7.Graphics.PackageDiagramBuilder.html#PackageDiagramBuilder.__init__" /> <keyword name="PackageDiagramBuilder (Module)" id="PackageDiagramBuilder (Module)" ref="eric7.Graphics.PackageDiagramBuilder.html" /> @@ -11316,22 +11336,30 @@ <keyword name="Pip" id="Pip" ref="eric7.PipInterface.Pip.html#Pip" /> <keyword name="Pip (Constructor)" id="Pip (Constructor)" ref="eric7.PipInterface.Pip.html#Pip.__init__" /> <keyword name="Pip (Module)" id="Pip (Module)" ref="eric7.PipInterface.Pip.html" /> + <keyword name="Pip.__checkUpgradeEric" id="Pip.__checkUpgradeEric" ref="eric7.PipInterface.Pip.html#Pip.__checkUpgradeEric" /> <keyword name="Pip.__checkUpgradePyQt" id="Pip.__checkUpgradePyQt" ref="eric7.PipInterface.Pip.html#Pip.__checkUpgradePyQt" /> <keyword name="Pip.cacheList" id="Pip.cacheList" ref="eric7.PipInterface.Pip.html#Pip.cacheList" /> <keyword name="Pip.cachePurge" id="Pip.cachePurge" ref="eric7.PipInterface.Pip.html#Pip.cachePurge" /> <keyword name="Pip.cacheRemove" id="Pip.cacheRemove" ref="eric7.PipInterface.Pip.html#Pip.cacheRemove" /> + <keyword name="Pip.checkPackageOutdated" id="Pip.checkPackageOutdated" ref="eric7.PipInterface.Pip.html#Pip.checkPackageOutdated" /> + <keyword name="Pip.getDependecyTree" id="Pip.getDependecyTree" ref="eric7.PipInterface.Pip.html#Pip.getDependecyTree" /> + <keyword name="Pip.getFrozenPackages" id="Pip.getFrozenPackages" ref="eric7.PipInterface.Pip.html#Pip.getFrozenPackages" /> <keyword name="Pip.getIndexUrl" id="Pip.getIndexUrl" ref="eric7.PipInterface.Pip.html#Pip.getIndexUrl" /> <keyword name="Pip.getIndexUrlPypi" id="Pip.getIndexUrlPypi" ref="eric7.PipInterface.Pip.html#Pip.getIndexUrlPypi" /> <keyword name="Pip.getIndexUrlSearch" id="Pip.getIndexUrlSearch" ref="eric7.PipInterface.Pip.html#Pip.getIndexUrlSearch" /> <keyword name="Pip.getInstalledPackages" id="Pip.getInstalledPackages" ref="eric7.PipInterface.Pip.html#Pip.getInstalledPackages" /> + <keyword name="Pip.getLicenses" id="Pip.getLicenses" ref="eric7.PipInterface.Pip.html#Pip.getLicenses" /> + <keyword name="Pip.getLicensesSummary" id="Pip.getLicensesSummary" ref="eric7.PipInterface.Pip.html#Pip.getLicensesSummary" /> <keyword name="Pip.getNetworkAccessManager" id="Pip.getNetworkAccessManager" ref="eric7.PipInterface.Pip.html#Pip.getNetworkAccessManager" /> <keyword name="Pip.getOutdatedPackages" id="Pip.getOutdatedPackages" ref="eric7.PipInterface.Pip.html#Pip.getOutdatedPackages" /> <keyword name="Pip.getPackageDetails" id="Pip.getPackageDetails" ref="eric7.PipInterface.Pip.html#Pip.getPackageDetails" /> + <keyword name="Pip.getPackageVersions" id="Pip.getPackageVersions" ref="eric7.PipInterface.Pip.html#Pip.getPackageVersions" /> <keyword name="Pip.getProjectEnvironmentString" id="Pip.getProjectEnvironmentString" ref="eric7.PipInterface.Pip.html#Pip.getProjectEnvironmentString" /> <keyword name="Pip.getUserConfig" id="Pip.getUserConfig" ref="eric7.PipInterface.Pip.html#Pip.getUserConfig" /> <keyword name="Pip.getVirtualenvConfig" id="Pip.getVirtualenvConfig" ref="eric7.PipInterface.Pip.html#Pip.getVirtualenvConfig" /> <keyword name="Pip.getVirtualenvInterpreter" id="Pip.getVirtualenvInterpreter" ref="eric7.PipInterface.Pip.html#Pip.getVirtualenvInterpreter" /> <keyword name="Pip.getVirtualenvNames" id="Pip.getVirtualenvNames" ref="eric7.PipInterface.Pip.html#Pip.getVirtualenvNames" /> + <keyword name="Pip.getVulnerabilityChecker" id="Pip.getVulnerabilityChecker" ref="eric7.PipInterface.Pip.html#Pip.getVulnerabilityChecker" /> <keyword name="Pip.installPackages" id="Pip.installPackages" ref="eric7.PipInterface.Pip.html#Pip.installPackages" /> <keyword name="Pip.installPip" id="Pip.installPip" ref="eric7.PipInterface.Pip.html#Pip.installPip" /> <keyword name="Pip.installRequirements" id="Pip.installRequirements" ref="eric7.PipInterface.Pip.html#Pip.installRequirements" /> @@ -11376,8 +11404,13 @@ <keyword name="PipFreezeDialog.on_requirementsFilePicker_textChanged" id="PipFreezeDialog.on_requirementsFilePicker_textChanged" ref="eric7.PipInterface.PipFreezeDialog.html#PipFreezeDialog.on_requirementsFilePicker_textChanged" /> <keyword name="PipFreezeDialog.on_saveButton_clicked" id="PipFreezeDialog.on_saveButton_clicked" ref="eric7.PipInterface.PipFreezeDialog.html#PipFreezeDialog.on_saveButton_clicked" /> <keyword name="PipFreezeDialog.on_saveToButton_clicked" id="PipFreezeDialog.on_saveToButton_clicked" ref="eric7.PipInterface.PipFreezeDialog.html#PipFreezeDialog.on_saveToButton_clicked" /> + <keyword name="PipFreezeDialog.on_userCheckBox_clicked" id="PipFreezeDialog.on_userCheckBox_clicked" ref="eric7.PipInterface.PipFreezeDialog.html#PipFreezeDialog.on_userCheckBox_clicked" /> <keyword name="PipFreezeDialog.start" id="PipFreezeDialog.start" ref="eric7.PipInterface.PipFreezeDialog.html#PipFreezeDialog.start" /> <keyword name="PipInterface (Package)" id="PipInterface (Package)" ref="index-eric7.PipInterface.html" /> + <keyword name="PipLicensesDialog" id="PipLicensesDialog" ref="eric7.PipInterface.PipLicensesDialog.html#PipLicensesDialog" /> + <keyword name="PipLicensesDialog (Constructor)" id="PipLicensesDialog (Constructor)" ref="eric7.PipInterface.PipLicensesDialog.html#PipLicensesDialog.__init__" /> + <keyword name="PipLicensesDialog (Module)" id="PipLicensesDialog (Module)" ref="eric7.PipInterface.PipLicensesDialog.html" /> + <keyword name="PipLicensesDialog.__refreshLicenses" id="PipLicensesDialog.__refreshLicenses" ref="eric7.PipInterface.PipLicensesDialog.html#PipLicensesDialog.__refreshLicenses" /> <keyword name="PipPackageDetailsDialog" id="PipPackageDetailsDialog" ref="eric7.PipInterface.PipPackageDetailsDialog.html#PipPackageDetailsDialog" /> <keyword name="PipPackageDetailsDialog (Constructor)" id="PipPackageDetailsDialog (Constructor)" ref="eric7.PipInterface.PipPackageDetailsDialog.html#PipPackageDetailsDialog.__init__" /> <keyword name="PipPackageDetailsDialog (Module)" id="PipPackageDetailsDialog (Module)" ref="eric7.PipInterface.PipPackageDetailsDialog.html" /> @@ -11397,8 +11430,10 @@ <keyword name="PipPackagesWidget (Constructor)" id="PipPackagesWidget (Constructor)" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__init__" /> <keyword name="PipPackagesWidget (Module)" id="PipPackagesWidget (Module)" ref="eric7.PipInterface.PipPackagesWidget.html" /> <keyword name="PipPackagesWidget.__aboutToShowPipMenu" id="PipPackagesWidget.__aboutToShowPipMenu" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__aboutToShowPipMenu" /> + <keyword name="PipPackagesWidget.__addDependency" id="PipPackagesWidget.__addDependency" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__addDependency" /> <keyword name="PipPackagesWidget.__allUpdateableItems" id="PipPackagesWidget.__allUpdateableItems" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__allUpdateableItems" /> <keyword name="PipPackagesWidget.__availablePipVersion" id="PipPackagesWidget.__availablePipVersion" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__availablePipVersion" /> + <keyword name="PipPackagesWidget.__clearVulnerabilityInfo" id="PipPackagesWidget.__clearVulnerabilityInfo" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__clearVulnerabilityInfo" /> <keyword name="PipPackagesWidget.__editConfiguration" id="PipPackagesWidget.__editConfiguration" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__editConfiguration" /> <keyword name="PipPackagesWidget.__editUserConfiguration" id="PipPackagesWidget.__editUserConfiguration" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__editUserConfiguration" /> <keyword name="PipPackagesWidget.__editVirtualenvConfiguration" id="PipPackagesWidget.__editVirtualenvConfiguration" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__editVirtualenvConfiguration" /> @@ -11414,52 +11449,84 @@ <keyword name="PipPackagesWidget.__pipConfigure" id="PipPackagesWidget.__pipConfigure" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__pipConfigure" /> <keyword name="PipPackagesWidget.__populateEnvironments" id="PipPackagesWidget.__populateEnvironments" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__populateEnvironments" /> <keyword name="PipPackagesWidget.__projectClosed" id="PipPackagesWidget.__projectClosed" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__projectClosed" /> + <keyword name="PipPackagesWidget.__projectOpened" id="PipPackagesWidget.__projectOpened" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__projectOpened" /> <keyword name="PipPackagesWidget.__purgeCache" id="PipPackagesWidget.__purgeCache" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__purgeCache" /> + <keyword name="PipPackagesWidget.__refreshDependencyTree" id="PipPackagesWidget.__refreshDependencyTree" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__refreshDependencyTree" /> <keyword name="PipPackagesWidget.__refreshPackagesList" id="PipPackagesWidget.__refreshPackagesList" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__refreshPackagesList" /> <keyword name="PipPackagesWidget.__reinstallPackages" id="PipPackagesWidget.__reinstallPackages" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__reinstallPackages" /> <keyword name="PipPackagesWidget.__removeCachedFiles" id="PipPackagesWidget.__removeCachedFiles" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__removeCachedFiles" /> <keyword name="PipPackagesWidget.__repairPip" id="PipPackagesWidget.__repairPip" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__repairPip" /> <keyword name="PipPackagesWidget.__search" id="PipPackagesWidget.__search" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__search" /> + <keyword name="PipPackagesWidget.__searchFirst" id="PipPackagesWidget.__searchFirst" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__searchFirst" /> <keyword name="PipPackagesWidget.__searchResponse" id="PipPackagesWidget.__searchResponse" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__searchResponse" /> <keyword name="PipPackagesWidget.__selectedUpdateableItems" id="PipPackagesWidget.__selectedUpdateableItems" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__selectedUpdateableItems" /> <keyword name="PipPackagesWidget.__showCacheInfo" id="PipPackagesWidget.__showCacheInfo" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__showCacheInfo" /> <keyword name="PipPackagesWidget.__showCacheList" id="PipPackagesWidget.__showCacheList" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__showCacheList" /> + <keyword name="PipPackagesWidget.__showLicensesDialog" id="PipPackagesWidget.__showLicensesDialog" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__showLicensesDialog" /> <keyword name="PipPackagesWidget.__showPackageDetails" id="PipPackagesWidget.__showPackageDetails" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__showPackageDetails" /> + <keyword name="PipPackagesWidget.__showPackageInformation" id="PipPackagesWidget.__showPackageInformation" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__showPackageInformation" /> <keyword name="PipPackagesWidget.__showSearchedDetails" id="PipPackagesWidget.__showSearchedDetails" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__showSearchedDetails" /> + <keyword name="PipPackagesWidget.__showVulnerabilityInformation" id="PipPackagesWidget.__showVulnerabilityInformation" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__showVulnerabilityInformation" /> <keyword name="PipPackagesWidget.__uninstallRequirements" id="PipPackagesWidget.__uninstallRequirements" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__uninstallRequirements" /> <keyword name="PipPackagesWidget.__updateActionButtons" id="PipPackagesWidget.__updateActionButtons" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__updateActionButtons" /> + <keyword name="PipPackagesWidget.__updateDepActionButtons" id="PipPackagesWidget.__updateDepActionButtons" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__updateDepActionButtons" /> <keyword name="PipPackagesWidget.__updateSearchActionButtons" id="PipPackagesWidget.__updateSearchActionButtons" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__updateSearchActionButtons" /> <keyword name="PipPackagesWidget.__updateSearchButton" id="PipPackagesWidget.__updateSearchButton" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__updateSearchButton" /> + <keyword name="PipPackagesWidget.__updateSearchMoreButton" id="PipPackagesWidget.__updateSearchMoreButton" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__updateSearchMoreButton" /> + <keyword name="PipPackagesWidget.__updateVulnerabilityData" id="PipPackagesWidget.__updateVulnerabilityData" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__updateVulnerabilityData" /> + <keyword name="PipPackagesWidget.__updateVulnerabilityDbCache" id="PipPackagesWidget.__updateVulnerabilityDbCache" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.__updateVulnerabilityDbCache" /> <keyword name="PipPackagesWidget.executeInstallPackages" id="PipPackagesWidget.executeInstallPackages" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.executeInstallPackages" /> <keyword name="PipPackagesWidget.executeUninstallPackages" id="PipPackagesWidget.executeUninstallPackages" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.executeUninstallPackages" /> <keyword name="PipPackagesWidget.executeUpgradePackages" id="PipPackagesWidget.executeUpgradePackages" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.executeUpgradePackages" /> <keyword name="PipPackagesWidget.getPip" id="PipPackagesWidget.getPip" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.getPip" /> - <keyword name="PipPackagesWidget.on_environmentsComboBox_currentIndexChanged" id="PipPackagesWidget.on_environmentsComboBox_currentIndexChanged" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_environmentsComboBox_currentIndexChanged" /> + <keyword name="PipPackagesWidget.on_dependenciesList_itemActivated" id="PipPackagesWidget.on_dependenciesList_itemActivated" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_dependenciesList_itemActivated" /> + <keyword name="PipPackagesWidget.on_dependenciesList_itemPressed" id="PipPackagesWidget.on_dependenciesList_itemPressed" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_dependenciesList_itemPressed" /> + <keyword name="PipPackagesWidget.on_dependenciesList_itemSelectionChanged" id="PipPackagesWidget.on_dependenciesList_itemSelectionChanged" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_dependenciesList_itemSelectionChanged" /> + <keyword name="PipPackagesWidget.on_environmentsComboBox_currentTextChanged" id="PipPackagesWidget.on_environmentsComboBox_currentTextChanged" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_environmentsComboBox_currentTextChanged" /> <keyword name="PipPackagesWidget.on_installButton_clicked" id="PipPackagesWidget.on_installButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_installButton_clicked" /> <keyword name="PipPackagesWidget.on_installUserSiteButton_clicked" id="PipPackagesWidget.on_installUserSiteButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_installUserSiteButton_clicked" /> <keyword name="PipPackagesWidget.on_installedFilesCheckBox_clicked" id="PipPackagesWidget.on_installedFilesCheckBox_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_installedFilesCheckBox_clicked" /> <keyword name="PipPackagesWidget.on_localCheckBox_clicked" id="PipPackagesWidget.on_localCheckBox_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_localCheckBox_clicked" /> + <keyword name="PipPackagesWidget.on_localDepCheckBox_clicked" id="PipPackagesWidget.on_localDepCheckBox_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_localDepCheckBox_clicked" /> <keyword name="PipPackagesWidget.on_notRequiredCheckBox_clicked" id="PipPackagesWidget.on_notRequiredCheckBox_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_notRequiredCheckBox_clicked" /> <keyword name="PipPackagesWidget.on_packagesList_itemActivated" id="PipPackagesWidget.on_packagesList_itemActivated" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_packagesList_itemActivated" /> + <keyword name="PipPackagesWidget.on_packagesList_itemPressed" id="PipPackagesWidget.on_packagesList_itemPressed" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_packagesList_itemPressed" /> <keyword name="PipPackagesWidget.on_packagesList_itemSelectionChanged" id="PipPackagesWidget.on_packagesList_itemSelectionChanged" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_packagesList_itemSelectionChanged" /> <keyword name="PipPackagesWidget.on_refreshButton_clicked" id="PipPackagesWidget.on_refreshButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_refreshButton_clicked" /> + <keyword name="PipPackagesWidget.on_refreshDependenciesButton_clicked" id="PipPackagesWidget.on_refreshDependenciesButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_refreshDependenciesButton_clicked" /> + <keyword name="PipPackagesWidget.on_requiresButton_toggled" id="PipPackagesWidget.on_requiresButton_toggled" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_requiresButton_toggled" /> <keyword name="PipPackagesWidget.on_searchButton_clicked" id="PipPackagesWidget.on_searchButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_searchButton_clicked" /> <keyword name="PipPackagesWidget.on_searchEditName_returnPressed" id="PipPackagesWidget.on_searchEditName_returnPressed" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_searchEditName_returnPressed" /> <keyword name="PipPackagesWidget.on_searchEditName_textChanged" id="PipPackagesWidget.on_searchEditName_textChanged" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_searchEditName_textChanged" /> + <keyword name="PipPackagesWidget.on_searchMoreButton_clicked" id="PipPackagesWidget.on_searchMoreButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_searchMoreButton_clicked" /> <keyword name="PipPackagesWidget.on_searchResultList_itemActivated" id="PipPackagesWidget.on_searchResultList_itemActivated" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_searchResultList_itemActivated" /> <keyword name="PipPackagesWidget.on_searchResultList_itemSelectionChanged" id="PipPackagesWidget.on_searchResultList_itemSelectionChanged" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_searchResultList_itemSelectionChanged" /> <keyword name="PipPackagesWidget.on_searchToggleButton_toggled" id="PipPackagesWidget.on_searchToggleButton_toggled" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_searchToggleButton_toggled" /> + <keyword name="PipPackagesWidget.on_showDepPackageDetailsButton_clicked" id="PipPackagesWidget.on_showDepPackageDetailsButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_showDepPackageDetailsButton_clicked" /> <keyword name="PipPackagesWidget.on_showDetailsButton_clicked" id="PipPackagesWidget.on_showDetailsButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_showDetailsButton_clicked" /> <keyword name="PipPackagesWidget.on_showPackageDetailsButton_clicked" id="PipPackagesWidget.on_showPackageDetailsButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_showPackageDetailsButton_clicked" /> <keyword name="PipPackagesWidget.on_uninstallButton_clicked" id="PipPackagesWidget.on_uninstallButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_uninstallButton_clicked" /> <keyword name="PipPackagesWidget.on_upgradeAllButton_clicked" id="PipPackagesWidget.on_upgradeAllButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_upgradeAllButton_clicked" /> <keyword name="PipPackagesWidget.on_upgradeButton_clicked" id="PipPackagesWidget.on_upgradeButton_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_upgradeButton_clicked" /> <keyword name="PipPackagesWidget.on_userCheckBox_clicked" id="PipPackagesWidget.on_userCheckBox_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_userCheckBox_clicked" /> + <keyword name="PipPackagesWidget.on_userDepCheckBox_clicked" id="PipPackagesWidget.on_userDepCheckBox_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_userDepCheckBox_clicked" /> <keyword name="PipPackagesWidget.on_verboseCheckBox_clicked" id="PipPackagesWidget.on_verboseCheckBox_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_verboseCheckBox_clicked" /> + <keyword name="PipPackagesWidget.on_viewToggleButton_toggled" id="PipPackagesWidget.on_viewToggleButton_toggled" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_viewToggleButton_toggled" /> + <keyword name="PipPackagesWidget.on_vulnerabilityCheckBox_clicked" id="PipPackagesWidget.on_vulnerabilityCheckBox_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_vulnerabilityCheckBox_clicked" /> <keyword name="PipPage" id="PipPage" ref="eric7.Preferences.ConfigurationPages.PipPage.html#PipPage" /> <keyword name="PipPage (Constructor)" id="PipPage (Constructor)" ref="eric7.Preferences.ConfigurationPages.PipPage.html#PipPage.__init__" /> <keyword name="PipPage (Module)" id="PipPage (Module)" ref="eric7.Preferences.ConfigurationPages.PipPage.html" /> <keyword name="PipPage.save" id="PipPage.save" ref="eric7.Preferences.ConfigurationPages.PipPage.html#PipPage.save" /> + <keyword name="PipVulnerabilityChecker" id="PipVulnerabilityChecker" ref="eric7.PipInterface.PipVulnerabilityChecker.html#PipVulnerabilityChecker" /> + <keyword name="PipVulnerabilityChecker (Constructor)" id="PipVulnerabilityChecker (Constructor)" ref="eric7.PipInterface.PipVulnerabilityChecker.html#PipVulnerabilityChecker.__init__" /> + <keyword name="PipVulnerabilityChecker (Module)" id="PipVulnerabilityChecker (Module)" ref="eric7.PipInterface.PipVulnerabilityChecker.html" /> + <keyword name="PipVulnerabilityChecker.__createCacheFile" id="PipVulnerabilityChecker.__createCacheFile" ref="eric7.PipInterface.PipVulnerabilityChecker.html#PipVulnerabilityChecker.__createCacheFile" /> + <keyword name="PipVulnerabilityChecker.__fetchVulnerabilityDatabase" id="PipVulnerabilityChecker.__fetchVulnerabilityDatabase" ref="eric7.PipInterface.PipVulnerabilityChecker.html#PipVulnerabilityChecker.__fetchVulnerabilityDatabase" /> + <keyword name="PipVulnerabilityChecker.__getDataFromCache" id="PipVulnerabilityChecker.__getDataFromCache" ref="eric7.PipInterface.PipVulnerabilityChecker.html#PipVulnerabilityChecker.__getDataFromCache" /> + <keyword name="PipVulnerabilityChecker.__getVulnerabilities" id="PipVulnerabilityChecker.__getVulnerabilities" ref="eric7.PipInterface.PipVulnerabilityChecker.html#PipVulnerabilityChecker.__getVulnerabilities" /> + <keyword name="PipVulnerabilityChecker.__writeDataToCache" id="PipVulnerabilityChecker.__writeDataToCache" ref="eric7.PipInterface.PipVulnerabilityChecker.html#PipVulnerabilityChecker.__writeDataToCache" /> + <keyword name="PipVulnerabilityChecker.check" id="PipVulnerabilityChecker.check" ref="eric7.PipInterface.PipVulnerabilityChecker.html#PipVulnerabilityChecker.check" /> + <keyword name="PipVulnerabilityChecker.updateVulnerabilityDb" id="PipVulnerabilityChecker.updateVulnerabilityDb" ref="eric7.PipInterface.PipVulnerabilityChecker.html#PipVulnerabilityChecker.updateVulnerabilityDb" /> <keyword name="PixmapCache" id="PixmapCache" ref="eric7.UI.PixmapCache.html#PixmapCache" /> <keyword name="PixmapCache (Constructor)" id="PixmapCache (Constructor)" ref="eric7.UI.PixmapCache.html#PixmapCache.__init__" /> <keyword name="PixmapCache (Module)" id="PixmapCache (Module)" ref="eric7.UI.PixmapCache.html" /> @@ -13479,6 +13546,8 @@ <keyword name="SecurityPage.save" id="SecurityPage.save" ref="eric7.Preferences.ConfigurationPages.SecurityPage.html#SecurityPage.save" /> <keyword name="SecurityPage.setMode" id="SecurityPage.setMode" ref="eric7.Preferences.ConfigurationPages.SecurityPage.html#SecurityPage.setMode" /> <keyword name="SecurityUtils (Module)" id="SecurityUtils (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Security.SecurityUtils.html" /> + <keyword name="SelectAction" id="SelectAction" ref="eric7.PipInterface.piplicenses.html#SelectAction" /> + <keyword name="SelectAction.__call__" id="SelectAction.__call__" ref="eric7.PipInterface.piplicenses.html#SelectAction.__call__" /> <keyword name="SendRefererWhitelistDialog" id="SendRefererWhitelistDialog" ref="eric7.WebBrowser.Network.SendRefererWhitelistDialog.html#SendRefererWhitelistDialog" /> <keyword name="SendRefererWhitelistDialog (Constructor)" id="SendRefererWhitelistDialog (Constructor)" ref="eric7.WebBrowser.Network.SendRefererWhitelistDialog.html#SendRefererWhitelistDialog.__init__" /> <keyword name="SendRefererWhitelistDialog (Module)" id="SendRefererWhitelistDialog (Module)" ref="eric7.WebBrowser.Network.SendRefererWhitelistDialog.html" /> @@ -16335,6 +16404,7 @@ <keyword name="UserInterface.__openHexEditor" id="UserInterface.__openHexEditor" ref="eric7.UI.UserInterface.html#UserInterface.__openHexEditor" /> <keyword name="UserInterface.__openMiniEditor" id="UserInterface.__openMiniEditor" ref="eric7.UI.UserInterface.html#UserInterface.__openMiniEditor" /> <keyword name="UserInterface.__openOnStartup" id="UserInterface.__openOnStartup" ref="eric7.UI.UserInterface.html#UserInterface.__openOnStartup" /> + <keyword name="UserInterface.__performUpgrade" id="UserInterface.__performUpgrade" ref="eric7.UI.UserInterface.html#UserInterface.__performUpgrade" /> <keyword name="UserInterface.__pluginInstallFinished" id="UserInterface.__pluginInstallFinished" ref="eric7.UI.UserInterface.html#UserInterface.__pluginInstallFinished" /> <keyword name="UserInterface.__pluginsConfigure" id="UserInterface.__pluginsConfigure" ref="eric7.UI.UserInterface.html#UserInterface.__pluginsConfigure" /> <keyword name="UserInterface.__populateToolbarsMenu" id="UserInterface.__populateToolbarsMenu" ref="eric7.UI.UserInterface.html#UserInterface.__populateToolbarsMenu" /> @@ -16357,7 +16427,6 @@ <keyword name="UserInterface.__setEditProfile" id="UserInterface.__setEditProfile" ref="eric7.UI.UserInterface.html#UserInterface.__setEditProfile" /> <keyword name="UserInterface.__setWindowCaption" id="UserInterface.__setWindowCaption" ref="eric7.UI.UserInterface.html#UserInterface.__setWindowCaption" /> <keyword name="UserInterface.__setupDockWindow" id="UserInterface.__setupDockWindow" ref="eric7.UI.UserInterface.html#UserInterface.__setupDockWindow" /> - <keyword name="UserInterface.__showAvailableVersionInfos" id="UserInterface.__showAvailableVersionInfos" ref="eric7.UI.UserInterface.html#UserInterface.__showAvailableVersionInfos" /> <keyword name="UserInterface.__showCertificatesDialog" id="UserInterface.__showCertificatesDialog" ref="eric7.UI.UserInterface.html#UserInterface.__showCertificatesDialog" /> <keyword name="UserInterface.__showEricDoc" id="UserInterface.__showEricDoc" ref="eric7.UI.UserInterface.html#UserInterface.__showEricDoc" /> <keyword name="UserInterface.__showErrorLog" id="UserInterface.__showErrorLog" ref="eric7.UI.UserInterface.html#UserInterface.__showErrorLog" /> @@ -16414,11 +16483,7 @@ <keyword name="UserInterface.__unittestScript" id="UserInterface.__unittestScript" ref="eric7.UI.UserInterface.html#UserInterface.__unittestScript" /> <keyword name="UserInterface.__unittestStopped" id="UserInterface.__unittestStopped" ref="eric7.UI.UserInterface.html#UserInterface.__unittestStopped" /> <keyword name="UserInterface.__updateExternalToolsActions" id="UserInterface.__updateExternalToolsActions" ref="eric7.UI.UserInterface.html#UserInterface.__updateExternalToolsActions" /> - <keyword name="UserInterface.__updateVersionsUrls" id="UserInterface.__updateVersionsUrls" ref="eric7.UI.UserInterface.html#UserInterface.__updateVersionsUrls" /> - <keyword name="UserInterface.__versionCheckResult" id="UserInterface.__versionCheckResult" ref="eric7.UI.UserInterface.html#UserInterface.__versionCheckResult" /> <keyword name="UserInterface.__versionToTuple" id="UserInterface.__versionToTuple" ref="eric7.UI.UserInterface.html#UserInterface.__versionToTuple" /> - <keyword name="UserInterface.__versionsDownloadCanceled" id="UserInterface.__versionsDownloadCanceled" ref="eric7.UI.UserInterface.html#UserInterface.__versionsDownloadCanceled" /> - <keyword name="UserInterface.__versionsDownloadDone" id="UserInterface.__versionsDownloadDone" ref="eric7.UI.UserInterface.html#UserInterface.__versionsDownloadDone" /> <keyword name="UserInterface.__webBrowser" id="UserInterface.__webBrowser" ref="eric7.UI.UserInterface.html#UserInterface.__webBrowser" /> <keyword name="UserInterface.__webBrowserFinished" id="UserInterface.__webBrowserFinished" ref="eric7.UI.UserInterface.html#UserInterface.__webBrowserFinished" /> <keyword name="UserInterface.__webBrowserShutdown" id="UserInterface.__webBrowserShutdown" ref="eric7.UI.UserInterface.html#UserInterface.__webBrowserShutdown" /> @@ -16470,7 +16535,6 @@ <keyword name="UserInterface.removeSideWidget" id="UserInterface.removeSideWidget" ref="eric7.UI.UserInterface.html#UserInterface.removeSideWidget" /> <keyword name="UserInterface.reregisterToolbar" id="UserInterface.reregisterToolbar" ref="eric7.UI.UserInterface.html#UserInterface.reregisterToolbar" /> <keyword name="UserInterface.setDebugProfile" id="UserInterface.setDebugProfile" ref="eric7.UI.UserInterface.html#UserInterface.setDebugProfile" /> - <keyword name="UserInterface.showAvailableVersionsInfo" id="UserInterface.showAvailableVersionsInfo" ref="eric7.UI.UserInterface.html#UserInterface.showAvailableVersionsInfo" /> <keyword name="UserInterface.showEmailDialog" id="UserInterface.showEmailDialog" ref="eric7.UI.UserInterface.html#UserInterface.showEmailDialog" /> <keyword name="UserInterface.showEvent" id="UserInterface.showEvent" ref="eric7.UI.UserInterface.html#UserInterface.showEvent" /> <keyword name="UserInterface.showFindFileByNameDialog" id="UserInterface.showFindFileByNameDialog" ref="eric7.UI.UserInterface.html#UserInterface.showFindFileByNameDialog" /> @@ -16482,6 +16546,9 @@ <keyword name="UserInterface.showReplaceFilesWidget" id="UserInterface.showReplaceFilesWidget" ref="eric7.UI.UserInterface.html#UserInterface.showReplaceFilesWidget" /> <keyword name="UserInterface.showSideWidget" id="UserInterface.showSideWidget" ref="eric7.UI.UserInterface.html#UserInterface.showSideWidget" /> <keyword name="UserInterface.unregisterToolbar" id="UserInterface.unregisterToolbar" ref="eric7.UI.UserInterface.html#UserInterface.unregisterToolbar" /> + <keyword name="UserInterface.upgradeEric" id="UserInterface.upgradeEric" ref="eric7.UI.UserInterface.html#UserInterface.upgradeEric" /> + <keyword name="UserInterface.upgradeEricPyQt" id="UserInterface.upgradeEricPyQt" ref="eric7.UI.UserInterface.html#UserInterface.upgradeEricPyQt" /> + <keyword name="UserInterface.upgradePyQt" id="UserInterface.upgradePyQt" ref="eric7.UI.UserInterface.html#UserInterface.upgradePyQt" /> <keyword name="UserInterface.versionIsNewer" id="UserInterface.versionIsNewer" ref="eric7.UI.UserInterface.html#UserInterface.versionIsNewer" /> <keyword name="UserProjectFile" id="UserProjectFile" ref="eric7.Project.UserProjectFile.html#UserProjectFile" /> <keyword name="UserProjectFile (Constructor)" id="UserProjectFile (Constructor)" ref="eric7.Project.UserProjectFile.html#UserProjectFile.__init__" /> @@ -16739,6 +16806,10 @@ <keyword name="VersionControl.vcsSwitch" id="VersionControl.vcsSwitch" ref="eric7.VCS.VersionControl.html#VersionControl.vcsSwitch" /> <keyword name="VersionControl.vcsTag" id="VersionControl.vcsTag" ref="eric7.VCS.VersionControl.html#VersionControl.vcsTag" /> <keyword name="VersionControl.vcsUpdate" id="VersionControl.vcsUpdate" ref="eric7.VCS.VersionControl.html#VersionControl.vcsUpdate" /> + <keyword name="VersionsDialog" id="VersionsDialog" ref="eric7.UI.VersionsDialog.html#VersionsDialog" /> + <keyword name="VersionsDialog (Constructor)" id="VersionsDialog (Constructor)" ref="eric7.UI.VersionsDialog.html#VersionsDialog.__init__" /> + <keyword name="VersionsDialog (Module)" id="VersionsDialog (Module)" ref="eric7.UI.VersionsDialog.html" /> + <keyword name="VersionsDialog.__checkForUpdate" id="VersionsDialog.__checkForUpdate" ref="eric7.UI.VersionsDialog.html#VersionsDialog.__checkForUpdate" /> <keyword name="ViewManager" id="ViewManager" ref="eric7.ViewManager.ViewManager.html#ViewManager" /> <keyword name="ViewManager (Constructor)" id="ViewManager (Constructor)" ref="eric7.ViewManager.ViewManager.html#ViewManager.__init__" /> <keyword name="ViewManager (Module)" id="ViewManager (Module)" ref="eric7.ViewManager.ViewManager.html" /> @@ -17014,6 +17085,7 @@ <keyword name="VirtualenvAddEditDialog" id="VirtualenvAddEditDialog" ref="eric7.VirtualEnv.VirtualenvAddEditDialog.html#VirtualenvAddEditDialog" /> <keyword name="VirtualenvAddEditDialog (Constructor)" id="VirtualenvAddEditDialog (Constructor)" ref="eric7.VirtualEnv.VirtualenvAddEditDialog.html#VirtualenvAddEditDialog.__init__" /> <keyword name="VirtualenvAddEditDialog (Module)" id="VirtualenvAddEditDialog (Module)" ref="eric7.VirtualEnv.VirtualenvAddEditDialog.html" /> + <keyword name="VirtualenvAddEditDialog.__detectPythonInterpreter" id="VirtualenvAddEditDialog.__detectPythonInterpreter" ref="eric7.VirtualEnv.VirtualenvAddEditDialog.html#VirtualenvAddEditDialog.__detectPythonInterpreter" /> <keyword name="VirtualenvAddEditDialog.__updateOk" id="VirtualenvAddEditDialog.__updateOk" ref="eric7.VirtualEnv.VirtualenvAddEditDialog.html#VirtualenvAddEditDialog.__updateOk" /> <keyword name="VirtualenvAddEditDialog.getData" id="VirtualenvAddEditDialog.getData" ref="eric7.VirtualEnv.VirtualenvAddEditDialog.html#VirtualenvAddEditDialog.getData" /> <keyword name="VirtualenvAddEditDialog.on_anacondaCheckBox_clicked" id="VirtualenvAddEditDialog.on_anacondaCheckBox_clicked" ref="eric7.VirtualEnv.VirtualenvAddEditDialog.html#VirtualenvAddEditDialog.on_anacondaCheckBox_clicked" /> @@ -17075,6 +17147,7 @@ <keyword name="VirtualenvManager.addVirtualEnv" id="VirtualenvManager.addVirtualEnv" ref="eric7.VirtualEnv.VirtualenvManager.html#VirtualenvManager.addVirtualEnv" /> <keyword name="VirtualenvManager.createVirtualEnv" id="VirtualenvManager.createVirtualEnv" ref="eric7.VirtualEnv.VirtualenvManager.html#VirtualenvManager.createVirtualEnv" /> <keyword name="VirtualenvManager.deleteVirtualEnvs" id="VirtualenvManager.deleteVirtualEnvs" ref="eric7.VirtualEnv.VirtualenvManager.html#VirtualenvManager.deleteVirtualEnvs" /> + <keyword name="VirtualenvManager.environmentForInterpreter" id="VirtualenvManager.environmentForInterpreter" ref="eric7.VirtualEnv.VirtualenvManager.html#VirtualenvManager.environmentForInterpreter" /> <keyword name="VirtualenvManager.getDefaultEnvironment" id="VirtualenvManager.getDefaultEnvironment" ref="eric7.VirtualEnv.VirtualenvManager.html#VirtualenvManager.getDefaultEnvironment" /> <keyword name="VirtualenvManager.getEnvironmentEntries" id="VirtualenvManager.getEnvironmentEntries" ref="eric7.VirtualEnv.VirtualenvManager.html#VirtualenvManager.getEnvironmentEntries" /> <keyword name="VirtualenvManager.getVirtualEnvironmentsBaseDir" id="VirtualenvManager.getVirtualEnvironmentsBaseDir" ref="eric7.VirtualEnv.VirtualenvManager.html#VirtualenvManager.getVirtualEnvironmentsBaseDir" /> @@ -17180,6 +17253,8 @@ <keyword name="VmTabviewPlugin (Constructor)" id="VmTabviewPlugin (Constructor)" ref="eric7.Plugins.PluginVmTabview.html#VmTabviewPlugin.__init__" /> <keyword name="VmTabviewPlugin.activate" id="VmTabviewPlugin.activate" ref="eric7.Plugins.PluginVmTabview.html#VmTabviewPlugin.activate" /> <keyword name="VmTabviewPlugin.deactivate" id="VmTabviewPlugin.deactivate" ref="eric7.Plugins.PluginVmTabview.html#VmTabviewPlugin.deactivate" /> + <keyword name="Vulnerability" id="Vulnerability" ref="eric7.PipInterface.PipVulnerabilityChecker.html#Vulnerability" /> + <keyword name="VulnerabilityCheckError" id="VulnerabilityCheckError" ref="eric7.PipInterface.PipVulnerabilityChecker.html#VulnerabilityCheckError" /> <keyword name="Watch" id="Watch" ref="eric7.DebugClients.Python.BreakpointWatch.html#Watch" /> <keyword name="Watch (Constructor)" id="Watch (Constructor)" ref="eric7.DebugClients.Python.BreakpointWatch.html#Watch.__init__" /> <keyword name="Watch.clear_all_watches" id="Watch.clear_all_watches" ref="eric7.DebugClients.Python.BreakpointWatch.html#Watch.clear_all_watches" /> @@ -18131,6 +18206,7 @@ <keyword name="checkTryExceptPass" id="checkTryExceptPass" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.tryExcept.html#checkTryExceptPass" /> <keyword name="checkWeakCryptographicKey" id="checkWeakCryptographicKey" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.weakCryptographicKey.html#checkWeakCryptographicKey" /> <keyword name="checkYamlLoad" id="checkYamlLoad" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.yamlLoad.html#checkYamlLoad" /> + <keyword name="choices_from_enum" id="choices_from_enum" ref="eric7.PipInterface.piplicenses.html#choices_from_enum" /> <keyword name="className" id="className" ref="eric7.Project.UicLoadUi5.html#className" /> <keyword name="className" id="className" ref="eric7.Project.UicLoadUi6.html#className" /> <keyword name="cleanUp" id="cleanUp" ref="install-debugclients.html#cleanUp" /> @@ -18295,6 +18371,10 @@ <keyword name="createWindowsShortcut" id="createWindowsShortcut" ref="create_windows_links.html#createWindowsShortcut" /> <keyword name="createWindowsShortcut" id="createWindowsShortcut" ref="eric7.eric7_post_install.html#createWindowsShortcut" /> <keyword name="createWindowsShortcut" id="createWindowsShortcut" ref="install.html#createWindowsShortcut" /> + <keyword name="create_licenses_list" id="create_licenses_list" ref="eric7.PipInterface.piplicenses.html#create_licenses_list" /> + <keyword name="create_output_string" id="create_output_string" ref="eric7.PipInterface.piplicenses.html#create_output_string" /> + <keyword name="create_parser" id="create_parser" ref="eric7.PipInterface.piplicenses.html#create_parser" /> + <keyword name="create_summary_list" id="create_summary_list" ref="eric7.PipInterface.piplicenses.html#create_summary_list" /> <keyword name="create_windows_links (Module)" id="create_windows_links (Module)" ref="create_windows_links.html" /> <keyword name="critical" id="critical" ref="eric7.EricWidgets.EricMessageBox.html#critical" /> <keyword name="crypto (Package)" id="crypto (Package)" ref="index-eric7.Utilities.crypto.html" /> @@ -18323,6 +18403,7 @@ <keyword name="djangoSqlInjection (Module)" id="djangoSqlInjection (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.djangoSqlInjection.html" /> <keyword name="djangoXssVulnerability (Module)" id="djangoXssVulnerability (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.djangoXssVulnerability.html" /> <keyword name="doDependancyChecks" id="doDependancyChecks" ref="install.html#doDependancyChecks" /> + <keyword name="doUpgrade" id="doUpgrade" ref="eric7.UI.upgrader.html#doUpgrade" /> <keyword name="drawPolygon" id="drawPolygon" ref="eric7.Snapshot.SnapshotFreehandGrabber.html#drawPolygon" /> <keyword name="drawRect" id="drawRect" ref="eric7.Snapshot.SnapshotRegionGrabber.html#drawRect" /> <keyword name="editMessageFilters" id="editMessageFilters" ref="eric7.EricWidgets.EricErrorMessage.html#editMessageFilters" /> @@ -18330,6 +18411,7 @@ <keyword name="encryptData" id="encryptData" ref="eric7.Utilities.crypto.py3AES.html#encryptData" /> <keyword name="engineDisplayName" id="engineDisplayName" ref="eric7.Plugins.UiExtensionPlugins.Translator.TranslatorEngines.__init__.html#engineDisplayName" /> <keyword name="ensureUniqueFilename" id="ensureUniqueFilename" ref="eric7.WebBrowser.Tools.WebBrowserTools.html#ensureUniqueFilename" /> + <keyword name="enum_key_to_value" id="enum_key_to_value" ref="eric7.PipInterface.piplicenses.html#enum_key_to_value" /> <keyword name="eradicate (Module)" id="eradicate (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.eradicate.html" /> <keyword name="eric6SettingsName" id="eric6SettingsName" ref="eric7.Preferences.__init__.html#eric6SettingsName" /> <keyword name="eric7 (Module)" id="eric7 (Module)" ref="eric7.eric7.html" /> @@ -18393,6 +18475,7 @@ <keyword name="filterCharsFromFilename" id="filterCharsFromFilename" ref="eric7.WebBrowser.Tools.WebBrowserTools.html#filterCharsFromFilename" /> <keyword name="filterMessage" id="filterMessage" ref="eric7.EricWidgets.EricErrorMessage.html#filterMessage" /> <keyword name="findVolume" id="findVolume" ref="eric7.Utilities.__init__.html#findVolume" /> + <keyword name="find_license_from_classifier" id="find_license_from_classifier" ref="eric7.PipInterface.piplicenses.html#find_license_from_classifier" /> <keyword name="find_module" id="find_module" ref="eric7.Utilities.ClassBrowsers.__init__.html#find_module" /> <keyword name="find_module" id="find_module" ref="eric7.Utilities.ModuleParser.html#find_module" /> <keyword name="flaskDebug (Module)" id="flaskDebug (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.flaskDebug.html" /> @@ -18616,7 +18699,12 @@ <keyword name="get_class_members" id="get_class_members" ref="eric7.DebugClients.Python.FlexCompleter.html#get_class_members" /> <keyword name="get_coding" id="get_coding" ref="eric7.Utilities.__init__.html#get_coding" /> <keyword name="get_codingBytes" id="get_codingBytes" ref="eric7.Utilities.__init__.html#get_codingBytes" /> + <keyword name="get_installed_distributions" id="get_installed_distributions" ref="eric7.PipInterface.piplicenses.html#get_installed_distributions" /> + <keyword name="get_output_fields" id="get_output_fields" ref="eric7.PipInterface.piplicenses.html#get_output_fields" /> + <keyword name="get_packages" id="get_packages" ref="eric7.PipInterface.piplicenses.html#get_packages" /> <keyword name="get_parser" id="get_parser" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#get_parser" /> + <keyword name="get_pkg_included_file" id="get_pkg_included_file" ref="eric7.PipInterface.piplicenses.html#get_pkg_included_file" /> + <keyword name="get_pkg_info" id="get_pkg_info" ref="eric7.PipInterface.piplicenses.html#get_pkg_info" /> <keyword name="getargvalues" id="getargvalues" ref="eric7.DebugClients.Python.DebugUtilities.html#getargvalues" /> <keyword name="getpass" id="getpass" ref="eric7.DebugClients.Python.getpass.html#getpass" /> <keyword name="getpass (Module)" id="getpass (Module)" ref="eric7.DebugClients.Python.getpass.html" /> @@ -18673,6 +18761,7 @@ <keyword name="insecureSslTls (Module)" id="insecureSslTls (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.insecureSslTls.html" /> <keyword name="install (Module)" id="install (Module)" ref="install.html" /> <keyword name="install-debugclients (Module)" id="install-debugclients (Module)" ref="install-debugclients.html" /> + <keyword name="install-dependencies (Module)" id="install-dependencies (Module)" ref="install-dependencies.html" /> <keyword name="install-i18n (Module)" id="install-i18n (Module)" ref="install-i18n.html" /> <keyword name="installEric" id="installEric" ref="install.html#installEric" /> <keyword name="installEricDebugClients" id="installEricDebugClients" ref="install-debugclients.html#installEricDebugClients" /> @@ -18737,9 +18826,11 @@ <keyword name="main" id="main" ref="cleanupSource.html#main" /> <keyword name="main" id="main" ref="compileUiFiles.html#main" /> <keyword name="main" id="main" ref="create_windows_links.html#main" /> + <keyword name="main" id="main" ref="eric7.PipInterface.piplicenses.html#main" /> <keyword name="main" id="main" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.eradicate.html#main" /> <keyword name="main" id="main" ref="eric7.Plugins.VcsPlugins.vcsMercurial.HisteditExtension.HgHisteditEditor.html#main" /> <keyword name="main" id="main" ref="eric7.Plugins.WizardPlugins.QRegularExpressionWizard.QRegularExpressionWizardServer.html#main" /> + <keyword name="main" id="main" ref="eric7.UI.upgrader.html#main" /> <keyword name="main" id="main" ref="eric7.eric7.html#main" /> <keyword name="main" id="main" ref="eric7.eric7_api.html#main" /> <keyword name="main" id="main" ref="eric7.eric7_browser.html#main" /> @@ -18765,6 +18856,7 @@ <keyword name="main" id="main" ref="eric7.eric7_unittest.html#main" /> <keyword name="main" id="main" ref="eric7.eric7_virtualenv.html#main" /> <keyword name="main" id="main" ref="install-debugclients.html#main" /> + <keyword name="main" id="main" ref="install-dependencies.html#main" /> <keyword name="main" id="main" ref="install-i18n.html#main" /> <keyword name="main" id="main" ref="install.html#main" /> <keyword name="main" id="main" ref="uninstall-debugclients.html#main" /> @@ -18823,7 +18915,9 @@ <keyword name="patchQProcess" id="patchQProcess" ref="eric7.DebugClients.Python.QProcessExtension.html#patchQProcess" /> <keyword name="patchSubprocess" id="patchSubprocess" ref="eric7.DebugClients.Python.SubprocessExtension.html#patchSubprocess" /> <keyword name="pbkdf2" id="pbkdf2" ref="eric7.Utilities.crypto.py3PBKDF2.html#pbkdf2" /> + <keyword name="pipInstall" id="pipInstall" ref="install-dependencies.html#pipInstall" /> <keyword name="pipInstall" id="pipInstall" ref="install.html#pipInstall" /> + <keyword name="piplicenses (Module)" id="piplicenses (Module)" ref="eric7.PipInterface.piplicenses.html" /> <keyword name="pixmapFileToDataUrl" id="pixmapFileToDataUrl" ref="eric7.WebBrowser.Tools.WebBrowserTools.html#pixmapFileToDataUrl" /> <keyword name="pixmapFromByteArray" id="pixmapFromByteArray" ref="eric7.WebBrowser.Tools.WebBrowserTools.html#pixmapFromByteArray" /> <keyword name="pixmapToByteArray" id="pixmapToByteArray" ref="eric7.WebBrowser.Tools.WebBrowserTools.html#pixmapToByteArray" /> @@ -18932,6 +19026,7 @@ <keyword name="schemeFromProxyType" id="schemeFromProxyType" ref="eric7.EricNetwork.EricNetworkProxyFactory.html#schemeFromProxyType" /> <keyword name="scrollToAnchor" id="scrollToAnchor" ref="eric7.WebBrowser.Tools.Scripts.html#scrollToAnchor" /> <keyword name="securityOk" id="securityOk" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleChecker.html#securityOk" /> + <keyword name="select_license_by_source" id="select_license_by_source" ref="eric7.PipInterface.piplicenses.html#select_license_by_source" /> <keyword name="sendPostData" id="sendPostData" ref="eric7.WebBrowser.Tools.Scripts.html#sendPostData" /> <keyword name="sessionType" id="sessionType" ref="eric7.Globals.__init__.html#sessionType" /> <keyword name="setActions" id="setActions" ref="eric7.Preferences.Shortcuts.html#setActions" /> @@ -19007,6 +19102,7 @@ <keyword name="splitPath" id="splitPath" ref="eric7.Utilities.__init__.html#splitPath" /> <keyword name="sshNoHostKeyVerification (Module)" id="sshNoHostKeyVerification (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.sshNoHostKeyVerification.html" /> <keyword name="startDebugger" id="startDebugger" ref="eric7.DebugClients.Python.eric7dbgstub.html#startDebugger" /> + <keyword name="startEric" id="startEric" ref="eric7.UI.upgrader.html#startEric" /> <keyword name="startsWithShebang" id="startsWithShebang" ref="eric7.DebugClients.Python.DebugUtilities.html#startsWithShebang" /> <keyword name="startswithPath" id="startswithPath" ref="eric7.Utilities.__init__.html#startswithPath" /> <keyword name="stdin_get_value" id="stdin_get_value" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#stdin_get_value" /> @@ -19070,6 +19166,7 @@ <keyword name="updatePip" id="updatePip" ref="install.html#updatePip" /> <keyword name="updateTypeMap" id="updateTypeMap" ref="eric7.DebugClients.Python.DebugVariables.html#updateTypeMap" /> <keyword name="update_counts" id="update_counts" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#update_counts" /> + <keyword name="upgrader (Module)" id="upgrader (Module)" ref="eric7.UI.upgrader.html" /> <keyword name="usage" id="usage" ref="eric7.Toolbox.Startup.html#usage" /> <keyword name="usage" id="usage" ref="eric7.eric7_api.html#usage" /> <keyword name="usage" id="usage" ref="eric7.eric7_doc.html#usage" /> @@ -19079,6 +19176,7 @@ <keyword name="usage" id="usage" ref="uninstall-debugclients.html#usage" /> <keyword name="usage" id="usage" ref="uninstall.html#usage" /> <keyword name="userConfiguration" id="userConfiguration" ref="eric7.CondaInterface.__init__.html#userConfiguration" /> + <keyword name="value_to_enum_key" id="value_to_enum_key" ref="eric7.PipInterface.piplicenses.html#value_to_enum_key" /> <keyword name="vcsGit (Package)" id="vcsGit (Package)" ref="index-eric7.Plugins.VcsPlugins.vcsGit.html" /> <keyword name="vcsMercurial (Package)" id="vcsMercurial (Package)" ref="index-eric7.Plugins.VcsPlugins.vcsMercurial.html" /> <keyword name="vcsPySvn (Package)" id="vcsPySvn (Package)" ref="index-eric7.Plugins.VcsPlugins.vcsPySvn.html" /> @@ -19363,9 +19461,12 @@ <file>eric7.PipInterface.PipDialog.html</file> <file>eric7.PipInterface.PipFileSelectionDialog.html</file> <file>eric7.PipInterface.PipFreezeDialog.html</file> + <file>eric7.PipInterface.PipLicensesDialog.html</file> <file>eric7.PipInterface.PipPackageDetailsDialog.html</file> <file>eric7.PipInterface.PipPackagesInputDialog.html</file> <file>eric7.PipInterface.PipPackagesWidget.html</file> + <file>eric7.PipInterface.PipVulnerabilityChecker.html</file> + <file>eric7.PipInterface.piplicenses.html</file> <file>eric7.PluginManager.PluginDetailsDialog.html</file> <file>eric7.PluginManager.PluginExceptions.html</file> <file>eric7.PluginManager.PluginInfoDialog.html</file> @@ -20005,6 +20106,8 @@ <file>eric7.UI.SplashScreen.html</file> <file>eric7.UI.SymbolsWidget.html</file> <file>eric7.UI.UserInterface.html</file> + <file>eric7.UI.VersionsDialog.html</file> + <file>eric7.UI.upgrader.html</file> <file>eric7.Utilities.AutoSaver.html</file> <file>eric7.Utilities.BackgroundClient.html</file> <file>eric7.Utilities.BackgroundService.html</file> @@ -20407,6 +20510,7 @@ <file>index-eric7.html</file> <file>index.html</file> <file>install-debugclients.html</file> + <file>install-dependencies.html</file> <file>install-i18n.html</file> <file>install.html</file> <file>setup.html</file>
--- a/eric7/Documentation/Source/eric7.PipInterface.Pip.html Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Documentation/Source/eric7.PipInterface.Pip.html Sat Apr 02 11:23:11 2022 +0200 @@ -59,6 +59,10 @@ <td>Constructor</td> </tr> <tr> +<td><a href="#Pip.__checkUpgradeEric">__checkUpgradeEric</a></td> +<td>Private method to check, if an upgrade of the eric-ide package is attempted.</td> +</tr> +<tr> <td><a href="#Pip.__checkUpgradePyQt">__checkUpgradePyQt</a></td> <td>Private method to check, if an upgrade of PyQt packages is attempted.</td> </tr> @@ -75,6 +79,18 @@ <td>Public method to remove files from the pip cache.</td> </tr> <tr> +<td><a href="#Pip.checkPackageOutdated">checkPackageOutdated</a></td> +<td>Public method to check, if a group of packages is outdated.</td> +</tr> +<tr> +<td><a href="#Pip.getDependecyTree">getDependecyTree</a></td> +<td>Public method to get the dependency tree of installed packages.</td> +</tr> +<tr> +<td><a href="#Pip.getFrozenPackages">getFrozenPackages</a></td> +<td>Public method to get the list of package specifiers to freeze them.</td> +</tr> +<tr> <td><a href="#Pip.getIndexUrl">getIndexUrl</a></td> <td>Public method to get the index URL for PyPI.</td> </tr> @@ -91,6 +107,14 @@ <td>Public method to get the list of installed packages.</td> </tr> <tr> +<td><a href="#Pip.getLicenses">getLicenses</a></td> +<td>Public method to get the licenses per package for a given environment.</td> +</tr> +<tr> +<td><a href="#Pip.getLicensesSummary">getLicensesSummary</a></td> +<td>Public method to get a summary of licenses found in a given environment.</td> +</tr> +<tr> <td><a href="#Pip.getNetworkAccessManager">getNetworkAccessManager</a></td> <td>Public method to get a reference to the network access manager object.</td> </tr> @@ -103,6 +127,10 @@ <td>Public method to get package details using the PyPI JSON interface.</td> </tr> <tr> +<td><a href="#Pip.getPackageVersions">getPackageVersions</a></td> +<td>Public method to get a list of versions available for the given package.</td> +</tr> +<tr> <td><a href="#Pip.getProjectEnvironmentString">getProjectEnvironmentString</a></td> <td>Public method to get the string for the project environment.</td> </tr> @@ -123,6 +151,10 @@ <td>Public method to get a sorted list of virtual environment names.</td> </tr> <tr> +<td><a href="#Pip.getVulnerabilityChecker">getVulnerabilityChecker</a></td> +<td>Public method to get a reference to the vulnerability checker object.</td> +</tr> +<tr> <td><a href="#Pip.installPackages">installPackages</a></td> <td>Public method to install the given list of packages.</td> </tr> @@ -176,7 +208,34 @@ <dt><i>parent</i> (QObject)</dt> <dd> -parent +reference to the user interface object +</dd> +</dl> +<a NAME="Pip.__checkUpgradeEric" ID="Pip.__checkUpgradeEric"></a> +<h4>Pip.__checkUpgradeEric</h4> +<b>__checkUpgradeEric</b>(<i>packages</i>) + +<p> + Private method to check, if an upgrade of the eric-ide package is + attempted. +</p> +<dl> + +<dt><i>packages</i> (list of str)</dt> +<dd> +list of packages to upgrade +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +flag indicating an eric-ide upgrade +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +bool </dd> </dl> <a NAME="Pip.__checkUpgradePyQt" ID="Pip.__checkUpgradePyQt"></a> @@ -196,7 +255,7 @@ <dl> <dt>Return:</dt> <dd> -flag indicating to abort the upgrade attempt +flag indicating a PyQt upgrade </dd> </dl> <dl> @@ -247,6 +306,122 @@ name of the virtual environment to be used </dd> </dl> +<a NAME="Pip.checkPackageOutdated" ID="Pip.checkPackageOutdated"></a> +<h4>Pip.checkPackageOutdated</h4> +<b>checkPackageOutdated</b>(<i>packageStart, envName</i>) + +<p> + Public method to check, if a group of packages is outdated. +</p> +<dl> + +<dt><i>packageStart</i> (str)</dt> +<dd> +start string for package names to be checked + (case insensitive) +</dd> +<dt><i>envName</i> (str)</dt> +<dd> +name of the environment to get the packages for +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +tuple containing a flag indicating outdated packages and the + list of tuples containing the package name, installed version + and available version +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +tuple of (bool, (str, str, str)) +</dd> +</dl> +<a NAME="Pip.getDependecyTree" ID="Pip.getDependecyTree"></a> +<h4>Pip.getDependecyTree</h4> +<b>getDependecyTree</b>(<i>envName, localPackages=True, usersite=False, reverse=False</i>) + +<p> + Public method to get the dependency tree of installed packages. +</p> +<dl> + +<dt><i>envName</i> (str)</dt> +<dd> +name of the environment to get the packages for +</dd> +<dt><i>localPackages</i> (bool)</dt> +<dd> +flag indicating to get the tree for local + packages only +</dd> +<dt><i>usersite</i> (bool)</dt> +<dd> +flag indicating to get the tree for packages + installed in user-site directory only +</dd> +<dt><i>reverse</i> (bool)</dt> +<dd> +flag indicating to get the dependency tree in + reverse order (i.e. list packages needed by other) +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +list of nested dictionaries resembling the requested + dependency tree +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +list of dict +</dd> +</dl> +<a NAME="Pip.getFrozenPackages" ID="Pip.getFrozenPackages"></a> +<h4>Pip.getFrozenPackages</h4> +<b>getFrozenPackages</b>(<i>envName, localPackages=True, usersite=False, requirement=None</i>) + +<p> + Public method to get the list of package specifiers to freeze them. +</p> +<dl> + +<dt><i>envName</i> (str)</dt> +<dd> +name of the environment to get the package specifiers + for +</dd> +<dt><i>localPackages</i> (bool)</dt> +<dd> +flag indicating to get package specifiers for + local packages only +</dd> +<dt><i>usersite</i> (bool)</dt> +<dd> +flag indicating to get package specifiers for packages + installed in user-site only +</dd> +<dt><i>requirement</i> (str)</dt> +<dd> +name of a requirements file +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +list of package specifiers +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +list of str +</dd> +</dl> <a NAME="Pip.getIndexUrl" ID="Pip.getIndexUrl"></a> <h4>Pip.getIndexUrl</h4> <b>getIndexUrl</b>(<i></i>) @@ -344,6 +519,86 @@ list of tuple of (str, str) </dd> </dl> +<a NAME="Pip.getLicenses" ID="Pip.getLicenses"></a> +<h4>Pip.getLicenses</h4> +<b>getLicenses</b>(<i>envName, localPackages=True, usersite=False, summary=False</i>) + +<p> + Public method to get the licenses per package for a given environment. +</p> +<dl> + +<dt><i>envName</i> (str)</dt> +<dd> +name of the environment to get the licenses for +</dd> +<dt><i>localPackages</i> (bool)</dt> +<dd> +flag indicating to get the licenses for local + packages only +</dd> +<dt><i>usersite</i> (bool)</dt> +<dd> +flag indicating to get the licenses for packages + installed in user-site directory only +</dd> +<dt><i>summary</i> (bool (optional))</dt> +<dd> +flag indicating to get a summary listing (defaults to + False) +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +list of dictionaries containing the license and version per + package +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +dict +</dd> +</dl> +<a NAME="Pip.getLicensesSummary" ID="Pip.getLicensesSummary"></a> +<h4>Pip.getLicensesSummary</h4> +<b>getLicensesSummary</b>(<i>envName, localPackages=True, usersite=False</i>) + +<p> + Public method to get a summary of licenses found in a given + environment. +</p> +<dl> + +<dt><i>envName</i> (str)</dt> +<dd> +name of the environment to get the licenses summary for +</dd> +<dt><i>localPackages</i> (bool)</dt> +<dd> +flag indicating to get the licenses summary for + local packages only +</dd> +<dt><i>usersite</i> (bool)</dt> +<dd> +flag indicating to get the licenses summary for + packages installed in user-site directory only +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +list of dictionaries containing the license and the count of + packages +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +dict +</dd> +</dl> <a NAME="Pip.getNetworkAccessManager" ID="Pip.getNetworkAccessManager"></a> <h4>Pip.getNetworkAccessManager</h4> <b>getNetworkAccessManager</b>(<i></i>) @@ -434,6 +689,33 @@ dict </dd> </dl> +<a NAME="Pip.getPackageVersions" ID="Pip.getPackageVersions"></a> +<h4>Pip.getPackageVersions</h4> +<b>getPackageVersions</b>(<i>name</i>) + +<p> + Public method to get a list of versions available for the given + package. +</p> +<dl> + +<dt><i>name</i> (str)</dt> +<dd> +package name +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +list of available versions +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +list of str +</dd> +</dl> <a NAME="Pip.getProjectEnvironmentString" ID="Pip.getProjectEnvironmentString"></a> <h4>Pip.getProjectEnvironmentString</h4> <b>getProjectEnvironmentString</b>(<i></i>) @@ -555,6 +837,25 @@ list of str </dd> </dl> +<a NAME="Pip.getVulnerabilityChecker" ID="Pip.getVulnerabilityChecker"></a> +<h4>Pip.getVulnerabilityChecker</h4> +<b>getVulnerabilityChecker</b>(<i></i>) + +<p> + Public method to get a reference to the vulnerability checker object. +</p> +<dl> +<dt>Return:</dt> +<dd> +reference to the vulnerability checker object +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +PipVulnerabilityChecker +</dd> +</dl> <a NAME="Pip.installPackages" ID="Pip.installPackages"></a> <h4>Pip.installPackages</h4> <b>installPackages</b>(<i>packages, venvName="", userSite=False, interpreter="", forceReinstall=False</i>)
--- a/eric7/Documentation/Source/eric7.PipInterface.PipFreezeDialog.html Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Documentation/Source/eric7.PipInterface.PipFreezeDialog.html Sat Apr 02 11:23:11 2022 +0200 @@ -115,6 +115,10 @@ <td>Private slot to write the requirements text to a new file.</td> </tr> <tr> +<td><a href="#PipFreezeDialog.on_userCheckBox_clicked">on_userCheckBox_clicked</a></td> +<td>Private slot handling the switching of the user-site mode.</td> +</tr> +<tr> <td><a href="#PipFreezeDialog.start">start</a></td> <td>Public method to start the command.</td> </tr> @@ -216,18 +220,11 @@ </p> <a NAME="PipFreezeDialog.on_localCheckBox_clicked" ID="PipFreezeDialog.on_localCheckBox_clicked"></a> <h4>PipFreezeDialog.on_localCheckBox_clicked</h4> -<b>on_localCheckBox_clicked</b>(<i>checked</i>) +<b>on_localCheckBox_clicked</b>(<i></i>) <p> Private slot handling the switching of the local mode. </p> -<dl> - -<dt><i>checked</i> (bool)</dt> -<dd> -state of the local check box -</dd> -</dl> <a NAME="PipFreezeDialog.on_replaceAllButton_clicked" ID="PipFreezeDialog.on_replaceAllButton_clicked"></a> <h4>PipFreezeDialog.on_replaceAllButton_clicked</h4> <b>on_replaceAllButton_clicked</b>(<i></i>) @@ -279,6 +276,13 @@ <p> Private slot to write the requirements text to a new file. </p> +<a NAME="PipFreezeDialog.on_userCheckBox_clicked" ID="PipFreezeDialog.on_userCheckBox_clicked"></a> +<h4>PipFreezeDialog.on_userCheckBox_clicked</h4> +<b>on_userCheckBox_clicked</b>(<i></i>) + +<p> + Private slot handling the switching of the user-site mode. +</p> <a NAME="PipFreezeDialog.start" ID="PipFreezeDialog.start"></a> <h4>PipFreezeDialog.start</h4> <b>start</b>(<i>venvName</i>)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/Documentation/Source/eric7.PipInterface.PipLicensesDialog.html Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,113 @@ +<!DOCTYPE html> +<html><head> +<title>eric7.PipInterface.PipLicensesDialog</title> +<meta charset="UTF-8"> +<link rel="stylesheet" href="styles.css"> +</head> +<body> +<a NAME="top" ID="top"></a> +<h1>eric7.PipInterface.PipLicensesDialog</h1> + +<p> +Module implementing a dialog to show the licenses of an environment. +</p> +<h3>Global Attributes</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Classes</h3> + +<table> + +<tr> +<td><a href="#PipLicensesDialog">PipLicensesDialog</a></td> +<td>Class implementing a dialog to show the licenses of an environment.</td> +</tr> +</table> +<h3>Functions</h3> + +<table> +<tr><td>None</td></tr> +</table> +<hr /> +<hr /> +<a NAME="PipLicensesDialog" ID="PipLicensesDialog"></a> +<h2>PipLicensesDialog</h2> + +<p> + Class implementing a dialog to show the licenses of an environment. +</p> +<h3>Derived from</h3> +QDialog, Ui_PipLicensesDialog +<h3>Class Attributes</h3> + +<table> +<tr><td>LicensesLicenseColumn</td></tr><tr><td>LicensesPackageColumn</td></tr><tr><td>LicensesVersionColumn</td></tr><tr><td>SummaryCountColumn</td></tr><tr><td>SummaryLicenseColumn</td></tr> +</table> +<h3>Class Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> + +<table> + +<tr> +<td><a href="#PipLicensesDialog.__init__">PipLicensesDialog</a></td> +<td>Constructor</td> +</tr> +<tr> +<td><a href="#PipLicensesDialog.__refreshLicenses">__refreshLicenses</a></td> +<td>Private slot to refresh the license lists.</td> +</tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<a NAME="PipLicensesDialog.__init__" ID="PipLicensesDialog.__init__"></a> +<h4>PipLicensesDialog (Constructor)</h4> +<b>PipLicensesDialog</b>(<i>pip, environment, localPackages=True, usersite=False, parent=None</i>) + +<p> + Constructor +</p> +<dl> + +<dt><i>pip</i> (Pip)</dt> +<dd> +reference to the pip interface object +</dd> +<dt><i>environment</i> (str)</dt> +<dd> +name of the environment to show the licenses for +</dd> +<dt><i>localPackages</i> (bool)</dt> +<dd> +flag indicating to show the licenses for local + packages only +</dd> +<dt><i>usersite</i> (bool)</dt> +<dd> +flag indicating to show the licenses for packages + installed in user-site directory only +</dd> +<dt><i>parent</i> (QWidget (optional))</dt> +<dd> +reference to the parent widget (defaults to None) +</dd> +</dl> +<a NAME="PipLicensesDialog.__refreshLicenses" ID="PipLicensesDialog.__refreshLicenses"></a> +<h4>PipLicensesDialog.__refreshLicenses</h4> +<b>__refreshLicenses</b>(<i></i>) + +<p> + Private slot to refresh the license lists. +</p> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- a/eric7/Documentation/Source/eric7.PipInterface.PipPackagesWidget.html Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Documentation/Source/eric7.PipInterface.PipPackagesWidget.html Sat Apr 02 11:23:11 2022 +0200 @@ -47,7 +47,7 @@ <h3>Class Attributes</h3> <table> -<tr><td>SearchVersionRole</td></tr><tr><td>ShowProcessClassifiersMode</td></tr><tr><td>ShowProcessEntryPointsMode</td></tr><tr><td>ShowProcessFilesListMode</td></tr><tr><td>ShowProcessGeneralMode</td></tr> +<tr><td>AvailableVersionColumn</td></tr><tr><td>DepInstalledVersionColumn</td></tr><tr><td>DepPackageColumn</td></tr><tr><td>DepRequiredVersionColumn</td></tr><tr><td>InstalledVersionColumn</td></tr><tr><td>PackageColumn</td></tr><tr><td>SearchVersionRole</td></tr><tr><td>ShowProcessClassifiersMode</td></tr><tr><td>ShowProcessEntryPointsMode</td></tr><tr><td>ShowProcessFilesListMode</td></tr><tr><td>ShowProcessGeneralMode</td></tr><tr><td>VulnerabilityColumn</td></tr><tr><td>VulnerabilityRole</td></tr> </table> <h3>Class Methods</h3> @@ -67,6 +67,10 @@ <td>Private slot to set the action enabled status.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.__addDependency">__addDependency</a></td> +<td>Private method to add a dependency branch to a given parent.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.__allUpdateableItems">__allUpdateableItems</a></td> <td>Private method to get a list of all items that can be updated.</td> </tr> @@ -75,6 +79,10 @@ <td>Private method to get the pip version of the selected environment.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.__clearVulnerabilityInfo">__clearVulnerabilityInfo</a></td> +<td>Private slot to clear the vulnerability info.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.__editConfiguration">__editConfiguration</a></td> <td>Private method to edit a configuration.</td> </tr> @@ -135,12 +143,20 @@ <td>Private slot to handle the projectClosed signal.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.__projectOpened">__projectOpened</a></td> +<td>Private slot to handle the projectOpened signal.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.__purgeCache">__purgeCache</a></td> <td>Private slot to empty the pip cache.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.__refreshDependencyTree">__refreshDependencyTree</a></td> +<td>Private method to refresh the dependency tree.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.__refreshPackagesList">__refreshPackagesList</a></td> -<td>Private method to referesh the packages list.</td> +<td>Private method to refresh the packages list.</td> </tr> <tr> <td><a href="#PipPackagesWidget.__reinstallPackages">__reinstallPackages</a></td> @@ -159,6 +175,10 @@ <td>Private method to perform the search by calling the PyPI search URL.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.__searchFirst">__searchFirst</a></td> +<td>Private method to perform the search for packages.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.__searchResponse">__searchResponse</a></td> <td>Private method to extract the search result data from the response.</td> </tr> @@ -175,14 +195,26 @@ <td>Private slot to show a list of cached files.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.__showLicensesDialog">__showLicensesDialog</a></td> +<td>Private slot to show a dialog with the licenses of the selected environment.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.__showPackageDetails">__showPackageDetails</a></td> <td>Private method to populate the package details dialog.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.__showPackageInformation">__showPackageInformation</a></td> +<td>Private method to show information for a package.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.__showSearchedDetails">__showSearchedDetails</a></td> <td>Private slot to show details about the selected search result package.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.__showVulnerabilityInformation">__showVulnerabilityInformation</a></td> +<td>Private method to show the detected vulnerability data.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.__uninstallRequirements">__uninstallRequirements</a></td> <td>Private slot to uninstall packages as given in a requirements file.</td> </tr> @@ -191,6 +223,10 @@ <td>Private method to set the state of the action buttons.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.__updateDepActionButtons">__updateDepActionButtons</a></td> +<td>Private method to set the state of the dependency page action buttons.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.__updateSearchActionButtons">__updateSearchActionButtons</a></td> <td>Private method to update the action button states of the search widget.</td> </tr> @@ -199,6 +235,18 @@ <td>Private method to update the state of the search button.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.__updateSearchMoreButton">__updateSearchMoreButton</a></td> +<td>Private method to update the state of the search more button.</td> +</tr> +<tr> +<td><a href="#PipPackagesWidget.__updateVulnerabilityData">__updateVulnerabilityData</a></td> +<td>Private slot to update the shown vulnerability info.</td> +</tr> +<tr> +<td><a href="#PipPackagesWidget.__updateVulnerabilityDbCache">__updateVulnerabilityDbCache</a></td> +<td>Private slot to initiate an update of the local cache of the vulnerability database.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.executeInstallPackages">executeInstallPackages</a></td> <td>Public method to install the given list of packages.</td> </tr> @@ -215,7 +263,19 @@ <td>Public method to get a reference to the pip interface object.</td> </tr> <tr> -<td><a href="#PipPackagesWidget.on_environmentsComboBox_currentIndexChanged">on_environmentsComboBox_currentIndexChanged</a></td> +<td><a href="#PipPackagesWidget.on_dependenciesList_itemActivated">on_dependenciesList_itemActivated</a></td> +<td>Private slot reacting on a package item of the dependency tree being activated.</td> +</tr> +<tr> +<td><a href="#PipPackagesWidget.on_dependenciesList_itemPressed">on_dependenciesList_itemPressed</a></td> +<td>Private slot reacting on a package item of the dependency tree being pressed.</td> +</tr> +<tr> +<td><a href="#PipPackagesWidget.on_dependenciesList_itemSelectionChanged">on_dependenciesList_itemSelectionChanged</a></td> +<td>Private slot reacting on a change of selected items of the dependency tree.</td> +</tr> +<tr> +<td><a href="#PipPackagesWidget.on_environmentsComboBox_currentTextChanged">on_environmentsComboBox_currentTextChanged</a></td> <td>Private slot handling the selection of a Python environment.</td> </tr> <tr> @@ -235,22 +295,38 @@ <td>Private slot handling the switching of the local mode.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.on_localDepCheckBox_clicked">on_localDepCheckBox_clicked</a></td> +<td>Private slot handling the switching of the local mode.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.on_notRequiredCheckBox_clicked">on_notRequiredCheckBox_clicked</a></td> <td>Private slot handling the switching of the 'not required' mode.</td> </tr> <tr> <td><a href="#PipPackagesWidget.on_packagesList_itemActivated">on_packagesList_itemActivated</a></td> -<td>Private slot reacting on a package item activation.</td> +<td>Private slot reacting on a package item being activated.</td> +</tr> +<tr> +<td><a href="#PipPackagesWidget.on_packagesList_itemPressed">on_packagesList_itemPressed</a></td> +<td>Private slot reacting on a package item being pressed.</td> </tr> <tr> <td><a href="#PipPackagesWidget.on_packagesList_itemSelectionChanged">on_packagesList_itemSelectionChanged</a></td> -<td>Private slot handling the selection of a package.</td> +<td>Private slot reacting on a change of selected items.</td> </tr> <tr> <td><a href="#PipPackagesWidget.on_refreshButton_clicked">on_refreshButton_clicked</a></td> <td>Private slot to refresh the display.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.on_refreshDependenciesButton_clicked">on_refreshDependenciesButton_clicked</a></td> +<td>Private slot to refresh the dependency tree.</td> +</tr> +<tr> +<td><a href="#PipPackagesWidget.on_requiresButton_toggled">on_requiresButton_toggled</a></td> +<td>Private slot handling the selection of the view type.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.on_searchButton_clicked">on_searchButton_clicked</a></td> <td>Private slot handling a press of the search button.</td> </tr> @@ -263,6 +339,10 @@ <td>Private slot handling a change of the search term.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.on_searchMoreButton_clicked">on_searchMoreButton_clicked</a></td> +<td>Private slot handling a press of the search more button.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.on_searchResultList_itemActivated">on_searchResultList_itemActivated</a></td> <td>Private slot reacting on an search result item activation.</td> </tr> @@ -275,6 +355,10 @@ <td>Private slot to togle the search widget.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.on_showDepPackageDetailsButton_clicked">on_showDepPackageDetailsButton_clicked</a></td> +<td>Private slot to show information for the selected package of the dependency tree.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.on_showDetailsButton_clicked">on_showDetailsButton_clicked</a></td> <td>Private slot to handle pressing the Show Details button.</td> </tr> @@ -299,9 +383,21 @@ <td>Private slot handling the switching of the 'user-site' mode.</td> </tr> <tr> +<td><a href="#PipPackagesWidget.on_userDepCheckBox_clicked">on_userDepCheckBox_clicked</a></td> +<td>Private slot handling the switching of the 'user-site' mode.</td> +</tr> +<tr> <td><a href="#PipPackagesWidget.on_verboseCheckBox_clicked">on_verboseCheckBox_clicked</a></td> <td>Private slot to handle a change of the verbose package information checkbox.</td> </tr> +<tr> +<td><a href="#PipPackagesWidget.on_viewToggleButton_toggled">on_viewToggleButton_toggled</a></td> +<td>Private slot handling the view selection.</td> +</tr> +<tr> +<td><a href="#PipPackagesWidget.on_vulnerabilityCheckBox_clicked">on_vulnerabilityCheckBox_clicked</a></td> +<td>Private slot handling a change of the automatic vulnerability checks.</td> +</tr> </table> <h3>Static Methods</h3> @@ -334,6 +430,24 @@ <p> Private slot to set the action enabled status. </p> +<a NAME="PipPackagesWidget.__addDependency" ID="PipPackagesWidget.__addDependency"></a> +<h4>PipPackagesWidget.__addDependency</h4> +<b>__addDependency</b>(<i>dependency, parent</i>) + +<p> + Private method to add a dependency branch to a given parent. +</p> +<dl> + +<dt><i>dependency</i> (dict)</dt> +<dd> +dependency to be added +</dd> +<dt><i>parent</i> (QTreeWidget or QTreeWidgetItem)</dt> +<dd> +reference to the parent item +</dd> +</dl> <a NAME="PipPackagesWidget.__allUpdateableItems" ID="PipPackagesWidget.__allUpdateableItems"></a> <h4>PipPackagesWidget.__allUpdateableItems</h4> <b>__allUpdateableItems</b>(<i></i>) @@ -373,6 +487,13 @@ tuple of int </dd> </dl> +<a NAME="PipPackagesWidget.__clearVulnerabilityInfo" ID="PipPackagesWidget.__clearVulnerabilityInfo"></a> +<h4>PipPackagesWidget.__clearVulnerabilityInfo</h4> +<b>__clearVulnerabilityInfo</b>(<i></i>) + +<p> + Private slot to clear the vulnerability info. +</p> <a NAME="PipPackagesWidget.__editConfiguration" ID="PipPackagesWidget.__editConfiguration"></a> <h4>PipPackagesWidget.__editConfiguration</h4> <b>__editConfiguration</b>(<i>venvName=""</i>) @@ -507,6 +628,13 @@ flag indicating the IDE shutdown </dd> </dl> +<a NAME="PipPackagesWidget.__projectOpened" ID="PipPackagesWidget.__projectOpened"></a> +<h4>PipPackagesWidget.__projectOpened</h4> +<b>__projectOpened</b>(<i></i>) + +<p> + Private slot to handle the projectOpened signal. +</p> <a NAME="PipPackagesWidget.__purgeCache" ID="PipPackagesWidget.__purgeCache"></a> <h4>PipPackagesWidget.__purgeCache</h4> <b>__purgeCache</b>(<i></i>) @@ -514,12 +642,19 @@ <p> Private slot to empty the pip cache. </p> +<a NAME="PipPackagesWidget.__refreshDependencyTree" ID="PipPackagesWidget.__refreshDependencyTree"></a> +<h4>PipPackagesWidget.__refreshDependencyTree</h4> +<b>__refreshDependencyTree</b>(<i></i>) + +<p> + Private method to refresh the dependency tree. +</p> <a NAME="PipPackagesWidget.__refreshPackagesList" ID="PipPackagesWidget.__refreshPackagesList"></a> <h4>PipPackagesWidget.__refreshPackagesList</h4> <b>__refreshPackagesList</b>(<i></i>) <p> - Private method to referesh the packages list. + Private method to refresh the packages list. </p> <a NAME="PipPackagesWidget.__reinstallPackages" ID="PipPackagesWidget.__reinstallPackages"></a> <h4>PipPackagesWidget.__reinstallPackages</h4> @@ -545,11 +680,25 @@ </p> <a NAME="PipPackagesWidget.__search" ID="PipPackagesWidget.__search"></a> <h4>PipPackagesWidget.__search</h4> -<b>__search</b>(<i></i>) +<b>__search</b>(<i>page=1</i>) <p> Private method to perform the search by calling the PyPI search URL. </p> +<dl> + +<dt><i>page</i> (int (optional))</dt> +<dd> +search page to retrieve (defaults to 1) +</dd> +</dl> +<a NAME="PipPackagesWidget.__searchFirst" ID="PipPackagesWidget.__searchFirst"></a> +<h4>PipPackagesWidget.__searchFirst</h4> +<b>__searchFirst</b>(<i></i>) + +<p> + Private method to perform the search for packages. +</p> <a NAME="PipPackagesWidget.__searchResponse" ID="PipPackagesWidget.__searchResponse"></a> <h4>PipPackagesWidget.__searchResponse</h4> <b>__searchResponse</b>(<i>reply</i>) @@ -597,6 +746,14 @@ <p> Private slot to show a list of cached files. </p> +<a NAME="PipPackagesWidget.__showLicensesDialog" ID="PipPackagesWidget.__showLicensesDialog"></a> +<h4>PipPackagesWidget.__showLicensesDialog</h4> +<b>__showLicensesDialog</b>(<i></i>) + +<p> + Private slot to show a dialog with the licenses of the selected + environment. +</p> <a NAME="PipPackagesWidget.__showPackageDetails" ID="PipPackagesWidget.__showPackageDetails"></a> <h4>PipPackagesWidget.__showPackageDetails</h4> <b>__showPackageDetails</b>(<i>packageName, packageVersion, upgradable=False, installable=False</i>) @@ -625,6 +782,24 @@ (defaults to False) </dd> </dl> +<a NAME="PipPackagesWidget.__showPackageInformation" ID="PipPackagesWidget.__showPackageInformation"></a> +<h4>PipPackagesWidget.__showPackageInformation</h4> +<b>__showPackageInformation</b>(<i>packageName, infoWidget</i>) + +<p> + Private method to show information for a package. +</p> +<dl> + +<dt><i>packageName</i> (str)</dt> +<dd> +name of the package +</dd> +<dt><i>infoWidget</i> (QTreeWidget)</dt> +<dd> +reference to the widget to contain the information +</dd> +</dl> <a NAME="PipPackagesWidget.__showSearchedDetails" ID="PipPackagesWidget.__showSearchedDetails"></a> <h4>PipPackagesWidget.__showSearchedDetails</h4> <b>__showSearchedDetails</b>(<i>item=None</i>) @@ -639,6 +814,28 @@ reference to the search result item to show details for </dd> </dl> +<a NAME="PipPackagesWidget.__showVulnerabilityInformation" ID="PipPackagesWidget.__showVulnerabilityInformation"></a> +<h4>PipPackagesWidget.__showVulnerabilityInformation</h4> +<b>__showVulnerabilityInformation</b>(<i>packageName, packageVersion, vulnerabilities</i>) + +<p> + Private method to show the detected vulnerability data. +</p> +<dl> + +<dt><i>packageName</i> (str)</dt> +<dd> +name of the package +</dd> +<dt><i>packageVersion</i> (str)</dt> +<dd> +installed version number +</dd> +<dt><i>vulnerabilities</i> (list of Vulnerability)</dt> +<dd> +list of vulnerabilities +</dd> +</dl> <a NAME="PipPackagesWidget.__uninstallRequirements" ID="PipPackagesWidget.__uninstallRequirements"></a> <h4>PipPackagesWidget.__uninstallRequirements</h4> <b>__uninstallRequirements</b>(<i></i>) @@ -653,6 +850,13 @@ <p> Private method to set the state of the action buttons. </p> +<a NAME="PipPackagesWidget.__updateDepActionButtons" ID="PipPackagesWidget.__updateDepActionButtons"></a> +<h4>PipPackagesWidget.__updateDepActionButtons</h4> +<b>__updateDepActionButtons</b>(<i></i>) + +<p> + Private method to set the state of the dependency page action buttons. +</p> <a NAME="PipPackagesWidget.__updateSearchActionButtons" ID="PipPackagesWidget.__updateSearchActionButtons"></a> <h4>PipPackagesWidget.__updateSearchActionButtons</h4> <b>__updateSearchActionButtons</b>(<i></i>) @@ -667,6 +871,43 @@ <p> Private method to update the state of the search button. </p> +<a NAME="PipPackagesWidget.__updateSearchMoreButton" ID="PipPackagesWidget.__updateSearchMoreButton"></a> +<h4>PipPackagesWidget.__updateSearchMoreButton</h4> +<b>__updateSearchMoreButton</b>(<i>enable</i>) + +<p> + Private method to update the state of the search more button. +</p> +<dl> + +<dt><i>enable</i> (bool)</dt> +<dd> +flag indicating the desired enable state +</dd> +</dl> +<a NAME="PipPackagesWidget.__updateVulnerabilityData" ID="PipPackagesWidget.__updateVulnerabilityData"></a> +<h4>PipPackagesWidget.__updateVulnerabilityData</h4> +<b>__updateVulnerabilityData</b>(<i>clearFirst=True</i>) + +<p> + Private slot to update the shown vulnerability info. +</p> +<dl> + +<dt><i>clearFirst</i> (bool (optional))</dt> +<dd> +flag indicating to clear the vulnerability info first + (defaults to True) +</dd> +</dl> +<a NAME="PipPackagesWidget.__updateVulnerabilityDbCache" ID="PipPackagesWidget.__updateVulnerabilityDbCache"></a> +<h4>PipPackagesWidget.__updateVulnerabilityDbCache</h4> +<b>__updateVulnerabilityDbCache</b>(<i></i>) + +<p> + Private slot to initiate an update of the local cache of the + vulnerability database. +</p> <a NAME="PipPackagesWidget.executeInstallPackages" ID="PipPackagesWidget.executeInstallPackages"></a> <h4>PipPackagesWidget.executeInstallPackages</h4> <b>executeInstallPackages</b>(<i>packages, userSite=False</i>) @@ -732,18 +973,64 @@ Pip </dd> </dl> -<a NAME="PipPackagesWidget.on_environmentsComboBox_currentIndexChanged" ID="PipPackagesWidget.on_environmentsComboBox_currentIndexChanged"></a> -<h4>PipPackagesWidget.on_environmentsComboBox_currentIndexChanged</h4> -<b>on_environmentsComboBox_currentIndexChanged</b>(<i>index</i>) +<a NAME="PipPackagesWidget.on_dependenciesList_itemActivated" ID="PipPackagesWidget.on_dependenciesList_itemActivated"></a> +<h4>PipPackagesWidget.on_dependenciesList_itemActivated</h4> +<b>on_dependenciesList_itemActivated</b>(<i>item, column</i>) + +<p> + Private slot reacting on a package item of the dependency tree being + activated. +</p> +<dl> + +<dt><i>item</i> (QTreeWidgetItem)</dt> +<dd> +reference to the activated item +</dd> +<dt><i>column</i> (int)</dt> +<dd> +activated column +</dd> +</dl> +<a NAME="PipPackagesWidget.on_dependenciesList_itemPressed" ID="PipPackagesWidget.on_dependenciesList_itemPressed"></a> +<h4>PipPackagesWidget.on_dependenciesList_itemPressed</h4> +<b>on_dependenciesList_itemPressed</b>(<i>item, column</i>) + +<p> + Private slot reacting on a package item of the dependency tree being + pressed. +</p> +<dl> + +<dt><i>item</i> (QTreeWidgetItem)</dt> +<dd> +reference to the pressed item +</dd> +<dt><i>column</i> (int)</dt> +<dd> +pressed column +</dd> +</dl> +<a NAME="PipPackagesWidget.on_dependenciesList_itemSelectionChanged" ID="PipPackagesWidget.on_dependenciesList_itemSelectionChanged"></a> +<h4>PipPackagesWidget.on_dependenciesList_itemSelectionChanged</h4> +<b>on_dependenciesList_itemSelectionChanged</b>(<i></i>) + +<p> + Private slot reacting on a change of selected items of the dependency + tree. +</p> +<a NAME="PipPackagesWidget.on_environmentsComboBox_currentTextChanged" ID="PipPackagesWidget.on_environmentsComboBox_currentTextChanged"></a> +<h4>PipPackagesWidget.on_environmentsComboBox_currentTextChanged</h4> +<b>on_environmentsComboBox_currentTextChanged</b>(<i>name</i>) <p> Private slot handling the selection of a Python environment. </p> <dl> -<dt><i>index</i> (int)</dt> +<dt><i>name</i> (str)</dt> <dd> -index of the selected Python environment +name of the selected Python environment </dd> </dl> <a NAME="PipPackagesWidget.on_installButton_clicked" ID="PipPackagesWidget.on_installButton_clicked"></a> @@ -777,38 +1064,31 @@ </dl> <a NAME="PipPackagesWidget.on_localCheckBox_clicked" ID="PipPackagesWidget.on_localCheckBox_clicked"></a> <h4>PipPackagesWidget.on_localCheckBox_clicked</h4> -<b>on_localCheckBox_clicked</b>(<i>checked</i>) +<b>on_localCheckBox_clicked</b>(<i></i>) <p> Private slot handling the switching of the local mode. </p> -<dl> +<a NAME="PipPackagesWidget.on_localDepCheckBox_clicked" ID="PipPackagesWidget.on_localDepCheckBox_clicked"></a> +<h4>PipPackagesWidget.on_localDepCheckBox_clicked</h4> +<b>on_localDepCheckBox_clicked</b>(<i></i>) -<dt><i>checked</i> (bool)</dt> -<dd> -state of the local check box -</dd> -</dl> +<p> + Private slot handling the switching of the local mode. +</p> <a NAME="PipPackagesWidget.on_notRequiredCheckBox_clicked" ID="PipPackagesWidget.on_notRequiredCheckBox_clicked"></a> <h4>PipPackagesWidget.on_notRequiredCheckBox_clicked</h4> -<b>on_notRequiredCheckBox_clicked</b>(<i>checked</i>) +<b>on_notRequiredCheckBox_clicked</b>(<i></i>) <p> Private slot handling the switching of the 'not required' mode. </p> -<dl> - -<dt><i>checked</i> (bool)</dt> -<dd> -state of the 'not required' check box -</dd> -</dl> <a NAME="PipPackagesWidget.on_packagesList_itemActivated" ID="PipPackagesWidget.on_packagesList_itemActivated"></a> <h4>PipPackagesWidget.on_packagesList_itemActivated</h4> <b>on_packagesList_itemActivated</b>(<i>item, column</i>) <p> - Private slot reacting on a package item activation. + Private slot reacting on a package item being activated. </p> <dl> @@ -821,12 +1101,30 @@ activated column </dd> </dl> +<a NAME="PipPackagesWidget.on_packagesList_itemPressed" ID="PipPackagesWidget.on_packagesList_itemPressed"></a> +<h4>PipPackagesWidget.on_packagesList_itemPressed</h4> +<b>on_packagesList_itemPressed</b>(<i>item, column</i>) + +<p> + Private slot reacting on a package item being pressed. +</p> +<dl> + +<dt><i>item</i> (QTreeWidgetItem)</dt> +<dd> +reference to the pressed item +</dd> +<dt><i>column</i> (int)</dt> +<dd> +pressed column +</dd> +</dl> <a NAME="PipPackagesWidget.on_packagesList_itemSelectionChanged" ID="PipPackagesWidget.on_packagesList_itemSelectionChanged"></a> <h4>PipPackagesWidget.on_packagesList_itemSelectionChanged</h4> <b>on_packagesList_itemSelectionChanged</b>(<i></i>) <p> - Private slot handling the selection of a package. + Private slot reacting on a change of selected items. </p> <a NAME="PipPackagesWidget.on_refreshButton_clicked" ID="PipPackagesWidget.on_refreshButton_clicked"></a> <h4>PipPackagesWidget.on_refreshButton_clicked</h4> @@ -835,6 +1133,27 @@ <p> Private slot to refresh the display. </p> +<a NAME="PipPackagesWidget.on_refreshDependenciesButton_clicked" ID="PipPackagesWidget.on_refreshDependenciesButton_clicked"></a> +<h4>PipPackagesWidget.on_refreshDependenciesButton_clicked</h4> +<b>on_refreshDependenciesButton_clicked</b>(<i></i>) + +<p> + Private slot to refresh the dependency tree. +</p> +<a NAME="PipPackagesWidget.on_requiresButton_toggled" ID="PipPackagesWidget.on_requiresButton_toggled"></a> +<h4>PipPackagesWidget.on_requiresButton_toggled</h4> +<b>on_requiresButton_toggled</b>(<i>checked</i>) + +<p> + Private slot handling the selection of the view type. +</p> +<dl> + +<dt><i>checked</i> (bool)</dt> +<dd> +state of the radio button (unused) +</dd> +</dl> <a NAME="PipPackagesWidget.on_searchButton_clicked" ID="PipPackagesWidget.on_searchButton_clicked"></a> <h4>PipPackagesWidget.on_searchButton_clicked</h4> <b>on_searchButton_clicked</b>(<i></i>) @@ -863,6 +1182,13 @@ search term </dd> </dl> +<a NAME="PipPackagesWidget.on_searchMoreButton_clicked" ID="PipPackagesWidget.on_searchMoreButton_clicked"></a> +<h4>PipPackagesWidget.on_searchMoreButton_clicked</h4> +<b>on_searchMoreButton_clicked</b>(<i></i>) + +<p> + Private slot handling a press of the search more button. +</p> <a NAME="PipPackagesWidget.on_searchResultList_itemActivated" ID="PipPackagesWidget.on_searchResultList_itemActivated"></a> <h4>PipPackagesWidget.on_searchResultList_itemActivated</h4> <b>on_searchResultList_itemActivated</b>(<i>item, column</i>) @@ -902,6 +1228,14 @@ state of the search widget button </dd> </dl> +<a NAME="PipPackagesWidget.on_showDepPackageDetailsButton_clicked" ID="PipPackagesWidget.on_showDepPackageDetailsButton_clicked"></a> +<h4>PipPackagesWidget.on_showDepPackageDetailsButton_clicked</h4> +<b>on_showDepPackageDetailsButton_clicked</b>(<i></i>) + +<p> + Private slot to show information for the selected package of the + dependency tree. +</p> <a NAME="PipPackagesWidget.on_showDetailsButton_clicked" ID="PipPackagesWidget.on_showDetailsButton_clicked"></a> <h4>PipPackagesWidget.on_showDetailsButton_clicked</h4> <b>on_showDetailsButton_clicked</b>(<i></i>) @@ -939,18 +1273,18 @@ </p> <a NAME="PipPackagesWidget.on_userCheckBox_clicked" ID="PipPackagesWidget.on_userCheckBox_clicked"></a> <h4>PipPackagesWidget.on_userCheckBox_clicked</h4> -<b>on_userCheckBox_clicked</b>(<i>checked</i>) +<b>on_userCheckBox_clicked</b>(<i></i>) <p> Private slot handling the switching of the 'user-site' mode. </p> -<dl> +<a NAME="PipPackagesWidget.on_userDepCheckBox_clicked" ID="PipPackagesWidget.on_userDepCheckBox_clicked"></a> +<h4>PipPackagesWidget.on_userDepCheckBox_clicked</h4> +<b>on_userDepCheckBox_clicked</b>(<i></i>) -<dt><i>checked</i> (bool)</dt> -<dd> -state of the 'user-site' check box -</dd> -</dl> +<p> + Private slot handling the switching of the 'user-site' mode. +</p> <a NAME="PipPackagesWidget.on_verboseCheckBox_clicked" ID="PipPackagesWidget.on_verboseCheckBox_clicked"></a> <h4>PipPackagesWidget.on_verboseCheckBox_clicked</h4> <b>on_verboseCheckBox_clicked</b>(<i>checked</i>) @@ -966,6 +1300,34 @@ state of the checkbox </dd> </dl> +<a NAME="PipPackagesWidget.on_viewToggleButton_toggled" ID="PipPackagesWidget.on_viewToggleButton_toggled"></a> +<h4>PipPackagesWidget.on_viewToggleButton_toggled</h4> +<b>on_viewToggleButton_toggled</b>(<i>checked</i>) + +<p> + Private slot handling the view selection. +</p> +<dl> + +<dt><i>checked</i> (bool)</dt> +<dd> +state of the toggle button +</dd> +</dl> +<a NAME="PipPackagesWidget.on_vulnerabilityCheckBox_clicked" ID="PipPackagesWidget.on_vulnerabilityCheckBox_clicked"></a> +<h4>PipPackagesWidget.on_vulnerabilityCheckBox_clicked</h4> +<b>on_vulnerabilityCheckBox_clicked</b>(<i>checked</i>) + +<p> + Private slot handling a change of the automatic vulnerability checks. +</p> +<dl> + +<dt><i>checked</i> (bool)</dt> +<dd> +flag indicating the state of the check box +</dd> +</dl> <div align="right"><a href="#top">Up</a></div> <hr /> <hr />
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/Documentation/Source/eric7.PipInterface.PipVulnerabilityChecker.html Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,393 @@ +<!DOCTYPE html> +<html><head> +<title>eric7.PipInterface.PipVulnerabilityChecker</title> +<meta charset="UTF-8"> +<link rel="stylesheet" href="styles.css"> +</head> +<body> +<a NAME="top" ID="top"></a> +<h1>eric7.PipInterface.PipVulnerabilityChecker</h1> + +<p> +Module implementing a Python package vulnerability checker. +</p> +<p> +The vulnerability data is provided by the open Python vulnerability database +<a href="https://github.com/pyupio/safety-db">Safety DB</a>. +</p> +<h3>Global Attributes</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Classes</h3> + +<table> + +<tr> +<td><a href="#Package">Package</a></td> +<td>Class containing the package data.</td> +</tr> +<tr> +<td><a href="#PipVulnerabilityChecker">PipVulnerabilityChecker</a></td> +<td>Class implementing a Python package vulnerability checker.</td> +</tr> +<tr> +<td><a href="#Vulnerability">Vulnerability</a></td> +<td>Class containing the vulnerability data.</td> +</tr> +<tr> +<td><a href="#VulnerabilityCheckError">VulnerabilityCheckError</a></td> +<td>Class defining various vulnerability check error states.</td> +</tr> +</table> +<h3>Functions</h3> + +<table> +<tr><td>None</td></tr> +</table> +<hr /> +<hr /> +<a NAME="Package" ID="Package"></a> +<h2>Package</h2> + +<p> + Class containing the package data. +</p> +<h3>Derived from</h3> +None +<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>None</td></tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="PipVulnerabilityChecker" ID="PipVulnerabilityChecker"></a> +<h2>PipVulnerabilityChecker</h2> + +<p> + Class implementing a Python package vulnerability checker. +</p> +<h3>Derived from</h3> +QObject +<h3>Class Attributes</h3> + +<table> +<tr><td>FullDbFile</td></tr><tr><td>SummaryDbFile</td></tr> +</table> +<h3>Class Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> + +<table> + +<tr> +<td><a href="#PipVulnerabilityChecker.__init__">PipVulnerabilityChecker</a></td> +<td>Constructor</td> +</tr> +<tr> +<td><a href="#PipVulnerabilityChecker.__createCacheFile">__createCacheFile</a></td> +<td>Private method to create the cache file.</td> +</tr> +<tr> +<td><a href="#PipVulnerabilityChecker.__fetchVulnerabilityDatabase">__fetchVulnerabilityDatabase</a></td> +<td>Private method to get the data of the vulnerability database.</td> +</tr> +<tr> +<td><a href="#PipVulnerabilityChecker.__getDataFromCache">__getDataFromCache</a></td> +<td>Private method to get the vulnerability database from the cache.</td> +</tr> +<tr> +<td><a href="#PipVulnerabilityChecker.__getVulnerabilities">__getVulnerabilities</a></td> +<td>Private method to get the vulnerabilities for a package.</td> +</tr> +<tr> +<td><a href="#PipVulnerabilityChecker.__writeDataToCache">__writeDataToCache</a></td> +<td>Private method to write the vulnerability data for a database to the cache.</td> +</tr> +<tr> +<td><a href="#PipVulnerabilityChecker.check">check</a></td> +<td>Public method to check the given packages for vulnerabilities.</td> +</tr> +<tr> +<td><a href="#PipVulnerabilityChecker.updateVulnerabilityDb">updateVulnerabilityDb</a></td> +<td>Public method to update the cache of the vulnerability databases.</td> +</tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<a NAME="PipVulnerabilityChecker.__init__" ID="PipVulnerabilityChecker.__init__"></a> +<h4>PipVulnerabilityChecker (Constructor)</h4> +<b>PipVulnerabilityChecker</b>(<i>pip, parent=None</i>) + +<p> + Constructor +</p> +<dl> + +<dt><i>pip</i> (Pip)</dt> +<dd> +reference to the global pip interface +</dd> +<dt><i>parent</i> (QWidget (optional))</dt> +<dd> +reference to the parent widget (defaults to None) +</dd> +</dl> +<a NAME="PipVulnerabilityChecker.__createCacheFile" ID="PipVulnerabilityChecker.__createCacheFile"></a> +<h4>PipVulnerabilityChecker.__createCacheFile</h4> +<b>__createCacheFile</b>(<i></i>) + +<p> + Private method to create the cache file. +</p> +<p> + The cache file has the following structure. + { + "insecure.json": { + "cachedAt": 12345678 + "db": {} + }, + "insecure_full.json": { + "cachedAt": 12345678 + "db": {} + }, + } +</p> +<a NAME="PipVulnerabilityChecker.__fetchVulnerabilityDatabase" ID="PipVulnerabilityChecker.__fetchVulnerabilityDatabase"></a> +<h4>PipVulnerabilityChecker.__fetchVulnerabilityDatabase</h4> +<b>__fetchVulnerabilityDatabase</b>(<i>full=False, forceUpdate=False</i>) + +<p> + Private method to get the data of the vulnerability database. +</p> +<p> + If the cached data is still valid, this data will be used. + Otherwise a copy of the requested database will be downloaded + and cached. +</p> +<dl> + +<dt><i>full</i> (bool (optional))</dt> +<dd> +flag indicating to get the database containing the full + data set (defaults to False) +</dd> +<dt><i>forceUpdate</i> (bool (optional))</dt> +<dd> +flag indicating an update of the cache is required + (defaults to False) +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +dictionary containing the vulnerability data (full data set or + just package name and version specifier) +</dd> +</dl> +<a NAME="PipVulnerabilityChecker.__getDataFromCache" ID="PipVulnerabilityChecker.__getDataFromCache"></a> +<h4>PipVulnerabilityChecker.__getDataFromCache</h4> +<b>__getDataFromCache</b>(<i>dbName</i>) + +<p> + Private method to get the vulnerability database from the cache. +</p> +<dl> + +<dt><i>dbName</i> (str)</dt> +<dd> +name of the vulnerability database +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +dictionary containing the requested vulnerability data +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +dict +</dd> +</dl> +<a NAME="PipVulnerabilityChecker.__getVulnerabilities" ID="PipVulnerabilityChecker.__getVulnerabilities"></a> +<h4>PipVulnerabilityChecker.__getVulnerabilities</h4> +<b>__getVulnerabilities</b>(<i>package, specifier, db</i>) + +<p> + Private method to get the vulnerabilities for a package. +</p> +<dl> + +<dt><i>package</i> (str)</dt> +<dd> +name of the package +</dd> +<dt><i>specifier</i> (Specifier)</dt> +<dd> +package specifier +</dd> +<dt><i>db</i> (dict)</dt> +<dd> +vulnerability data +</dd> +</dl> +<dl> +<dt>Yield:</dt> +<dd> +dictionary containing the vulnerability data for the package +</dd> +</dl> +<dl> +<dt>Yield Type:</dt> +<dd> +dict +</dd> +</dl> +<a NAME="PipVulnerabilityChecker.__writeDataToCache" ID="PipVulnerabilityChecker.__writeDataToCache"></a> +<h4>PipVulnerabilityChecker.__writeDataToCache</h4> +<b>__writeDataToCache</b>(<i>dbName, data</i>) + +<p> + Private method to write the vulnerability data for a database to the + cache. +</p> +<dl> + +<dt><i>dbName</i> (str)</dt> +<dd> +name of the vulnerability database +</dd> +<dt><i>data</i> (dict)</dt> +<dd> +dictionary containing the vulnerability data +</dd> +</dl> +<a NAME="PipVulnerabilityChecker.check" ID="PipVulnerabilityChecker.check"></a> +<h4>PipVulnerabilityChecker.check</h4> +<b>check</b>(<i>packages</i>) + +<p> + Public method to check the given packages for vulnerabilities. +</p> +<dl> + +<dt><i>packages</i> (Package)</dt> +<dd> +list of packages +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +tuple containing an error status and a dictionary containing + detected vulnerable packages keyed by package name +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +tuple of (VulnerabilityCheckError, list of Vulnerability) +</dd> +</dl> +<a NAME="PipVulnerabilityChecker.updateVulnerabilityDb" ID="PipVulnerabilityChecker.updateVulnerabilityDb"></a> +<h4>PipVulnerabilityChecker.updateVulnerabilityDb</h4> +<b>updateVulnerabilityDb</b>(<i></i>) + +<p> + Public method to update the cache of the vulnerability databases. +</p> +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="Vulnerability" ID="Vulnerability"></a> +<h2>Vulnerability</h2> + +<p> + Class containing the vulnerability data. +</p> +<h3>Derived from</h3> +None +<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>None</td></tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="VulnerabilityCheckError" ID="VulnerabilityCheckError"></a> +<h2>VulnerabilityCheckError</h2> + +<p> + Class defining various vulnerability check error states. +</p> +<h3>Derived from</h3> +enum.Enum +<h3>Class Attributes</h3> + +<table> +<tr><td>FullDbUnavailable</td></tr><tr><td>OK</td></tr><tr><td>SummaryDbUnavailable</td></tr> +</table> +<h3>Class Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/Documentation/Source/eric7.PipInterface.piplicenses.html Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,521 @@ +<!DOCTYPE html> +<html><head> +<title>eric7.PipInterface.piplicenses</title> +<meta charset="UTF-8"> +<link rel="stylesheet" href="styles.css"> +</head> +<body> +<a NAME="top" ID="top"></a> +<h1>eric7.PipInterface.piplicenses</h1> + +<p> +pip-licenses +</p> +<p> +MIT License +</p> +<p> +Copyright (c) 2018 raimon +</p> +<p> +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +</p> +<p> +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +</p> +<p> +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +</p> +<h3>Global Attributes</h3> + +<table> +<tr><td>DEFAULT_OUTPUT_FIELDS</td></tr><tr><td>FIELDS_TO_METADATA_KEYS</td></tr><tr><td>FIELD_NAMES</td></tr><tr><td>LICENSE_UNKNOWN</td></tr><tr><td>MAP_DEST_TO_ENUM</td></tr><tr><td>METADATA_KEYS</td></tr><tr><td>SUMMARY_OUTPUT_FIELDS</td></tr><tr><td>SYSTEM_PACKAGES</td></tr><tr><td>__author__</td></tr><tr><td>__license__</td></tr><tr><td>__pkgname__</td></tr><tr><td>__summary__</td></tr><tr><td>__url__</td></tr><tr><td>__version__</td></tr> +</table> +<h3>Classes</h3> + +<table> + +<tr> +<td><a href="#CompatibleArgumentParser">CompatibleArgumentParser</a></td> +<td></td> +</tr> +<tr> +<td><a href="#CustomHelpFormatter">CustomHelpFormatter</a></td> +<td></td> +</tr> +<tr> +<td><a href="#CustomNamespace">CustomNamespace</a></td> +<td></td> +</tr> +<tr> +<td><a href="#FromArg">FromArg</a></td> +<td></td> +</tr> +<tr> +<td><a href="#NoValueEnum">NoValueEnum</a></td> +<td></td> +</tr> +<tr> +<td><a href="#OrderArg">OrderArg</a></td> +<td></td> +</tr> +<tr> +<td><a href="#SelectAction">SelectAction</a></td> +<td></td> +</tr> +</table> +<h3>Functions</h3> + +<table> + +<tr> +<td><a href="#choices_from_enum">choices_from_enum</a></td> +<td></td> +</tr> +<tr> +<td><a href="#create_licenses_list">create_licenses_list</a></td> +<td></td> +</tr> +<tr> +<td><a href="#create_output_string">create_output_string</a></td> +<td></td> +</tr> +<tr> +<td><a href="#create_parser">create_parser</a></td> +<td></td> +</tr> +<tr> +<td><a href="#create_summary_list">create_summary_list</a></td> +<td></td> +</tr> +<tr> +<td><a href="#enum_key_to_value">enum_key_to_value</a></td> +<td></td> +</tr> +<tr> +<td><a href="#find_license_from_classifier">find_license_from_classifier</a></td> +<td></td> +</tr> +<tr> +<td><a href="#get_installed_distributions">get_installed_distributions</a></td> +<td></td> +</tr> +<tr> +<td><a href="#get_output_fields">get_output_fields</a></td> +<td></td> +</tr> +<tr> +<td><a href="#get_packages">get_packages</a></td> +<td></td> +</tr> +<tr> +<td><a href="#get_pkg_included_file">get_pkg_included_file</a></td> +<td>Attempt to find the package's included file on disk and return the tuple (included_file_path, included_file_contents).</td> +</tr> +<tr> +<td><a href="#get_pkg_info">get_pkg_info</a></td> +<td></td> +</tr> +<tr> +<td><a href="#main">main</a></td> +<td></td> +</tr> +<tr> +<td><a href="#select_license_by_source">select_license_by_source</a></td> +<td></td> +</tr> +<tr> +<td><a href="#value_to_enum_key">value_to_enum_key</a></td> +<td></td> +</tr> +</table> +<hr /> +<hr /> +<a NAME="CompatibleArgumentParser" ID="CompatibleArgumentParser"></a> +<h2>CompatibleArgumentParser</h2> + +<h3>Derived from</h3> +argparse.ArgumentParser +<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="#CompatibleArgumentParser._verify_args">_verify_args</a></td> +<td></td> +</tr> +<tr> +<td><a href="#CompatibleArgumentParser.parse_args">parse_args</a></td> +<td></td> +</tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<a NAME="CompatibleArgumentParser._verify_args" ID="CompatibleArgumentParser._verify_args"></a> +<h4>CompatibleArgumentParser._verify_args</h4> +<b>_verify_args</b>(<i>args: CustomNamespace</i>) + +<a NAME="CompatibleArgumentParser.parse_args" ID="CompatibleArgumentParser.parse_args"></a> +<h4>CompatibleArgumentParser.parse_args</h4> +<b>parse_args</b>(<i>args: Optional[Sequence[Text]] = None, namespace: CustomNamespace = None</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="CustomHelpFormatter" ID="CustomHelpFormatter"></a> +<h2>CustomHelpFormatter</h2> + +<h3>Derived from</h3> +argparse.HelpFormatter +<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="#CustomHelpFormatter.__init__">CustomHelpFormatter</a></td> +<td></td> +</tr> +<tr> +<td><a href="#CustomHelpFormatter._expand_help">_expand_help</a></td> +<td></td> +</tr> +<tr> +<td><a href="#CustomHelpFormatter._format_action">_format_action</a></td> +<td></td> +</tr> +<tr> +<td><a href="#CustomHelpFormatter._split_lines">_split_lines</a></td> +<td></td> +</tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<a NAME="CustomHelpFormatter.__init__" ID="CustomHelpFormatter.__init__"></a> +<h4>CustomHelpFormatter (Constructor)</h4> +<b>CustomHelpFormatter</b>(<i>prog: Text, indent_increment: int = 2, max_help_position: int = 24, width: Optional[int] = None</i>) + +<a NAME="CustomHelpFormatter._expand_help" ID="CustomHelpFormatter._expand_help"></a> +<h4>CustomHelpFormatter._expand_help</h4> +<b>_expand_help</b>(<i>action: argparse.Action</i>) + +<a NAME="CustomHelpFormatter._format_action" ID="CustomHelpFormatter._format_action"></a> +<h4>CustomHelpFormatter._format_action</h4> +<b>_format_action</b>(<i>action: argparse.Action</i>) + +<a NAME="CustomHelpFormatter._split_lines" ID="CustomHelpFormatter._split_lines"></a> +<h4>CustomHelpFormatter._split_lines</h4> +<b>_split_lines</b>(<i>text: Text, width: int</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="CustomNamespace" ID="CustomNamespace"></a> +<h2>CustomNamespace</h2> + +<h3>Derived from</h3> +argparse.Namespace +<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>None</td></tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="FromArg" ID="FromArg"></a> +<h2>FromArg</h2> + +<h3>Derived from</h3> +NoValueEnum +<h3>Class Attributes</h3> + +<table> +<tr><td>ALL</td></tr><tr><td>CLASSIFIER</td></tr><tr><td>META</td></tr><tr><td>MIXED</td></tr> +</table> +<h3>Class Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="NoValueEnum" ID="NoValueEnum"></a> +<h2>NoValueEnum</h2> + +<h3>Derived from</h3> +Enum +<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="#NoValueEnum.__repr__">__repr__</a></td> +<td></td> +</tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<a NAME="NoValueEnum.__repr__" ID="NoValueEnum.__repr__"></a> +<h4>NoValueEnum.__repr__</h4> +<b>__repr__</b>(<i></i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="OrderArg" ID="OrderArg"></a> +<h2>OrderArg</h2> + +<h3>Derived from</h3> +NoValueEnum +<h3>Class Attributes</h3> + +<table> +<tr><td>AUTHOR</td></tr><tr><td>COUNT</td></tr><tr><td>LICENSE</td></tr><tr><td>NAME</td></tr><tr><td>URL</td></tr> +</table> +<h3>Class Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="SelectAction" ID="SelectAction"></a> +<h2>SelectAction</h2> + +<h3>Derived from</h3> +argparse.Action +<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="#SelectAction.__call__">__call__</a></td> +<td></td> +</tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<a NAME="SelectAction.__call__" ID="SelectAction.__call__"></a> +<h4>SelectAction.__call__</h4> +<b>__call__</b>(<i>parser: argparse.ArgumentParser, namespace: argparse.Namespace, values: Text, option_string: Optional[Text] = None, </i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="choices_from_enum" ID="choices_from_enum"></a> +<h2>choices_from_enum</h2> +<b>choices_from_enum</b>(<i>enum_cls: NoValueEnum</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="create_licenses_list" ID="create_licenses_list"></a> +<h2>create_licenses_list</h2> +<b>create_licenses_list</b>(<i>args: "CustomNamespace", output_fields=DEFAULT_OUTPUT_FIELDS</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="create_output_string" ID="create_output_string"></a> +<h2>create_output_string</h2> +<b>create_output_string</b>(<i>args: "CustomNamespace"</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="create_parser" ID="create_parser"></a> +<h2>create_parser</h2> +<b>create_parser</b>(<i></i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="create_summary_list" ID="create_summary_list"></a> +<h2>create_summary_list</h2> +<b>create_summary_list</b>(<i>args: "CustomNamespace"</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="enum_key_to_value" ID="enum_key_to_value"></a> +<h2>enum_key_to_value</h2> +<b>enum_key_to_value</b>(<i>enum_key: Enum</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="find_license_from_classifier" ID="find_license_from_classifier"></a> +<h2>find_license_from_classifier</h2> +<b>find_license_from_classifier</b>(<i>message</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="get_installed_distributions" ID="get_installed_distributions"></a> +<h2>get_installed_distributions</h2> +<b>get_installed_distributions</b>(<i>local_only=True, user_only=False</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="get_output_fields" ID="get_output_fields"></a> +<h2>get_output_fields</h2> +<b>get_output_fields</b>(<i>args: "CustomNamespace"</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="get_packages" ID="get_packages"></a> +<h2>get_packages</h2> +<b>get_packages</b>(<i>args: "CustomNamespace"</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="get_pkg_included_file" ID="get_pkg_included_file"></a> +<h2>get_pkg_included_file</h2> +<b>get_pkg_included_file</b>(<i>pkg, file_names</i>) + +<p> + Attempt to find the package's included file on disk and return the + tuple (included_file_path, included_file_contents). +</p> +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="get_pkg_info" ID="get_pkg_info"></a> +<h2>get_pkg_info</h2> +<b>get_pkg_info</b>(<i>pkg</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="main" ID="main"></a> +<h2>main</h2> +<b>main</b>(<i></i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="select_license_by_source" ID="select_license_by_source"></a> +<h2>select_license_by_source</h2> +<b>select_license_by_source</b>(<i>from_source, license_classifier, license_meta</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="value_to_enum_key" ID="value_to_enum_key"></a> +<h2>value_to_enum_key</h2> +<b>value_to_enum_key</b>(<i>value: str</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- a/eric7/Documentation/Source/eric7.UI.UserInterface.html Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Documentation/Source/eric7.UI.UserInterface.html Sat Apr 02 11:23:11 2022 +0200 @@ -561,6 +561,10 @@ <td>Private method to open the last file, project or multiproject.</td> </tr> <tr> +<td><a href="#UserInterface.__performUpgrade">__performUpgrade</a></td> +<td>Private method to perform the requested upgrade operation.</td> +</tr> +<tr> <td><a href="#UserInterface.__pluginInstallFinished">__pluginInstallFinished</a></td> <td>Private slot to handle the finishing of the plugin install dialog.</td> </tr> @@ -649,10 +653,6 @@ <td>Private method to configure the dock window created with __createDockWindow().</td> </tr> <tr> -<td><a href="#UserInterface.__showAvailableVersionInfos">__showAvailableVersionInfos</a></td> -<td>Private method to show the versions available for download.</td> -</tr> -<tr> <td><a href="#UserInterface.__showCertificatesDialog">__showCertificatesDialog</a></td> <td>Private slot to show the certificates management dialog.</td> </tr> @@ -877,26 +877,10 @@ <td>Private method to update the external tools actions for the current tool group.</td> </tr> <tr> -<td><a href="#UserInterface.__updateVersionsUrls">__updateVersionsUrls</a></td> -<td>Private method to update the URLs from which to retrieve the versions file.</td> -</tr> -<tr> -<td><a href="#UserInterface.__versionCheckResult">__versionCheckResult</a></td> -<td>Private method to show the result of the version check action.</td> -</tr> -<tr> <td><a href="#UserInterface.__versionToTuple">__versionToTuple</a></td> <td>Private method to convert a version string into a tuple.</td> </tr> <tr> -<td><a href="#UserInterface.__versionsDownloadCanceled">__versionsDownloadCanceled</a></td> -<td>Private slot called to cancel the version check.</td> -</tr> -<tr> -<td><a href="#UserInterface.__versionsDownloadDone">__versionsDownloadDone</a></td> -<td>Private slot called, after the versions file has been downloaded from the internet.</td> -</tr> -<tr> <td><a href="#UserInterface.__webBrowser">__webBrowser</a></td> <td>Private slot to start the eric web browser.</td> </tr> @@ -1070,7 +1054,7 @@ </tr> <tr> <td><a href="#UserInterface.performVersionCheck">performVersionCheck</a></td> -<td>Public method to check the internet for an eric update.</td> +<td>Public method to check for an update even if not installed via PyPI.</td> </tr> <tr> <td><a href="#UserInterface.processArgs">processArgs</a></td> @@ -1101,10 +1085,6 @@ <td>Public slot to activate the debug view profile.</td> </tr> <tr> -<td><a href="#UserInterface.showAvailableVersionsInfo">showAvailableVersionsInfo</a></td> -<td>Public method to show the eric versions available for download.</td> -</tr> -<tr> <td><a href="#UserInterface.showEmailDialog">showEmailDialog</a></td> <td>Public slot to show the email dialog in a given mode.</td> </tr> @@ -1149,6 +1129,18 @@ <td>Public method to unregister a toolbar.</td> </tr> <tr> +<td><a href="#UserInterface.upgradeEric">upgradeEric</a></td> +<td>Public slot to upgrade the eric-ide package of the eric7 environment.</td> +</tr> +<tr> +<td><a href="#UserInterface.upgradeEricPyQt">upgradeEricPyQt</a></td> +<td>Public slot to upgrade the eric-ide and Pyqt packages of the eric7 environment.</td> +</tr> +<tr> +<td><a href="#UserInterface.upgradePyQt">upgradePyQt</a></td> +<td>Public slot to upgrade the PyQt packages of the eric7 environment.</td> +</tr> +<tr> <td><a href="#UserInterface.versionIsNewer">versionIsNewer</a></td> <td>Public method to check, if the eric version is good compared to the required version.</td> </tr> @@ -2057,6 +2049,26 @@ "Nothing", "File", "Project", "MultiProject" or "Session") </dd> </dl> +<a NAME="UserInterface.__performUpgrade" ID="UserInterface.__performUpgrade"></a> +<h4>UserInterface.__performUpgrade</h4> +<b>__performUpgrade</b>(<i>upgradeType</i>) + +<p> + Private method to perform the requested upgrade operation. +</p> +<p> + This action needs to shut down eric first, start a non-PyQt application + performing the upgrade of the PyQt packages via pip and restart eric + with the passed arguments. The upgrade process is not visible. +</p> +<dl> + +<dt><i>upgradeType</i> (str)</dt> +<dd> +upgrade operation (one of 'eric', 'ericpyqt', + 'pyqt') +</dd> +</dl> <a NAME="UserInterface.__pluginInstallFinished" ID="UserInterface.__pluginInstallFinished"></a> <h4>UserInterface.__pluginInstallFinished</h4> <b>__pluginInstallFinished</b>(<i></i>) @@ -2313,21 +2325,6 @@ caption of the dock window (string) </dd> </dl> -<a NAME="UserInterface.__showAvailableVersionInfos" ID="UserInterface.__showAvailableVersionInfos"></a> -<h4>UserInterface.__showAvailableVersionInfos</h4> -<b>__showAvailableVersionInfos</b>(<i>versions</i>) - -<p> - Private method to show the versions available for download. -</p> -<dl> - -<dt><i>versions</i></dt> -<dd> -contents of the downloaded versions file (list of - strings) -</dd> -</dl> <a NAME="UserInterface.__showCertificatesDialog" ID="UserInterface.__showCertificatesDialog"></a> <h4>UserInterface.__showCertificatesDialog</h4> <b>__showCertificatesDialog</b>(<i></i>) @@ -2863,37 +2860,6 @@ Private method to update the external tools actions for the current tool group. </p> -<a NAME="UserInterface.__updateVersionsUrls" ID="UserInterface.__updateVersionsUrls"></a> -<h4>UserInterface.__updateVersionsUrls</h4> -<b>__updateVersionsUrls</b>(<i>versions</i>) - -<p> - Private method to update the URLs from which to retrieve the versions - file. -</p> -<dl> - -<dt><i>versions</i></dt> -<dd> -contents of the downloaded versions file (list of - strings) -</dd> -</dl> -<a NAME="UserInterface.__versionCheckResult" ID="UserInterface.__versionCheckResult"></a> -<h4>UserInterface.__versionCheckResult</h4> -<b>__versionCheckResult</b>(<i>versions</i>) - -<p> - Private method to show the result of the version check action. -</p> -<dl> - -<dt><i>versions</i></dt> -<dd> -contents of the downloaded versions file (list of - strings) -</dd> -</dl> <a NAME="UserInterface.__versionToTuple" ID="UserInterface.__versionToTuple"></a> <h4>UserInterface.__versionToTuple</h4> <b>__versionToTuple</b>(<i>version</i>) @@ -2920,28 +2886,6 @@ tuple of int </dd> </dl> -<a NAME="UserInterface.__versionsDownloadCanceled" ID="UserInterface.__versionsDownloadCanceled"></a> -<h4>UserInterface.__versionsDownloadCanceled</h4> -<b>__versionsDownloadCanceled</b>(<i></i>) - -<p> - Private slot called to cancel the version check. -</p> -<a NAME="UserInterface.__versionsDownloadDone" ID="UserInterface.__versionsDownloadDone"></a> -<h4>UserInterface.__versionsDownloadDone</h4> -<b>__versionsDownloadDone</b>(<i>reply</i>) - -<p> - Private slot called, after the versions file has been downloaded - from the internet. -</p> -<dl> - -<dt><i>reply</i> (QNetworkReply)</dt> -<dd> -reference to the network reply -</dd> -</dl> <a NAME="UserInterface.__webBrowser" ID="UserInterface.__webBrowser"></a> <h4>UserInterface.__webBrowser</h4> <b>__webBrowser</b>(<i>home=""</i>) @@ -3567,26 +3511,11 @@ </dl> <a NAME="UserInterface.performVersionCheck" ID="UserInterface.performVersionCheck"></a> <h4>UserInterface.performVersionCheck</h4> -<b>performVersionCheck</b>(<i>manual=True, alternative=0, showVersions=False</i>) +<b>performVersionCheck</b>(<i></i>) <p> - Public method to check the internet for an eric update. + Public method to check for an update even if not installed via PyPI. </p> -<dl> - -<dt><i>manual</i></dt> -<dd> -flag indicating an invocation via the menu (boolean) -</dd> -<dt><i>alternative</i></dt> -<dd> -index of server to download from (integer) -</dd> -<dt><i>showVersions</i></dt> -<dd> -flag indicating the show versions mode (boolean) -</dd> -</dl> <a NAME="UserInterface.processArgs" ID="UserInterface.processArgs"></a> <h4>UserInterface.processArgs</h4> <b>processArgs</b>(<i>args</i>) @@ -3723,13 +3652,6 @@ be saved (boolean) </dd> </dl> -<a NAME="UserInterface.showAvailableVersionsInfo" ID="UserInterface.showAvailableVersionsInfo"></a> -<h4>UserInterface.showAvailableVersionsInfo</h4> -<b>showAvailableVersionsInfo</b>(<i></i>) - -<p> - Public method to show the eric versions available for download. -</p> <a NAME="UserInterface.showEmailDialog" ID="UserInterface.showEmailDialog"></a> <h4>UserInterface.showEmailDialog</h4> <b>showEmailDialog</b>(<i>mode, attachFile=None, deleteAttachFile=False</i>) @@ -3907,6 +3829,64 @@ name of the toolbar (string). </dd> </dl> +<a NAME="UserInterface.upgradeEric" ID="UserInterface.upgradeEric"></a> +<h4>UserInterface.upgradeEric</h4> +<b>upgradeEric</b>(<i></i>) + +<p> + Public slot to upgrade the eric-ide package of the eric7 environment. +</p> +<dl> +<dt>Return:</dt> +<dd> +flag indicating a successful upgrade +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +bool +</dd> +</dl> +<a NAME="UserInterface.upgradeEricPyQt" ID="UserInterface.upgradeEricPyQt"></a> +<h4>UserInterface.upgradeEricPyQt</h4> +<b>upgradeEricPyQt</b>(<i></i>) + +<p> + Public slot to upgrade the eric-ide and Pyqt packages of the eric7 + environment. +</p> +<dl> +<dt>Return:</dt> +<dd> +flag indicating a successful upgrade +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +bool +</dd> +</dl> +<a NAME="UserInterface.upgradePyQt" ID="UserInterface.upgradePyQt"></a> +<h4>UserInterface.upgradePyQt</h4> +<b>upgradePyQt</b>(<i></i>) + +<p> + Public slot to upgrade the PyQt packages of the eric7 environment. +</p> +<dl> +<dt>Return:</dt> +<dd> +flag indicating a successful upgrade +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +bool +</dd> +</dl> <a NAME="UserInterface.versionIsNewer" ID="UserInterface.versionIsNewer"></a> <h4>UserInterface.versionIsNewer</h4> <b>versionIsNewer</b>(<i>required, snapshot=None</i>)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/Documentation/Source/eric7.UI.VersionsDialog.html Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,104 @@ +<!DOCTYPE html> +<html><head> +<title>eric7.UI.VersionsDialog</title> +<meta charset="UTF-8"> +<link rel="stylesheet" href="styles.css"> +</head> +<body> +<a NAME="top" ID="top"></a> +<h1>eric7.UI.VersionsDialog</h1> + +<p> +Module implementing a dialog to show the versions of various components. +</p> +<h3>Global Attributes</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Classes</h3> + +<table> + +<tr> +<td><a href="#VersionsDialog">VersionsDialog</a></td> +<td>Class implementing a dialog to show the versions of various components.</td> +</tr> +</table> +<h3>Functions</h3> + +<table> +<tr><td>None</td></tr> +</table> +<hr /> +<hr /> +<a NAME="VersionsDialog" ID="VersionsDialog"></a> +<h2>VersionsDialog</h2> + +<p> + Class implementing a dialog to show the versions of various components. +</p> +<h3>Derived from</h3> +QDialog, Ui_VersionsDialog +<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="#VersionsDialog.__init__">VersionsDialog</a></td> +<td>Constructor</td> +</tr> +<tr> +<td><a href="#VersionsDialog.__checkForUpdate">__checkForUpdate</a></td> +<td>Private slot to check, if updates of PyQt6 packages or the eric-ide package are available.</td> +</tr> +</table> +<h3>Static Methods</h3> + +<table> +<tr><td>None</td></tr> +</table> + +<a NAME="VersionsDialog.__init__" ID="VersionsDialog.__init__"></a> +<h4>VersionsDialog (Constructor)</h4> +<b>VersionsDialog</b>(<i>parent, title, text</i>) + +<p> + Constructor +</p> +<dl> + +<dt><i>parent</i> (UserInterface)</dt> +<dd> +reference to the parent widget +</dd> +<dt><i>title</i> (str)</dt> +<dd> +dialog title +</dd> +<dt><i>text</i> (str)</dt> +<dd> +versions text to be shown +</dd> +</dl> +<a NAME="VersionsDialog.__checkForUpdate" ID="VersionsDialog.__checkForUpdate"></a> +<h4>VersionsDialog.__checkForUpdate</h4> +<b>__checkForUpdate</b>(<i></i>) + +<p> + Private slot to check, if updates of PyQt6 packages or the eric-ide + package are available. +</p> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/Documentation/Source/eric7.UI.upgrader.html Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,102 @@ +<!DOCTYPE html> +<html><head> +<title>eric7.UI.upgrader</title> +<meta charset="UTF-8"> +<link rel="stylesheet" href="styles.css"> +</head> +<body> +<a NAME="top" ID="top"></a> +<h1>eric7.UI.upgrader</h1> + +<p> +Script to upgrade the packages eric depends on. +</p> +<p> +This process must be performed while eric is closed. The script will upgrade +the requested packages and will restart eric. +</p> +<h3>Global Attributes</h3> + +<table> +<tr><td>_ericPackages</td></tr><tr><td>_pyqtPackages</td></tr> +</table> +<h3>Classes</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Functions</h3> + +<table> + +<tr> +<td><a href="#doUpgrade">doUpgrade</a></td> +<td>Function to upgrade the given packages via pip.</td> +</tr> +<tr> +<td><a href="#main">main</a></td> +<td>Main entry point into the upgrader.</td> +</tr> +<tr> +<td><a href="#startEric">startEric</a></td> +<td>Function to start eric with the given arguments.</td> +</tr> +</table> +<hr /> +<hr /> +<a NAME="doUpgrade" ID="doUpgrade"></a> +<h2>doUpgrade</h2> +<b>doUpgrade</b>(<i>packages</i>) + +<p> + Function to upgrade the given packages via pip. +</p> +<dl> + +<dt><i>packages</i> (list of str)</dt> +<dd> +list of packages to be upgraded +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +flag indicating a successful installation +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +bool +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="main" ID="main"></a> +<h2>main</h2> +<b>main</b>(<i></i>) + +<p> + Main entry point into the upgrader. +</p> +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="startEric" ID="startEric"></a> +<h2>startEric</h2> +<b>startEric</b>(<i>args</i>) + +<p> + Function to start eric with the given arguments. +</p> +<dl> + +<dt><i>args</i> (list of str)</dt> +<dd> +list containing the start arguments +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- a/eric7/Documentation/Source/eric7.VirtualEnv.VirtualenvAddEditDialog.html Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Documentation/Source/eric7.VirtualEnv.VirtualenvAddEditDialog.html Sat Apr 02 11:23:11 2022 +0200 @@ -59,6 +59,10 @@ <td>Constructor</td> </tr> <tr> +<td><a href="#VirtualenvAddEditDialog.__detectPythonInterpreter">__detectPythonInterpreter</a></td> +<td>Private method to search for a suitable Python interpreter inside an environment.</td> +</tr> +<tr> <td><a href="#VirtualenvAddEditDialog.__updateOk">__updateOk</a></td> <td>Private slot to update the state of the OK button.</td> </tr> @@ -148,6 +152,33 @@ reference to the parent widget </dd> </dl> +<a NAME="VirtualenvAddEditDialog.__detectPythonInterpreter" ID="VirtualenvAddEditDialog.__detectPythonInterpreter"></a> +<h4>VirtualenvAddEditDialog.__detectPythonInterpreter</h4> +<b>__detectPythonInterpreter</b>(<i>venvDirectory</i>) + +<p> + Private method to search for a suitable Python interpreter inside an + environment. +</p> +<dl> + +<dt><i>venvDirectory</i> (str)</dt> +<dd> +directory for the virtual environment +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +detected Python interpreter or empty string +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +str +</dd> +</dl> <a NAME="VirtualenvAddEditDialog.__updateOk" ID="VirtualenvAddEditDialog.__updateOk"></a> <h4>VirtualenvAddEditDialog.__updateOk</h4> <b>__updateOk</b>(<i></i>)
--- a/eric7/Documentation/Source/eric7.VirtualEnv.VirtualenvManager.html Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Documentation/Source/eric7.VirtualEnv.VirtualenvManager.html Sat Apr 02 11:23:11 2022 +0200 @@ -107,6 +107,10 @@ <td>Public method to delete virtual environments from the list and disk.</td> </tr> <tr> +<td><a href="#VirtualenvManager.environmentForInterpreter">environmentForInterpreter</a></td> +<td>Public method to get the environment a given interpreter belongs to.</td> +</tr> +<tr> <td><a href="#VirtualenvManager.getDefaultEnvironment">getDefaultEnvironment</a></td> <td>Public method to get the default virtual environment.</td> </tr> @@ -299,6 +303,33 @@ list of logical names for the virtual environments </dd> </dl> +<a NAME="VirtualenvManager.environmentForInterpreter" ID="VirtualenvManager.environmentForInterpreter"></a> +<h4>VirtualenvManager.environmentForInterpreter</h4> +<b>environmentForInterpreter</b>(<i>interpreter</i>) + +<p> + Public method to get the environment a given interpreter belongs to. +</p> +<dl> + +<dt><i>interpreter</i> (str)</dt> +<dd> +path of the interpreter +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +tuple containing the environment name and a dictionary + containing a copy of the default virtual environment +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +tuple of (str, dict) +</dd> +</dl> <a NAME="VirtualenvManager.getDefaultEnvironment" ID="VirtualenvManager.getDefaultEnvironment"></a> <h4>VirtualenvManager.getDefaultEnvironment</h4> <b>getDefaultEnvironment</b>(<i></i>)
--- a/eric7/Documentation/Source/index-eric7.PipInterface.html Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Documentation/Source/index-eric7.PipInterface.html Sat Apr 02 11:23:11 2022 +0200 @@ -32,6 +32,10 @@ <td>Module implementing a dialog to generate a requirements file.</td> </tr> <tr> +<td><a href="eric7.PipInterface.PipLicensesDialog.html">PipLicensesDialog</a></td> +<td>Module implementing a dialog to show the licenses of an environment.</td> +</tr> +<tr> <td><a href="eric7.PipInterface.PipPackageDetailsDialog.html">PipPackageDetailsDialog</a></td> <td>Module implementing a dialog to show details about a package.</td> </tr> @@ -43,5 +47,13 @@ <td><a href="eric7.PipInterface.PipPackagesWidget.html">PipPackagesWidget</a></td> <td>Module implementing the pip packages management widget.</td> </tr> +<tr> +<td><a href="eric7.PipInterface.PipVulnerabilityChecker.html">PipVulnerabilityChecker</a></td> +<td>Module implementing a Python package vulnerability checker.</td> +</tr> +<tr> +<td><a href="eric7.PipInterface.piplicenses.html">piplicenses</a></td> +<td>pip-licenses</td> +</tr> </table> </body></html> \ No newline at end of file
--- a/eric7/Documentation/Source/index-eric7.UI.html Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Documentation/Source/index-eric7.UI.html Sat Apr 02 11:23:11 2022 +0200 @@ -147,5 +147,13 @@ <td><a href="eric7.UI.UserInterface.html">UserInterface</a></td> <td>Module implementing the main user interface.</td> </tr> +<tr> +<td><a href="eric7.UI.VersionsDialog.html">VersionsDialog</a></td> +<td>Module implementing a dialog to show the versions of various components.</td> +</tr> +<tr> +<td><a href="eric7.UI.upgrader.html">upgrader</a></td> +<td>Script to upgrade the packages eric depends on.</td> +</tr> </table> </body></html> \ No newline at end of file
--- a/eric7/Documentation/Source/index.html Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Documentation/Source/index.html Sat Apr 02 11:23:11 2022 +0200 @@ -41,6 +41,10 @@ <td>Installation script for the eric debug clients.</td> </tr> <tr> +<td><a href="install-dependencies.html">install-dependencies</a></td> +<td>Installation script for the eric IDE dependencies.</td> +</tr> +<tr> <td><a href="install-i18n.html">install-i18n</a></td> <td>Installation script for the eric IDE translation files.</td> </tr>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/Documentation/Source/install-dependencies.html Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,77 @@ +<!DOCTYPE html> +<html><head> +<title>install-dependencies</title> +<meta charset="UTF-8"> +<link rel="stylesheet" href="styles.css"> +</head> +<body> +<a NAME="top" ID="top"></a> +<h1>install-dependencies</h1> + +<p> +Installation script for the eric IDE dependencies. +</p> +<h3>Global Attributes</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Classes</h3> + +<table> +<tr><td>None</td></tr> +</table> +<h3>Functions</h3> + +<table> + +<tr> +<td><a href="#main">main</a></td> +<td>Function to install the eric dependencies.</td> +</tr> +<tr> +<td><a href="#pipInstall">pipInstall</a></td> +<td>Install the given package via pip.</td> +</tr> +</table> +<hr /> +<hr /> +<a NAME="main" ID="main"></a> +<h2>main</h2> +<b>main</b>(<i></i>) + +<p> + Function to install the eric dependencies. +</p> +<div align="right"><a href="#top">Up</a></div> +<hr /> +<hr /> +<a NAME="pipInstall" ID="pipInstall"></a> +<h2>pipInstall</h2> +<b>pipInstall</b>(<i>packageName</i>) + +<p> + Install the given package via pip. +</p> +<dl> + +<dt><i>packageName</i> (str)</dt> +<dd> +name of the package to be installed +</dd> +</dl> +<dl> +<dt>Return:</dt> +<dd> +flag indicating a successful installation +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +bool +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- a/eric7/PipInterface/Pip.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/PipInterface/Pip.py Sat Apr 02 11:23:11 2022 +0200 @@ -31,6 +31,7 @@ SSL_AVAILABLE = False from .PipDialog import PipDialog +from .PipVulnerabilityChecker import PipVulnerabilityChecker import Preferences import Globals @@ -49,11 +50,13 @@ """ Constructor - @param parent parent + @param parent reference to the user interface object @type QObject """ super().__init__(parent) + self.__ui = parent + # attributes for the network objects self.__networkManager = QNetworkAccessManager(self) self.__networkManager.proxyAuthenticationRequired.connect( @@ -63,6 +66,8 @@ self.__networkManager.sslErrors.connect( self.__sslErrorHandler.sslErrorsReply) self.__replies = [] + + self.__vulnerabilityChecker = PipVulnerabilityChecker(self, self) def getNetworkAccessManager(self): """ @@ -73,6 +78,15 @@ """ return self.__networkManager + def getVulnerabilityChecker(self): + """ + Public method to get a reference to the vulnerability checker object. + + @return reference to the vulnerability checker object + @rtype PipVulnerabilityChecker + """ + return self.__vulnerabilityChecker + ########################################################################## ## Methods below implement some utility functions ########################################################################## @@ -294,7 +308,7 @@ @param packages list of packages to upgrade @type list of str - @return flag indicating to abort the upgrade attempt + @return flag indicating a PyQt upgrade @rtype bool """ pyqtPackages = [ @@ -304,21 +318,22 @@ "pyqt6-charts-qt6" ] ] + return bool(pyqtPackages) + + def __checkUpgradeEric(self, packages): + """ + Private method to check, if an upgrade of the eric-ide package is + attempted. - abort = ( - not EricMessageBox.yesNo( - None, - self.tr("Upgrade Packages"), - self.tr( - """You are trying to upgrade PyQt packages. This might""" - """ not work for the current instance of Python ({0}).""" - """ Do you want to continue?""").format(sys.executable), - icon=EricMessageBox.Critical) - if bool(pyqtPackages) else - False - ) - - return abort + @param packages list of packages to upgrade + @type list of str + @return flag indicating an eric-ide upgrade + @rtype bool + """ + ericPackages = [ + p for p in packages if p.lower() == "eric-ide" + ] + return bool(ericPackages) def upgradePackages(self, packages, venvName, userSite=False): """ @@ -337,11 +352,20 @@ if not venvName: return False - if ( - self.getVirtualenvInterpreter(venvName) == sys.executable and - self.__checkUpgradePyQt(packages) - ): - return False + if self.getVirtualenvInterpreter(venvName) == sys.executable: + upgradePyQt = self.__checkUpgradePyQt(packages) + upgradeEric = self.__checkUpgradeEric(packages) + if upgradeEric or upgradePyQt: + try: + if upgradeEric and upgradePyQt: + self.__ui.upgradeEricPyQt() + elif upgradeEric: + self.__ui.upgradeEric() + elif upgradePyQt: + self.__ui.upgradePyQt() + return None # should not be reached; play it safe + except AttributeError: + return False interpreter = self.getVirtualenvInterpreter(venvName) if not interpreter: @@ -671,6 +695,31 @@ return packages + def checkPackageOutdated(self, packageStart, envName): + """ + Public method to check, if a group of packages is outdated. + + @param packageStart start string for package names to be checked + (case insensitive) + @type str + @param envName name of the environment to get the packages for + @type str + @return tuple containing a flag indicating outdated packages and the + list of tuples containing the package name, installed version + and available version + @rtype tuple of (bool, (str, str, str)) + """ + filteredPackages = [] + + if bool(envName) and bool(packageStart): + packages = self.getOutdatedPackages(envName) + filterStr = packageStart.lower() + filteredPackages = [ + p for p in packages + if p[0].lower().startswith(filterStr)] + + return bool(filteredPackages), filteredPackages + def getPackageDetails(self, name, version): """ Public method to get package details using the PyPI JSON interface. @@ -703,6 +752,80 @@ return result + def getPackageVersions(self, name): + """ + Public method to get a list of versions available for the given + package. + + @param name package name + @type str + @return list of available versions + @rtype list of str + """ + result = [] + + if name: + url = "{0}/{1}/json".format(self.getIndexUrlPypi(), name) + request = QNetworkRequest(QUrl(url)) + reply = self.__networkManager.get(request) + while not reply.isFinished(): + QCoreApplication.processEvents() + QThread.msleep(100) + + reply.deleteLater() + if reply.error() == QNetworkReply.NetworkError.NoError: + dataStr = str(reply.readAll(), + Preferences.getSystem("IOEncoding"), + 'replace') + with contextlib.suppress(Exception): + data = json.loads(dataStr) + result = list(data["releases"].keys()) + + return result + + def getFrozenPackages(self, envName, localPackages=True, usersite=False, + requirement=None): + """ + Public method to get the list of package specifiers to freeze them. + + @param envName name of the environment to get the package specifiers + for + @type str + @param localPackages flag indicating to get package specifiers for + local packages only + @type bool + @param usersite flag indicating to get package specifiers for packages + installed in user-site only + @type bool + @param requirement name of a requirements file + @type str + @return list of package specifiers + @rtype list of str + """ + specifiers = [] + + if envName: + interpreter = self.getVirtualenvInterpreter(envName) + if interpreter: + args = [ + "-m", "pip", + "freeze", + ] + if localPackages: + args.append("--local") + if usersite: + args.append("--user") + if requirement and os.path.exists(requirement): + args.append("--requirement") + args.append(requirement) + + success, output = self.runProcess(args, interpreter) + if success and output: + specifiers = [spec.strip() for spec in output.splitlines() + if spec.strip()] + + return specifiers + ####################################################################### ## Cache handling methods below ####################################################################### @@ -795,3 +918,132 @@ showArgs=False) if res: dia.exec() + + ####################################################################### + ## Dependency tree handling methods below + ####################################################################### + + def getDependecyTree(self, envName, localPackages=True, usersite=False, + reverse=False): + """ + Public method to get the dependency tree of installed packages. + + @param envName name of the environment to get the packages for + @type str + @param localPackages flag indicating to get the tree for local + packages only + @type bool + @param usersite flag indicating to get the tree for packages + installed in user-site directory only + @type bool + @param reverse flag indicating to get the dependency tree in + reverse order (i.e. list packages needed by other) + @type bool + @return list of nested dictionaries resembling the requested + dependency tree + @rtype list of dict + """ + dependencies = [] + + if envName: + interpreter = self.getVirtualenvInterpreter(envName) + if interpreter: + args = [ + "-m", "pipdeptree", + "--json-tree", + "--python", interpreter, + ] + if localPackages: + args.append("--local-only") + if usersite: + args.append("--user-only") + if reverse: + args.append("--reverse") + + proc = QProcess() + proc.start(sys.executable.replace("w.exe", ".exe"), args) + if proc.waitForStarted(15000) and proc.waitForFinished(30000): + output = str(proc.readAllStandardOutput(), + Preferences.getSystem("IOEncoding"), + 'replace').strip() + with contextlib.suppress(json.JSONDecodeError): + dependencies = json.loads(output) + + return dependencies + + ####################################################################### + ## License handling methods below + ####################################################################### + + def getLicenses(self, envName, localPackages=True, usersite=False, + summary=False): + """ + Public method to get the licenses per package for a given environment. + + @param envName name of the environment to get the licenses for + @type str + @param localPackages flag indicating to get the licenses for local + packages only + @type bool + @param usersite flag indicating to get the licenses for packages + installed in user-site directory only + @type bool + @param summary flag indicating to get a summary listing (defaults to + False) + @type bool (optional) + @return list of dictionaries containing the license and version per + package + @rtype dict + """ + licenses = [] + + if envName: + interpreter = self.getVirtualenvInterpreter(envName) + if interpreter: + from . import piplicenses + with open(piplicenses.__file__, "r") as f: + content = f.read() + args = [ + "-c", + content, + "--from", + "mixed", + "--with-system", + ] + if localPackages: + args.append("--local-only") + if usersite: + args.append("--user-only") + if summary: + args.append("--summary") + + proc = QProcess() + proc.start(interpreter, args) + if proc.waitForStarted(15000) and proc.waitForFinished(30000): + output = str(proc.readAllStandardOutput(), + Preferences.getSystem("IOEncoding"), + 'replace').strip() + with contextlib.suppress(json.JSONDecodeError): + licenses = json.loads(output) + + return licenses + + def getLicensesSummary(self, envName, localPackages=True, usersite=False): + """ + Public method to get a summary of licenses found in a given + environment. + + @param envName name of the environment to get the licenses summary for + @type str + @param localPackages flag indicating to get the licenses summary for + local packages only + @type bool + @param usersite flag indicating to get the licenses summary for + packages installed in user-site directory only + @type bool + @return list of dictionaries containing the license and the count of + packages + @rtype dict + """ + return self.getLicenses(envName, localPackages=localPackages, + usersite=usersite, summary=True)
--- a/eric7/PipInterface/PipFreezeDialog.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/PipInterface/PipFreezeDialog.py Sat Apr 02 11:23:11 2022 +0200 @@ -66,13 +66,17 @@ """ e.accept() - @pyqtSlot(bool) - def on_localCheckBox_clicked(self, checked): + @pyqtSlot() + def on_localCheckBox_clicked(self): """ Private slot handling the switching of the local mode. - - @param checked state of the local check box - @type bool + """ + self.__refresh() + + @pyqtSlot() + def on_userCheckBox_clicked(self): + """ + Private slot handling the switching of the user-site mode. """ self.__refresh() @@ -135,29 +139,25 @@ self.__requirementsAvailable = False self.__environmentName = venvName - interpreter = self.__pip.getVirtualenvInterpreter(venvName) - if not interpreter: - return - - args = ["-m", "pip", "freeze"] - if self.localCheckBox.isChecked(): - args.append("--local") - if self.requirementsFilePicker.text(): - fileName = Utilities.toNativeSeparators( - self.requirementsFilePicker.text()) - if os.path.exists(fileName): - args.append("--requirement") - args.append(fileName) + fileName = ( + Utilities.toNativeSeparators(self.requirementsFilePicker.text()) + if self.requirementsFilePicker.text() else + "" + ) with EricOverrideCursor(): - success, output = self.__pip.runProcess(args, interpreter) + specifiers = self.__pip.getFrozenPackages( + venvName, localPackages=self.localCheckBox.isChecked(), + usersite=self.userCheckBox.isChecked(), requirement=fileName) - if success: - self.requirementsEdit.setPlainText(output) + if specifiers: + self.requirementsEdit.setPlainText( + "\n".join(specifiers) + "\n") self.__requirementsAvailable = True else: - self.requirementsEdit.setPlainText( - self.tr("No output generated by 'pip freeze'.")) + self.requirementsEdit.setPlainText(self.tr( + "No package specifiers generated by 'pip freeze'.") + ) self.__updateButtons()
--- a/eric7/PipInterface/PipFreezeDialog.ui Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/PipInterface/PipFreezeDialog.ui Sat Apr 02 11:23:11 2022 +0200 @@ -21,17 +21,44 @@ </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> - <widget class="QCheckBox" name="localCheckBox"> - <property name="toolTip"> - <string>Select to show requirements for locally-installed packages only</string> - </property> - <property name="text"> - <string>Local packages only</string> - </property> - <property name="checked"> - <bool>true</bool> - </property> - </widget> + <layout class="QHBoxLayout" name="horizontalLayout_2"> + <item> + <widget class="QCheckBox" name="localCheckBox"> + <property name="toolTip"> + <string>Select to show requirements for locally-installed packages only</string> + </property> + <property name="text"> + <string>Local packages only</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="userCheckBox"> + <property name="toolTip"> + <string>Select to show requirements for packages installed to the user-site only</string> + </property> + <property name="text"> + <string>User-Site only</string> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + </layout> </item> <item> <layout class="QHBoxLayout" name="horizontalLayout"> @@ -160,6 +187,7 @@ </customwidgets> <tabstops> <tabstop>localCheckBox</tabstop> + <tabstop>userCheckBox</tabstop> <tabstop>requirementsFilePicker</tabstop> <tabstop>requirementsEdit</tabstop> <tabstop>saveButton</tabstop>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/PipInterface/PipLicensesDialog.py Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,117 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implementing a dialog to show the licenses of an environment. +""" + +from PyQt6.QtCore import pyqtSlot, Qt +from PyQt6.QtWidgets import QDialog, QTreeWidgetItem + +from EricGui.EricOverrideCursor import EricOverrideCursor + +from .Ui_PipLicensesDialog import Ui_PipLicensesDialog + + +class PipLicensesDialog(QDialog, Ui_PipLicensesDialog): + """ + Class implementing a dialog to show the licenses of an environment. + """ + LicensesPackageColumn = 0 + LicensesVersionColumn = 1 + LicensesLicenseColumn = 2 + + SummaryCountColumn = 0 + SummaryLicenseColumn = 1 + + def __init__(self, pip, environment, localPackages=True, usersite=False, + parent=None): + """ + Constructor + + @param pip reference to the pip interface object + @type Pip + @param environment name of the environment to show the licenses for + @type str + @param localPackages flag indicating to show the licenses for local + packages only + @type bool + @param usersite flag indicating to show the licenses for packages + installed in user-site directory only + @type bool + @param parent reference to the parent widget (defaults to None) + @type QWidget (optional) + """ + super().__init__(parent) + self.setupUi(self) + + self.__pip = pip + self.__environment = environment + + self.localCheckBox.setChecked(localPackages) + self.userCheckBox.setChecked(usersite) + + self.localCheckBox.toggled.connect(self.__refreshLicenses) + self.userCheckBox.toggled.connect(self.__refreshLicenses) + + if environment: + self.environmentLabel.setText("<b>{0}</b>".format( + self.tr('Licenses of "{0}"').format(environment) + )) + else: + # That should never happen; play it safe. + self.environmentLabel.setText(self.tr("No environment specified.")) + + self.__refreshLicenses() + + @pyqtSlot() + def __refreshLicenses(self): + """ + Private slot to refresh the license lists. + """ + with EricOverrideCursor(): + self.licensesList.clear() + self.summaryList.clear() + + # step 1: show the licenses per package + self.licensesList.setUpdatesEnabled(False) + licenses = self.__pip.getLicenses( + self.__environment, + localPackages=self.localCheckBox.isChecked(), + usersite=self.userCheckBox.isChecked(), + ) + for lic in licenses: + QTreeWidgetItem(self.licensesList, [ + lic["Name"], + lic["Version"], + lic["License"].replace("; ", "\n"), + ]) + + self.licensesList.sortItems( + PipLicensesDialog.LicensesPackageColumn, + Qt.SortOrder.AscendingOrder) + for col in range(self.licensesList.columnCount()): + self.licensesList.resizeColumnToContents(col) + self.licensesList.setUpdatesEnabled(True) + + # step 2: show the licenses summary + self.summaryList.setUpdatesEnabled(False) + licenses = self.__pip.getLicensesSummary( + self.__environment, + localPackages=self.localCheckBox.isChecked(), + usersite=self.userCheckBox.isChecked(), + ) + for lic in licenses: + QTreeWidgetItem(self.summaryList, [ + "{0:4d}".format(lic["Count"]), + lic["License"].replace("; ", "\n"), + ]) + + self.summaryList.sortItems( + PipLicensesDialog.SummaryLicenseColumn, + Qt.SortOrder.AscendingOrder) + for col in range(self.summaryList.columnCount()): + self.summaryList.resizeColumnToContents(col) + self.summaryList.setUpdatesEnabled(True)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/PipInterface/PipLicensesDialog.ui Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,178 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>PipLicensesDialog</class> + <widget class="QDialog" name="PipLicensesDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>600</width> + <height>750</height> + </rect> + </property> + <property name="windowTitle"> + <string>Package Licenses</string> + </property> + <property name="sizeGripEnabled"> + <bool>true</bool> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QLabel" name="environmentLabel"/> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_4"> + <item> + <widget class="QCheckBox" name="localCheckBox"> + <property name="toolTip"> + <string>Select to show only licenses of locally installed packages</string> + </property> + <property name="text"> + <string>Local packages only</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="userCheckBox"> + <property name="toolTip"> + <string>Select to show only licenses of packages installed to the user-site</string> + </property> + <property name="text"> + <string>User-Site only</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="QTreeWidget" name="licensesList"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>7</verstretch> + </sizepolicy> + </property> + <property name="alternatingRowColors"> + <bool>true</bool> + </property> + <property name="rootIsDecorated"> + <bool>false</bool> + </property> + <property name="itemsExpandable"> + <bool>false</bool> + </property> + <property name="sortingEnabled"> + <bool>true</bool> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + <column> + <property name="text"> + <string>Package</string> + </property> + </column> + <column> + <property name="text"> + <string>Version</string> + </property> + </column> + <column> + <property name="text"> + <string>License</string> + </property> + </column> + </widget> + </item> + <item> + <widget class="QTreeWidget" name="summaryList"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>3</verstretch> + </sizepolicy> + </property> + <property name="alternatingRowColors"> + <bool>true</bool> + </property> + <property name="rootIsDecorated"> + <bool>false</bool> + </property> + <property name="itemsExpandable"> + <bool>false</bool> + </property> + <property name="sortingEnabled"> + <bool>true</bool> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + <column> + <property name="text"> + <string>Count</string> + </property> + </column> + <column> + <property name="text"> + <string>License</string> + </property> + </column> + </widget> + </item> + <item> + <widget class="QDialogButtonBox" name="buttonBox"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons"> + <set>QDialogButtonBox::Close</set> + </property> + </widget> + </item> + </layout> + </widget> + <tabstops> + <tabstop>localCheckBox</tabstop> + <tabstop>userCheckBox</tabstop> + <tabstop>licensesList</tabstop> + <tabstop>summaryList</tabstop> + </tabstops> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>accepted()</signal> + <receiver>PipLicensesDialog</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>PipLicensesDialog</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/eric7/PipInterface/PipPackagesWidget.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/PipInterface/PipPackagesWidget.py Sat Apr 02 11:23:11 2022 +0200 @@ -12,17 +12,21 @@ import html.parser import contextlib +from packaging.specifiers import SpecifierSet + from PyQt6.QtCore import pyqtSlot, Qt, QUrl, QUrlQuery +from PyQt6.QtGui import QIcon from PyQt6.QtNetwork import QNetworkReply, QNetworkRequest from PyQt6.QtWidgets import ( QWidget, QToolButton, QApplication, QHeaderView, QTreeWidgetItem, - QMenu, QDialog + QMenu, QDialog, QAbstractItemView ) from EricWidgets.EricApplication import ericApp from EricWidgets import EricMessageBox from EricGui.EricOverrideCursor import EricOverrideCursor +from .PipVulnerabilityChecker import Package, VulnerabilityCheckError from .Ui_PipPackagesWidget import Ui_PipPackagesWidget import UI.PixmapCache @@ -148,6 +152,16 @@ ShowProcessFilesListMode = 3 SearchVersionRole = Qt.ItemDataRole.UserRole + 1 + VulnerabilityRole = Qt.ItemDataRole.UserRole + 2 + + PackageColumn = 0 + InstalledVersionColumn = 1 + AvailableVersionColumn = 2 + VulnerabilityColumn = 3 + + DepPackageColumn = 0 + DepInstalledVersionColumn = 1 + DepRequiredVersionColumn = 2 def __init__(self, pip, parent=None): """ @@ -163,6 +177,8 @@ self.layout().setContentsMargins(0, 3, 0, 0) + self.viewToggleButton.setIcon(UI.PixmapCache.getIcon("viewListTree")) + self.pipMenuButton.setObjectName( "pip_supermenu_button") self.pipMenuButton.setIcon(UI.PixmapCache.getIcon("superMenu")) @@ -175,21 +191,40 @@ self.pipMenuButton.setAutoRaise(True) self.pipMenuButton.setShowMenuInside(True) - self.refreshButton.setIcon(UI.PixmapCache.getIcon("reload")) - self.upgradeButton.setIcon(UI.PixmapCache.getIcon("1uparrow")) - self.upgradeAllButton.setIcon(UI.PixmapCache.getIcon("2uparrow")) - self.uninstallButton.setIcon(UI.PixmapCache.getIcon("minus")) - self.showPackageDetailsButton.setIcon(UI.PixmapCache.getIcon("info")) - self.searchToggleButton.setIcon(UI.PixmapCache.getIcon("find")) - self.searchButton.setIcon(UI.PixmapCache.getIcon("findNext")) - self.installButton.setIcon(UI.PixmapCache.getIcon("plus")) - self.installUserSiteButton.setIcon(UI.PixmapCache.getIcon("addUser")) - self.showDetailsButton.setIcon(UI.PixmapCache.getIcon("info")) + self.refreshButton.setIcon( + UI.PixmapCache.getIcon("reload")) + self.upgradeButton.setIcon( + UI.PixmapCache.getIcon("1uparrow")) + self.upgradeAllButton.setIcon( + UI.PixmapCache.getIcon("2uparrow")) + self.uninstallButton.setIcon( + UI.PixmapCache.getIcon("minus")) + self.showPackageDetailsButton.setIcon( + UI.PixmapCache.getIcon("info")) + self.searchToggleButton.setIcon( + UI.PixmapCache.getIcon("find")) + self.searchButton.setIcon( + UI.PixmapCache.getIcon("findNext")) + self.searchMoreButton.setIcon( + UI.PixmapCache.getIcon("plus")) + self.installButton.setIcon( + UI.PixmapCache.getIcon("plus")) + self.installUserSiteButton.setIcon( + UI.PixmapCache.getIcon("addUser")) + self.showDetailsButton.setIcon( + UI.PixmapCache.getIcon("info")) + + self.refreshDependenciesButton.setIcon( + UI.PixmapCache.getIcon("reload")) + self.showDepPackageDetailsButton.setIcon( + UI.PixmapCache.getIcon("info")) self.__pip = pip self.packagesList.header().setSortIndicator( - 0, Qt.SortOrder.AscendingOrder) + PipPackagesWidget.PackageColumn, Qt.SortOrder.AscendingOrder) + self.dependenciesList.header().setSortIndicator( + PipPackagesWidget.DepPackageColumn, Qt.SortOrder.AscendingOrder) self.__infoLabels = { "name": self.tr("Name:"), @@ -208,25 +243,29 @@ "files": self.tr("Files:"), } self.infoWidget.setHeaderLabels(["Key", "Value"]) + self.dependencyInfoWidget.setHeaderLabels(["Key", "Value"]) venvManager = ericApp().getObject("VirtualEnvManager") venvManager.virtualEnvironmentAdded.connect( self.on_refreshButton_clicked) venvManager.virtualEnvironmentRemoved.connect( self.on_refreshButton_clicked) + self.__selectedEnvironment = None project = ericApp().getObject("Project") project.projectOpened.connect( - self.on_refreshButton_clicked) + self.__projectOpened) project.projectClosed.connect( self.__projectClosed) self.__initPipMenu() self.__populateEnvironments() self.__updateActionButtons() + self.__updateDepActionButtons() self.statusLabel.hide() self.searchWidget.hide() + self.__lastSearchPage = 0 self.__queryName = [] self.__querySummary = [] @@ -234,6 +273,17 @@ self.__replies = [] self.__packageDetailsDialog = None + + self.viewsStackWidget.setCurrentWidget(self.packagesPage) + + @pyqtSlot() + def __projectOpened(self): + """ + Private slot to handle the projectOpened signal. + """ + projectVenv = self.__pip.getProjectEnvironmentString() + if projectVenv: + self.environmentsComboBox.insertItem(1, projectVenv) @pyqtSlot(bool) def __projectClosed(self, shutdown): @@ -244,7 +294,8 @@ @type bool """ if not shutdown: - self.on_refreshButton_clicked() + # the project entry is always at index 1 + self.environmentsComboBox.removeItem(1) def __populateEnvironments(self): """ @@ -298,7 +349,8 @@ Qt.MatchFlag.MatchExactly | Qt.MatchFlag.MatchCaseSensitive ) if len(pipList) > 0: - pipVersionTuple = Globals.versionToTuple(pipList[0].text(1)) + pipVersionTuple = Globals.versionToTuple( + pipList[0].text(PipPackagesWidget.InstalledVersionColumn)) return pipVersionTuple @@ -324,7 +376,7 @@ """ return [ itm for itm in self.packagesList.selectedItems() - if bool(itm.text(2)) + if bool(itm.text(PipPackagesWidget.AvailableVersionColumn)) ] def __allUpdateableItems(self): @@ -337,7 +389,7 @@ updateableItems = [] for index in range(self.packagesList.topLevelItemCount()): itm = self.packagesList.topLevelItem(index) - if itm.text(2): + if itm.text(PipPackagesWidget.AvailableVersionColumn): updateableItems.append(itm) return updateableItems @@ -363,7 +415,7 @@ def __refreshPackagesList(self): """ - Private method to referesh the packages list. + Private method to refresh the packages list. """ self.packagesList.clear() venvName = self.environmentsComboBox.currentText() @@ -384,7 +436,8 @@ usersite=self.userCheckBox.isChecked(), ) for package, version in installedPackages: - QTreeWidgetItem(self.packagesList, [package, version]) + QTreeWidgetItem(self.packagesList, + [package, version, "", ""]) self.packagesList.setUpdatesEnabled(True) self.statusLabel.setText( self.tr("Getting outdated packages...")) @@ -406,146 +459,190 @@ ) if items: itm = items[0] - itm.setText(2, latest) + itm.setText( + PipPackagesWidget.AvailableVersionColumn, + latest) - self.packagesList.sortItems(0, Qt.SortOrder.AscendingOrder) + self.packagesList.sortItems( + PipPackagesWidget.PackageColumn, + Qt.SortOrder.AscendingOrder) for col in range(self.packagesList.columnCount()): self.packagesList.resizeColumnToContents(col) self.packagesList.setUpdatesEnabled(True) + + # 3. update with vulnerability information + if self.vulnerabilityCheckBox.isChecked(): + self.__updateVulnerabilityData() self.statusLabel.hide() self.__updateActionButtons() self.__updateSearchActionButtons() self.__updateSearchButton() + self.__updateSearchMoreButton(False) - @pyqtSlot(int) - def on_environmentsComboBox_currentIndexChanged(self, index): + @pyqtSlot(str) + def on_environmentsComboBox_currentTextChanged(self, name): """ Private slot handling the selection of a Python environment. - @param index index of the selected Python environment - @type int + @param name name of the selected Python environment + @type str + """ + if name != self.__selectedEnvironment: + if self.viewToggleButton.isChecked(): + self.__refreshDependencyTree() + else: + self.__refreshPackagesList() + self.__selectedEnvironment = name + + @pyqtSlot() + def on_localCheckBox_clicked(self): + """ + Private slot handling the switching of the local mode. + """ + self.__refreshPackagesList() + + @pyqtSlot() + def on_notRequiredCheckBox_clicked(self): + """ + Private slot handling the switching of the 'not required' mode. + """ + self.__refreshPackagesList() + + @pyqtSlot() + def on_userCheckBox_clicked(self): + """ + Private slot handling the switching of the 'user-site' mode. """ self.__refreshPackagesList() - @pyqtSlot(bool) - def on_localCheckBox_clicked(self, checked): + def __showPackageInformation(self, packageName, infoWidget): """ - Private slot handling the switching of the local mode. + Private method to show information for a package. - @param checked state of the local check box - @type bool + @param packageName name of the package + @type str + @param infoWidget reference to the widget to contain the information + @type QTreeWidget """ - self.__refreshPackagesList() - - @pyqtSlot(bool) - def on_notRequiredCheckBox_clicked(self, checked): - """ - Private slot handling the switching of the 'not required' mode. + environment = self.environmentsComboBox.currentText() + interpreter = self.__pip.getVirtualenvInterpreter(environment) + if not interpreter: + return + + args = ["-m", "pip", "show"] + if self.verboseCheckBox.isChecked(): + args.append("--verbose") + if self.installedFilesCheckBox.isChecked(): + args.append("--files") + args.append(packageName) - @param checked state of the 'not required' check box - @type bool - """ - self.__refreshPackagesList() - - @pyqtSlot(bool) - def on_userCheckBox_clicked(self, checked): - """ - Private slot handling the switching of the 'user-site' mode. - - @param checked state of the 'user-site' check box - @type bool - """ - self.__refreshPackagesList() + with EricOverrideCursor(): + success, output = self.__pip.runProcess(args, interpreter) + + if success and output: + mode = self.ShowProcessGeneralMode + for line in output.splitlines(): + line = line.rstrip() + if line != "---": + if mode != self.ShowProcessGeneralMode: + if line[0] == " ": + QTreeWidgetItem( + infoWidget, + [" ", line.strip()]) + else: + mode = self.ShowProcessGeneralMode + if mode == self.ShowProcessGeneralMode: + try: + label, info = line.split(": ", 1) + except ValueError: + label = line[:-1] + info = "" + label = label.lower() + if label in self.__infoLabels: + QTreeWidgetItem( + infoWidget, + [self.__infoLabels[label], info]) + if label == "files": + mode = self.ShowProcessFilesListMode + elif label == "classifiers": + mode = self.ShowProcessClassifiersMode + elif label == "entry-points": + mode = self.ShowProcessEntryPointsMode + infoWidget.scrollToTop() + + header = infoWidget.header() + header.setStretchLastSection(False) + header.resizeSections(QHeaderView.ResizeMode.ResizeToContents) + if ( + header.sectionSize(0) + header.sectionSize(1) < + header.width() + ): + header.setStretchLastSection(True) @pyqtSlot() def on_packagesList_itemSelectionChanged(self): """ - Private slot handling the selection of a package. + Private slot reacting on a change of selected items. + """ + if len(self.packagesList.selectedItems()) == 0: + self.infoWidget.clear() + + @pyqtSlot(QTreeWidgetItem, int) + def on_packagesList_itemPressed(self, item, column): + """ + Private slot reacting on a package item being pressed. + + @param item reference to the pressed item + @type QTreeWidgetItem + @param column pressed column + @type int """ self.infoWidget.clear() - if len(self.packagesList.selectedItems()) == 1: - itm = self.packagesList.selectedItems()[0] - - environment = self.environmentsComboBox.currentText() - interpreter = self.__pip.getVirtualenvInterpreter(environment) - if not interpreter: - return - - args = ["-m", "pip", "show"] - if self.verboseCheckBox.isChecked(): - args.append("--verbose") - if self.installedFilesCheckBox.isChecked(): - args.append("--files") - args.append(itm.text(0)) - - with EricOverrideCursor(): - success, output = self.__pip.runProcess(args, interpreter) - - if success and output: - mode = self.ShowProcessGeneralMode - for line in output.splitlines(): - line = line.rstrip() - if line != "---": - if mode != self.ShowProcessGeneralMode: - if line[0] == " ": - QTreeWidgetItem( - self.infoWidget, - [" ", line.strip()]) - else: - mode = self.ShowProcessGeneralMode - if mode == self.ShowProcessGeneralMode: - try: - label, info = line.split(": ", 1) - except ValueError: - label = line[:-1] - info = "" - label = label.lower() - if label in self.__infoLabels: - QTreeWidgetItem( - self.infoWidget, - [self.__infoLabels[label], info]) - if label == "files": - mode = self.ShowProcessFilesListMode - elif label == "classifiers": - mode = self.ShowProcessClassifiersMode - elif label == "entry-points": - mode = self.ShowProcessEntryPointsMode - self.infoWidget.scrollToTop() - - header = self.infoWidget.header() - header.setStretchLastSection(False) - header.resizeSections(QHeaderView.ResizeMode.ResizeToContents) - if ( - header.sectionSize(0) + header.sectionSize(1) < - header.width() - ): - header.setStretchLastSection(True) + if item is not None: + if ( + column == PipPackagesWidget.VulnerabilityColumn and + bool(item.text(PipPackagesWidget.VulnerabilityColumn)) + ): + self.__showVulnerabilityInformation( + item.text(PipPackagesWidget.PackageColumn), + item.text(PipPackagesWidget.InstalledVersionColumn), + item.data(PipPackagesWidget.VulnerabilityColumn, + PipPackagesWidget.VulnerabilityRole) + ) + else: + self.__showPackageInformation( + item.text(PipPackagesWidget.PackageColumn), + self.infoWidget + ) self.__updateActionButtons() @pyqtSlot(QTreeWidgetItem, int) def on_packagesList_itemActivated(self, item, column): """ - Private slot reacting on a package item activation. + Private slot reacting on a package item being activated. @param item reference to the activated item @type QTreeWidgetItem @param column activated column @type int """ - packageName = item.text(0) - upgradable = bool(item.text(2)) - if column == 1: + packageName = item.text(PipPackagesWidget.PackageColumn) + upgradable = bool(item.text(PipPackagesWidget.AvailableVersionColumn)) + if column == PipPackagesWidget.InstalledVersionColumn: # show details for installed version - packageVersion = item.text(1) + packageVersion = item.text( + PipPackagesWidget.InstalledVersionColumn) else: # show details for available version or installed one - if item.text(2): - packageVersion = item.text(2) + if item.text(PipPackagesWidget.AvailableVersionColumn): + packageVersion = item.text( + PipPackagesWidget.AvailableVersionColumn) else: - packageVersion = item.text(1) + packageVersion = item.text( + PipPackagesWidget.InstalledVersionColumn) self.__showPackageDetails(packageName, packageVersion, upgradable=upgradable) @@ -559,7 +656,8 @@ @param checked state of the checkbox @type bool """ - self.on_packagesList_itemSelectionChanged() + self.on_packagesList_itemClicked(self.packagesList.currentItem(), + self.packagesList.currentColumn()) @pyqtSlot(bool) def on_installedFilesCheckBox_clicked(self, checked): @@ -570,7 +668,8 @@ @param checked state of the checkbox @type bool """ - self.on_packagesList_itemSelectionChanged() + self.on_packagesList_itemClicked(self.packagesList.currentItem(), + self.packagesList.currentColumn()) @pyqtSlot() def on_refreshButton_clicked(self): @@ -598,7 +697,8 @@ """ Private slot to upgrade selected packages of the selected environment. """ - packages = [itm.text(0) for itm in self.__selectedUpdateableItems()] + packages = [itm.text(PipPackagesWidget.PackageColumn) + for itm in self.__selectedUpdateableItems()] if packages: self.executeUpgradePackages(packages) @@ -607,7 +707,8 @@ """ Private slot to upgrade all packages of the selected environment. """ - packages = [itm.text(0) for itm in self.__allUpdateableItems()] + packages = [itm.text(PipPackagesWidget.PackageColumn) + for itm in self.__allUpdateableItems()] if packages: self.executeUpgradePackages(packages) @@ -616,7 +717,8 @@ """ Private slot to remove selected packages of the selected environment. """ - packages = [itm.text(0) for itm in self.packagesList.selectedItems()] + packages = [itm.text(PipPackagesWidget.PackageColumn) + for itm in self.packagesList.selectedItems()] self.executeUninstallPackages(packages) def executeUninstallPackages(self, packages): @@ -653,13 +755,16 @@ """ item = self.packagesList.selectedItems()[0] if item: - packageName = item.text(0) - upgradable = bool(item.text(2)) + packageName = item.text(PipPackagesWidget.PackageColumn) + upgradable = bool(item.text( + PipPackagesWidget.AvailableVersionColumn)) # show details for available version or installed one - if item.text(2): - packageVersion = item.text(2) + if item.text(PipPackagesWidget.AvailableVersionColumn): + packageVersion = item.text( + PipPackagesWidget.AvailableVersionColumn) else: - packageVersion = item.text(1) + packageVersion = item.text( + PipPackagesWidget.InstalledVersionColumn) self.__showPackageDetails(packageName, packageVersion, upgradable=upgradable) @@ -694,6 +799,19 @@ self.__isPipAvailable() ) + def __updateSearchMoreButton(self, enable): + """ + Private method to update the state of the search more button. + + @param enable flag indicating the desired enable state + @type bool + """ + self.searchMoreButton.setEnabled( + enable and + bool(self.searchEditName.text()) and + self.__isPipAvailable() + ) + @pyqtSlot(bool) def on_searchToggleButton_toggled(self, checked): """ @@ -710,6 +828,7 @@ self.__updateSearchActionButtons() self.__updateSearchButton() + self.__updateSearchMoreButton(False) @pyqtSlot(str) def on_searchEditName_textChanged(self, txt): @@ -730,14 +849,21 @@ bool(self.searchEditName.text()) and self.__isPipAvailable() ): - self.__search() + self.__searchFirst() @pyqtSlot() def on_searchButton_clicked(self): """ Private slot handling a press of the search button. """ - self.__search() + self.__searchFirst() + + @pyqtSlot() + def on_searchMoreButton_clicked(self): + """ + Private slot handling a press of the search more button. + """ + self.__search(self.__lastSearchPage + 1) @pyqtSlot() def on_searchResultList_itemSelectionChanged(self): @@ -746,19 +872,33 @@ """ self.__updateSearchActionButtons() - def __search(self): + def __searchFirst(self): """ - Private method to perform the search by calling the PyPI search URL. + Private method to perform the search for packages. """ self.searchResultList.clear() self.searchInfoLabel.clear() + self.__updateSearchMoreButton(False) + + self.__search() + + def __search(self, page=1): + """ + Private method to perform the search by calling the PyPI search URL. + + @param page search page to retrieve (defaults to 1) + @type int (optional) + """ + self.__lastSearchPage = page + self.searchButton.setEnabled(False) searchTerm = self.searchEditName.text().strip() searchTerm = bytes(QUrl.toPercentEncoding(searchTerm)).decode() urlQuery = QUrlQuery() urlQuery.addQueryItem("q", searchTerm) + urlQuery.addQueryItem("page", str(page)) url = QUrl(self.__pip.getIndexUrlSearch()) url.setQuery(urlQuery) @@ -801,18 +941,39 @@ results = PypiSearchResultsParser(data).getResults() if results: + # PyPI returns max. 20 entries per page if len(results) < 20: - msg = self.tr("%n package(s) found.", "", len(results)) + msg = self.tr("%n package(s) found.", "", + (self.__lastSearchPage - 1) * 20 + len(results)) + self.__updateSearchMoreButton(False) else: - msg = self.tr("Showing first 20 packages found.") + msg = self.tr("Showing first {0} packages found.").format( + self.__lastSearchPage * 20) + self.__updateSearchMoreButton(True) self.searchInfoLabel.setText(msg) + lastItem = self.searchResultList.topLevelItem( + self.searchResultList.topLevelItemCount() - 1) else: - EricMessageBox.warning( - self, - self.tr("Search PyPI"), - self.tr("""<p>There were no results for <b>{0}</b>.</p>""")) - self.searchInfoLabel.setText( - self.tr("""<p>There were no results for <b>{0}</b>.</p>""")) + self.__updateSearchMoreButton(False) + if self.__lastSearchPage == 1: + EricMessageBox.warning( + self, + self.tr("Search PyPI"), + self.tr("""<p>There were no results for <b>{0}</b>.</p>""") + .format(searchTerm) + ) + self.searchInfoLabel.setText( + self.tr("""<p>There were no results for <b>{0}</b>.</p>""") + .format(searchTerm) + ) + else: + EricMessageBox.warning( + self, + self.tr("Search PyPI"), + self.tr("""<p>There were no more results for""" + """ <b>{0}</b>.</p>""").format(searchTerm) + ) + lastItem = None wrapper = textwrap.TextWrapper(width=80) for result in results: @@ -832,6 +993,11 @@ ]) itm.setData(0, self.SearchVersionRole, result['version']) + if lastItem: + self.searchResultList.scrollToItem( + lastItem, + QAbstractItemView.ScrollHint.PositionAtTop) + header = self.searchResultList.header() header.setStretchLastSection(False) header.resizeSections(QHeaderView.ResizeMode.ResizeToContents) @@ -1016,6 +1182,18 @@ self.tr("Generate Requirements..."), self.__generateRequirements) self.__pipMenu.addSeparator() + self.__showLicensesDialogAct = self.__pipMenu.addAction( + self.tr("Show Licenses..."), + self.__showLicensesDialog) + self.__pipMenu.addSeparator() + self.__checkVulnerabilityAct = self.__pipMenu.addAction( + self.tr("Check Vulnerabilities"), + self.__updateVulnerabilityData) + # updateVulnerabilityDbAct + self.__pipMenu.addAction( + self.tr("Update Vulnerability Database"), + self.__updateVulnerabilityDbCache) + self.__pipMenu.addSeparator() self.__cacheInfoAct = self.__pipMenu.addAction( self.tr("Show Cache Info..."), self.__showCacheInfo) @@ -1072,6 +1250,11 @@ self.__cachePurgeAct.setEnabled(enablePipCache) self.__editVirtualenvConfigAct.setEnabled(enable) + + self.__checkVulnerabilityAct.setEnabled( + enable & self.vulnerabilityCheckBox.isEnabled()) + + self.__showLicensesDialogAct.setEnabled(enable) @pyqtSlot() def __installPip(self): @@ -1137,7 +1320,8 @@ """ Private slot to force a re-installation of the selected packages. """ - packages = [itm.text(0) for itm in self.packagesList.selectedItems()] + packages = [itm.text(PipPackagesWidget.PackageColumn) + for itm in self.packagesList.selectedItems()] venvName = self.environmentsComboBox.currentText() if venvName and packages: self.__pip.installPackages(packages, venvName=venvName, @@ -1283,3 +1467,378 @@ venvName = self.environmentsComboBox.currentText() if venvName: self.__pip.cachePurge(venvName) + + ################################################################## + ## Interface to the vulnerability checks below + ################################################################## + + @pyqtSlot(bool) + def on_vulnerabilityCheckBox_clicked(self, checked): + """ + Private slot handling a change of the automatic vulnerability checks. + + @param checked flag indicating the state of the check box + @type bool + """ + if checked: + self.__updateVulnerabilityData(clearFirst=True) + + @pyqtSlot() + def __clearVulnerabilityInfo(self): + """ + Private slot to clear the vulnerability info. + """ + for row in range(self.packagesList.topLevelItemCount()): + itm = self.packagesList.topLevelItem(row) + itm.setText(PipPackagesWidget.VulnerabilityColumn, "") + itm.setToolTip(PipPackagesWidget.VulnerabilityColumn, "") + itm.setIcon(PipPackagesWidget.VulnerabilityColumn, QIcon()) + itm.setData(PipPackagesWidget.VulnerabilityColumn, + PipPackagesWidget.VulnerabilityRole, + None) + + @pyqtSlot() + def __updateVulnerabilityData(self, clearFirst=True): + """ + Private slot to update the shown vulnerability info. + + @param clearFirst flag indicating to clear the vulnerability info first + (defaults to True) + @type bool (optional) + """ + if clearFirst: + self.__clearVulnerabilityInfo() + + packages = [] + for row in range(self.packagesList.topLevelItemCount()): + itm = self.packagesList.topLevelItem(row) + packages.append(Package( + name=itm.text(PipPackagesWidget.PackageColumn), + version=itm.text(PipPackagesWidget.InstalledVersionColumn) + )) + + error, vulnerabilities = ( + self.__pip.getVulnerabilityChecker().check(packages) + ) + if error == VulnerabilityCheckError.OK: + for package in vulnerabilities: + items = self.packagesList.findItems( + package, + Qt.MatchFlag.MatchExactly | + Qt.MatchFlag.MatchCaseSensitive + ) + if items: + itm = items[0] + itm.setData( + PipPackagesWidget.VulnerabilityColumn, + PipPackagesWidget.VulnerabilityRole, + vulnerabilities[package] + ) + affected = {v.spec for v in vulnerabilities[package]} + itm.setText( + PipPackagesWidget.VulnerabilityColumn, + ', '.join(affected) + ) + itm.setIcon( + PipPackagesWidget.VulnerabilityColumn, + UI.PixmapCache.getIcon("securityLow") + ) + + elif error in (VulnerabilityCheckError.FullDbUnavailable, + VulnerabilityCheckError.SummaryDbUnavailable): + self.vulnerabilityCheckBox.setChecked(False) + self.vulnerabilityCheckBox.setEnabled(False) + self.packagesList.setColumnHidden( + PipPackagesWidget.VulnerabilityColumn, True) + + @pyqtSlot() + def __updateVulnerabilityDbCache(self): + """ + Private slot to initiate an update of the local cache of the + vulnerability database. + """ + with EricOverrideCursor(): + self.__pip.getVulnerabilityChecker().updateVulnerabilityDb() + + def __showVulnerabilityInformation(self, packageName, packageVersion, + vulnerabilities): + """ + Private method to show the detected vulnerability data. + + @param packageName name of the package + @type str + @param packageVersion installed version number + @type str + @param vulnerabilities list of vulnerabilities + @type list of Vulnerability + """ + header = ( + self.tr("{0} {1}", "package name, package version") + .format(packageName, packageVersion) + ) + topItem = QTreeWidgetItem(self.infoWidget, [header]) + topItem.setFirstColumnSpanned(True) + topItem.setExpanded(True) + font = topItem.font(0) + font.setBold(True) + topItem.setFont(0, font) + + for vulnerability in vulnerabilities: + title = ( + vulnerability.cve + if vulnerability.cve else + vulnerability.vulnerabilityId + ) + titleItem = QTreeWidgetItem(topItem, [title]) + titleItem.setFirstColumnSpanned(True) + titleItem.setExpanded(True) + + QTreeWidgetItem( + titleItem, + [self.tr("Affected Version:"), vulnerability.spec]) + itm = QTreeWidgetItem( + titleItem, + [self.tr("Advisory:"), vulnerability.advisory]) + itm.setToolTip(1, "<p>{0}</p>".format( + vulnerability.advisory.replace("\r\n", "<br/>") + )) + + self.infoWidget.scrollToTop() + self.infoWidget.resizeColumnToContents(0) + + header = self.infoWidget.header() + header.setStretchLastSection(True) + + ####################################################################### + ## Dependency tree related methods below + ####################################################################### + + @pyqtSlot(bool) + def on_viewToggleButton_toggled(self, checked): + """ + Private slot handling the view selection. + + @param checked state of the toggle button + @type bool + """ + if checked: + self.viewsStackWidget.setCurrentWidget( + self.dependenciesPage) + self.__refreshDependencyTree() + else: + self.viewsStackWidget.setCurrentWidget( + self.packagesPage) + self.__refreshPackagesList() + + @pyqtSlot(bool) + def on_requiresButton_toggled(self, checked): + """ + Private slot handling the selection of the view type. + + @param checked state of the radio button (unused) + @type bool + """ + self.__refreshDependencyTree() + + @pyqtSlot() + def on_localDepCheckBox_clicked(self): + """ + Private slot handling the switching of the local mode. + """ + self.__refreshDependencyTree() + + @pyqtSlot() + def on_userDepCheckBox_clicked(self): + """ + Private slot handling the switching of the 'user-site' mode. + """ + self.__refreshDependencyTree() + + def __refreshDependencyTree(self): + """ + Private method to refresh the dependency tree. + """ + self.dependenciesList.clear() + venvName = self.environmentsComboBox.currentText() + if venvName: + interpreter = self.__pip.getVirtualenvInterpreter(venvName) + if interpreter: + with EricOverrideCursor(): + dependencies = self.__pip.getDependecyTree( + venvName, + localPackages=self.localDepCheckBox.isChecked(), + usersite=self.userDepCheckBox.isChecked(), + reverse=self.requiredByButton.isChecked(), + ) + + self.dependenciesList.setUpdatesEnabled(False) + for dependency in dependencies: + self.__addDependency(dependency, self.dependenciesList) + + self.dependenciesList.sortItems( + PipPackagesWidget.DepPackageColumn, + Qt.SortOrder.AscendingOrder) + for col in range(self.dependenciesList.columnCount()): + self.dependenciesList.resizeColumnToContents(col) + self.dependenciesList.setUpdatesEnabled(True) + + self.__updateDepActionButtons() + + def __addDependency(self, dependency, parent): + """ + Private method to add a dependency branch to a given parent. + + @param dependency dependency to be added + @type dict + @param parent reference to the parent item + @type QTreeWidget or QTreeWidgetItem + """ + itm = QTreeWidgetItem(parent, [ + dependency["package_name"], + dependency["installed_version"], + dependency["required_version"], + ]) + itm.setExpanded(True) + + if dependency["required_version"].lower() != "any": + spec = ( + "=={0}".format(dependency["required_version"]) + if dependency["required_version"][0] in "0123456789" else + dependency["required_version"] + ) + specifierSet = SpecifierSet(specifiers=spec) + if not specifierSet.contains(dependency["installed_version"]): + itm.setIcon(PipPackagesWidget.DepRequiredVersionColumn, + UI.PixmapCache.getIcon("warning")) + + if dependency["required_version"].lower() == "any": + itm.setText(PipPackagesWidget.DepRequiredVersionColumn, + self.tr("any")) + + # recursively add sub-dependencies + for dep in dependency["dependencies"]: + self.__addDependency(dep, itm) + + @pyqtSlot(QTreeWidgetItem, int) + def on_dependenciesList_itemActivated(self, item, column): + """ + Private slot reacting on a package item of the dependency tree being + activated. + + @param item reference to the activated item + @type QTreeWidgetItem + @param column activated column + @type int + """ + packageName = item.text(PipPackagesWidget.DepPackageColumn) + packageVersion = item.text( + PipPackagesWidget.DepInstalledVersionColumn) + + self.__showPackageDetails(packageName, packageVersion) + + @pyqtSlot() + def on_dependenciesList_itemSelectionChanged(self): + """ + Private slot reacting on a change of selected items of the dependency + tree. + """ + if len(self.dependenciesList.selectedItems()) == 0: + self.dependencyInfoWidget.clear() + + @pyqtSlot(QTreeWidgetItem, int) + def on_dependenciesList_itemPressed(self, item, column): + """ + Private slot reacting on a package item of the dependency tree being + pressed. + + @param item reference to the pressed item + @type QTreeWidgetItem + @param column pressed column + @type int + """ + self.dependencyInfoWidget.clear() + + if item is not None: + self.__showPackageInformation( + item.text(PipPackagesWidget.DepPackageColumn), + self.dependencyInfoWidget + ) + + self.__updateDepActionButtons() + + @pyqtSlot() + def on_refreshDependenciesButton_clicked(self): + """ + Private slot to refresh the dependency tree. + """ + currentEnvironment = self.environmentsComboBox.currentText() + self.environmentsComboBox.clear() + self.dependenciesList.clear() + + with EricOverrideCursor(): + self.__populateEnvironments() + + index = self.environmentsComboBox.findText( + currentEnvironment, + Qt.MatchFlag.MatchExactly | Qt.MatchFlag.MatchCaseSensitive + ) + if index != -1: + self.environmentsComboBox.setCurrentIndex(index) + + self.__updateDepActionButtons() + + @pyqtSlot() + def on_showDepPackageDetailsButton_clicked(self): + """ + Private slot to show information for the selected package of the + dependency tree. + """ + item = self.dependenciesList.selectedItems()[0] + if item: + packageName = item.text(PipPackagesWidget.DepPackageColumn) + packageVersion = item.text( + PipPackagesWidget.DepInstalledVersionColumn) + + self.__showPackageDetails(packageName, packageVersion) + + def __updateDepActionButtons(self): + """ + Private method to set the state of the dependency page action buttons. + """ + self.showDepPackageDetailsButton.setEnabled( + len(self.dependenciesList.selectedItems()) == 1 and + self.__isPipAvailable() + ) + + ################################################################## + ## Interface to show the licenses dialog below + ################################################################## + + @pyqtSlot() + def __showLicensesDialog(self): + """ + Private slot to show a dialog with the licenses of the selected + environment. + """ + # TODO: not yet implemented + from .PipLicensesDialog import PipLicensesDialog + + environment = self.environmentsComboBox.currentText() + localPackages = ( + self.localDepCheckBox.isChecked() + if self.viewToggleButton.isChecked() else + self.localCheckBox.isChecked() + ) + usersite = ( + self.userDepCheckBox.isChecked() + if self.viewToggleButton.isChecked() else + self.userCheckBox.isChecked() + ) + dlg = PipLicensesDialog( + self.__pip, + environment, + localPackages=localPackages, + usersite=usersite, + parent=self + ) + dlg.exec()
--- a/eric7/PipInterface/PipPackagesWidget.ui Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/PipInterface/PipPackagesWidget.ui Sat Apr 02 11:23:11 2022 +0200 @@ -7,129 +7,64 @@ <x>0</x> <y>0</y> <width>503</width> - <height>700</height> + <height>1180</height> </rect> </property> - <layout class="QVBoxLayout" name="verticalLayout_5"> + <layout class="QVBoxLayout" name="verticalLayout_6"> + <property name="leftMargin"> + <number>0</number> + </property> + <property name="topMargin"> + <number>3</number> + </property> + <property name="rightMargin"> + <number>0</number> + </property> + <property name="bottomMargin"> + <number>0</number> + </property> <item> - <widget class="QWidget" name="baseWidget" native="true"> - <layout class="QVBoxLayout" name="verticalLayout_4"> - <property name="leftMargin"> - <number>0</number> - </property> - <property name="topMargin"> - <number>0</number> - </property> - <property name="rightMargin"> - <number>0</number> - </property> - <property name="bottomMargin"> - <number>0</number> - </property> - <item> - <layout class="QHBoxLayout" name="horizontalLayout"> - <item> - <widget class="QComboBox" name="environmentsComboBox"/> - </item> - <item> - <widget class="EricToolButton" name="pipMenuButton"/> - </item> - </layout> - </item> - <item> - <layout class="QGridLayout" name="gridLayout_2"> - <item row="0" column="0"> - <widget class="QCheckBox" name="localCheckBox"> - <property name="toolTip"> - <string>Select to show only locally-installed packages</string> - </property> - <property name="text"> - <string>Local packages only</string> - </property> - <property name="checked"> - <bool>true</bool> - </property> - </widget> - </item> - <item row="0" column="1"> - <widget class="QCheckBox" name="notRequiredCheckBox"> - <property name="toolTip"> - <string>Select to list packages that are not dependencies of installed packages</string> - </property> - <property name="text"> - <string>Not required Packages</string> - </property> - </widget> - </item> - <item row="1" column="0"> - <widget class="QCheckBox" name="userCheckBox"> - <property name="toolTip"> - <string>Select to show only packages installed to the user-site</string> - </property> - <property name="text"> - <string>User-Site only</string> - </property> - </widget> - </item> - </layout> - </item> - <item> - <widget class="QLabel" name="statusLabel"/> - </item> - <item> - <widget class="QSplitter" name="splitter"> - <property name="orientation"> - <enum>Qt::Vertical</enum> - </property> - <widget class="QTreeWidget" name="packagesList"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> - <horstretch>0</horstretch> - <verstretch>3</verstretch> - </sizepolicy> - </property> - <property name="alternatingRowColors"> - <bool>true</bool> - </property> - <property name="selectionMode"> - <enum>QAbstractItemView::ExtendedSelection</enum> - </property> - <property name="rootIsDecorated"> - <bool>false</bool> - </property> - <property name="itemsExpandable"> - <bool>false</bool> - </property> - <property name="sortingEnabled"> - <bool>true</bool> - </property> - <attribute name="headerDefaultSectionSize"> - <number>150</number> - </attribute> - <column> - <property name="text"> - <string>Package</string> - </property> - </column> - <column> - <property name="text"> - <string>Installed Version</string> - </property> - </column> - <column> - <property name="text"> - <string>Available Version</string> - </property> - </column> - </widget> - <widget class="QWidget" name="widget" native="true"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> - <horstretch>0</horstretch> - <verstretch>1</verstretch> - </sizepolicy> - </property> - <layout class="QVBoxLayout" name="verticalLayout_3"> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QToolButton" name="viewToggleButton"> + <property name="toolTip"> + <string>Toggle to show or hide the dependency tree view</string> + </property> + <property name="checkable"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QComboBox" name="environmentsComboBox"/> + </item> + <item> + <widget class="EricToolButton" name="pipMenuButton"/> + </item> + </layout> + </item> + <item> + <widget class="QStackedWidget" name="viewsStackWidget"> + <property name="currentIndex"> + <number>0</number> + </property> + <widget class="QWidget" name="packagesPage"> + <layout class="QVBoxLayout" name="verticalLayout_5"> + <property name="leftMargin"> + <number>0</number> + </property> + <property name="topMargin"> + <number>0</number> + </property> + <property name="rightMargin"> + <number>0</number> + </property> + <property name="bottomMargin"> + <number>0</number> + </property> + <item> + <widget class="QWidget" name="baseWidget" native="true"> + <layout class="QVBoxLayout" name="verticalLayout_4"> <property name="leftMargin"> <number>0</number> </property> @@ -143,40 +78,361 @@ <number>0</number> </property> <item> - <layout class="QHBoxLayout" name="horizontalLayout_7"> - <item> - <widget class="QCheckBox" name="verboseCheckBox"> + <layout class="QGridLayout" name="gridLayout_2"> + <item row="0" column="0"> + <widget class="QCheckBox" name="localCheckBox"> <property name="toolTip"> - <string>Select to show verbose package information</string> + <string>Select to show only locally-installed packages</string> </property> <property name="text"> - <string>Verbose Information</string> + <string>Local packages only</string> + </property> + <property name="checked"> + <bool>true</bool> </property> </widget> </item> - <item> - <widget class="QCheckBox" name="installedFilesCheckBox"> + <item row="0" column="1"> + <widget class="QCheckBox" name="notRequiredCheckBox"> <property name="toolTip"> - <string>Select to show information about installed files</string> + <string>Select to list packages that are not dependencies of installed packages</string> </property> <property name="text"> - <string>Installed Files</string> + <string>Not required Packages</string> + </property> + </widget> + </item> + <item row="1" column="0"> + <widget class="QCheckBox" name="userCheckBox"> + <property name="toolTip"> + <string>Select to show only packages installed to the user-site</string> + </property> + <property name="text"> + <string>User-Site only</string> + </property> + </widget> + </item> + <item row="1" column="1"> + <widget class="QCheckBox" name="vulnerabilityCheckBox"> + <property name="toolTip"> + <string>Perform vulnerability checks based on "Safety DB".</string> + </property> + <property name="text"> + <string>Vulnerability Check</string> + </property> + <property name="checked"> + <bool>true</bool> </property> </widget> </item> </layout> </item> <item> - <widget class="QTreeWidget" name="infoWidget"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> - <horstretch>0</horstretch> - <verstretch>1</verstretch> - </sizepolicy> + <widget class="QLabel" name="statusLabel"/> + </item> + <item> + <widget class="QSplitter" name="splitter"> + <property name="orientation"> + <enum>Qt::Vertical</enum> </property> + <widget class="QTreeWidget" name="packagesList"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>3</verstretch> + </sizepolicy> + </property> + <property name="alternatingRowColors"> + <bool>true</bool> + </property> + <property name="selectionMode"> + <enum>QAbstractItemView::ExtendedSelection</enum> + </property> + <property name="rootIsDecorated"> + <bool>false</bool> + </property> + <property name="itemsExpandable"> + <bool>false</bool> + </property> + <property name="sortingEnabled"> + <bool>true</bool> + </property> + <attribute name="headerDefaultSectionSize"> + <number>150</number> + </attribute> + <column> + <property name="text"> + <string>Package</string> + </property> + </column> + <column> + <property name="text"> + <string>Installed</string> + </property> + </column> + <column> + <property name="text"> + <string>Available</string> + </property> + </column> + <column> + <property name="text"> + <string>Affected</string> + </property> + </column> + </widget> + <widget class="QWidget" name="widget" native="true"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> + <horstretch>0</horstretch> + <verstretch>1</verstretch> + </sizepolicy> + </property> + <layout class="QVBoxLayout" name="verticalLayout_3"> + <property name="leftMargin"> + <number>0</number> + </property> + <property name="topMargin"> + <number>0</number> + </property> + <property name="rightMargin"> + <number>0</number> + </property> + <property name="bottomMargin"> + <number>0</number> + </property> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_7"> + <item> + <widget class="QCheckBox" name="verboseCheckBox"> + <property name="toolTip"> + <string>Select to show verbose package information</string> + </property> + <property name="text"> + <string>Verbose Information</string> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="installedFilesCheckBox"> + <property name="toolTip"> + <string>Select to show information about installed files</string> + </property> + <property name="text"> + <string>Installed Files</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="QTreeWidget" name="infoWidget"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>1</verstretch> + </sizepolicy> + </property> + <property name="alternatingRowColors"> + <bool>true</bool> + </property> + <property name="rootIsDecorated"> + <bool>false</bool> + </property> + <property name="itemsExpandable"> + <bool>false</bool> + </property> + <property name="allColumnsShowFocus"> + <bool>true</bool> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + <property name="columnCount"> + <number>2</number> + </property> + <attribute name="headerVisible"> + <bool>false</bool> + </attribute> + <attribute name="headerStretchLastSection"> + <bool>false</bool> + </attribute> + <column> + <property name="text"> + <string notr="true">1</string> + </property> + </column> + <column> + <property name="text"> + <string notr="true">2</string> + </property> + </column> + </widget> + </item> + </layout> + </widget> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_2"> + <item> + <spacer name="horizontalSpacer"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QToolButton" name="refreshButton"> + <property name="toolTip"> + <string>Press to refresh the lists</string> + </property> + </widget> + </item> + <item> + <widget class="QToolButton" name="upgradeButton"> + <property name="toolTip"> + <string>Press to upgrade the selected packages</string> + </property> + </widget> + </item> + <item> + <widget class="QToolButton" name="upgradeAllButton"> + <property name="toolTip"> + <string>Press to upgrade all listed packages</string> + </property> + </widget> + </item> + <item> + <widget class="QToolButton" name="uninstallButton"> + <property name="toolTip"> + <string>Press to uninstall the selected package</string> + </property> + </widget> + </item> + <item> + <widget class="QToolButton" name="showPackageDetailsButton"> + <property name="toolTip"> + <string>Press to show details for the selected entry</string> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer_2"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QToolButton" name="searchToggleButton"> + <property name="toolTip"> + <string>Toggle to show or hide the search window</string> + </property> + <property name="checkable"> + <bool>true</bool> + </property> + </widget> + </item> + </layout> + </item> + </layout> + </widget> + </item> + <item> + <widget class="QWidget" name="searchWidget" native="true"> + <layout class="QVBoxLayout" name="verticalLayout_2"> + <property name="leftMargin"> + <number>0</number> + </property> + <property name="topMargin"> + <number>0</number> + </property> + <property name="rightMargin"> + <number>0</number> + </property> + <property name="bottomMargin"> + <number>0</number> + </property> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_8"> + <item> + <widget class="QLabel" name="label"> + <property name="text"> + <string>Package</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="searchEditName"> + <property name="toolTip"> + <string>Enter the search term for the package name</string> + </property> + <property name="placeholderText"> + <string>Enter search term</string> + </property> + </widget> + </item> + <item> + <widget class="QToolButton" name="searchButton"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="toolTip"> + <string>Press to start the search</string> + </property> + </widget> + </item> + <item> + <widget class="QToolButton" name="searchMoreButton"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="toolTip"> + <string>Press to search for more packages</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="QWidget" name="searchOptionsWidget" native="true"> + <layout class="QVBoxLayout" name="verticalLayout"> + <property name="leftMargin"> + <number>0</number> + </property> + <property name="topMargin"> + <number>0</number> + </property> + <property name="rightMargin"> + <number>0</number> + </property> + <property name="bottomMargin"> + <number>0</number> + </property> + </layout> + </widget> + </item> + <item> + <widget class="QTreeWidget" name="searchResultList"> <property name="alternatingRowColors"> <bool>true</bool> </property> + <property name="selectionMode"> + <enum>QAbstractItemView::ExtendedSelection</enum> + </property> <property name="rootIsDecorated"> <bool>false</bool> </property> @@ -189,270 +445,278 @@ <property name="wordWrap"> <bool>true</bool> </property> - <property name="columnCount"> - <number>2</number> - </property> - <attribute name="headerVisible"> - <bool>false</bool> - </attribute> - <attribute name="headerStretchLastSection"> - <bool>false</bool> - </attribute> + <column> + <property name="text"> + <string>Package</string> + </property> + </column> <column> <property name="text"> - <string notr="true">1</string> + <string>Version</string> + </property> + </column> + <column> + <property name="text"> + <string>Released</string> </property> </column> <column> <property name="text"> - <string notr="true">2</string> + <string>Description</string> </property> </column> </widget> </item> + <item> + <widget class="QLabel" name="searchInfoLabel"/> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_3"> + <item> + <spacer name="horizontalSpacer_3"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QToolButton" name="installButton"> + <property name="toolTip"> + <string>Press to install the selected package</string> + </property> + </widget> + </item> + <item> + <widget class="QToolButton" name="installUserSiteButton"> + <property name="toolTip"> + <string>Press to install the selected package to the user site</string> + </property> + </widget> + </item> + <item> + <widget class="QToolButton" name="showDetailsButton"> + <property name="toolTip"> + <string>Press to show details for the selected entry</string> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer_4"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + </layout> + </item> + </layout> + </widget> + </item> + </layout> + </widget> + <widget class="QWidget" name="dependenciesPage"> + <layout class="QVBoxLayout" name="verticalLayout_8"> + <item> + <widget class="QGroupBox" name="groupBox"> + <property name="title"> + <string>View Type</string> + </property> + <layout class="QHBoxLayout" name="horizontalLayout_5"> + <item> + <widget class="QRadioButton" name="requiresButton"> + <property name="toolTip"> + <string>Select to show which package requires other packages</string> + </property> + <property name="text"> + <string>Requires</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QRadioButton" name="requiredByButton"> + <property name="toolTip"> + <string>Select to show which package is required by others</string> + </property> + <property name="text"> + <string>Required By</string> + </property> + </widget> + </item> </layout> </widget> - </widget> - </item> - <item> - <layout class="QHBoxLayout" name="horizontalLayout_2"> - <item> - <spacer name="horizontalSpacer"> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - <property name="sizeHint" stdset="0"> - <size> - <width>40</width> - <height>20</height> - </size> - </property> - </spacer> - </item> - <item> - <widget class="QToolButton" name="refreshButton"> - <property name="toolTip"> - <string>Press to refresh the lists</string> - </property> - </widget> - </item> - <item> - <widget class="QToolButton" name="upgradeButton"> - <property name="toolTip"> - <string>Press to upgrade the selected packages</string> - </property> - </widget> - </item> - <item> - <widget class="QToolButton" name="upgradeAllButton"> - <property name="toolTip"> - <string>Press to upgrade all listed packages</string> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_4"> + <item> + <widget class="QCheckBox" name="localDepCheckBox"> + <property name="toolTip"> + <string>Select to show only dependencies of locally installed packages</string> + </property> + <property name="text"> + <string>Local packages only</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="userDepCheckBox"> + <property name="toolTip"> + <string>Select to show only dependencies of packages installed to the user-site</string> + </property> + <property name="text"> + <string>User-Site only</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="QSplitter" name="splitter_2"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + <widget class="QTreeWidget" name="dependenciesList"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>3</verstretch> + </sizepolicy> </property> - </widget> - </item> - <item> - <widget class="QToolButton" name="uninstallButton"> - <property name="toolTip"> - <string>Press to uninstall the selected package</string> - </property> - </widget> - </item> - <item> - <widget class="QToolButton" name="showPackageDetailsButton"> - <property name="toolTip"> - <string>Press to show details for the selected entry</string> - </property> - </widget> - </item> - <item> - <spacer name="horizontalSpacer_2"> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - <property name="sizeHint" stdset="0"> - <size> - <width>40</width> - <height>20</height> - </size> - </property> - </spacer> - </item> - <item> - <widget class="QToolButton" name="searchToggleButton"> - <property name="toolTip"> - <string>Toggle to show or hide the search window</string> - </property> - <property name="checkable"> + <property name="alternatingRowColors"> <bool>true</bool> </property> - </widget> - </item> - </layout> - </item> - </layout> - </widget> - </item> - <item> - <widget class="QWidget" name="searchWidget" native="true"> - <layout class="QVBoxLayout" name="verticalLayout_2"> - <property name="leftMargin"> - <number>0</number> - </property> - <property name="topMargin"> - <number>0</number> - </property> - <property name="rightMargin"> - <number>0</number> - </property> - <property name="bottomMargin"> - <number>0</number> - </property> - <item> - <layout class="QGridLayout" name="gridLayout"> - <item row="0" column="2" rowspan="2"> - <widget class="QToolButton" name="searchButton"> - <property name="enabled"> + <property name="sortingEnabled"> + <bool>true</bool> + </property> + <property name="expandsOnDoubleClick"> <bool>false</bool> </property> - <property name="toolTip"> - <string>Press to start the search</string> - </property> + <attribute name="headerDefaultSectionSize"> + <number>150</number> + </attribute> + <column> + <property name="text"> + <string>Package</string> + </property> + </column> + <column> + <property name="text"> + <string>Installed</string> + </property> + </column> + <column> + <property name="text"> + <string>Required</string> + </property> + </column> </widget> - </item> - <item row="0" column="0"> - <widget class="QLabel" name="label"> - <property name="text"> - <string>Package</string> + <widget class="QTreeWidget" name="dependencyInfoWidget"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>1</verstretch> + </sizepolicy> </property> - </widget> - </item> - <item row="0" column="1"> - <widget class="QLineEdit" name="searchEditName"> - <property name="toolTip"> - <string>Enter the search term for the package name</string> + <property name="alternatingRowColors"> + <bool>true</bool> + </property> + <property name="rootIsDecorated"> + <bool>false</bool> + </property> + <property name="itemsExpandable"> + <bool>false</bool> </property> - <property name="placeholderText"> - <string>Enter search term</string> + <property name="allColumnsShowFocus"> + <bool>true</bool> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + <property name="columnCount"> + <number>2</number> </property> + <attribute name="headerVisible"> + <bool>false</bool> + </attribute> + <attribute name="headerStretchLastSection"> + <bool>false</bool> + </attribute> + <column> + <property name="text"> + <string notr="true">1</string> + </property> + </column> + <column> + <property name="text"> + <string notr="true">2</string> + </property> + </column> </widget> - </item> - </layout> - </item> - <item> - <widget class="QWidget" name="searchOptionsWidget" native="true"> - <layout class="QVBoxLayout" name="verticalLayout"> - <property name="leftMargin"> - <number>0</number> - </property> - <property name="topMargin"> - <number>0</number> - </property> - <property name="rightMargin"> - <number>0</number> - </property> - <property name="bottomMargin"> - <number>0</number> - </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_6"> + <item> + <spacer name="horizontalSpacer_5"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QToolButton" name="refreshDependenciesButton"> + <property name="toolTip"> + <string>Press to refresh the dependency tree</string> + </property> + </widget> + </item> + <item> + <widget class="QToolButton" name="showDepPackageDetailsButton"> + <property name="toolTip"> + <string>Press to show details for the selected entry</string> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer_6"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> </layout> - </widget> - </item> - <item> - <widget class="QTreeWidget" name="searchResultList"> - <property name="alternatingRowColors"> - <bool>true</bool> - </property> - <property name="selectionMode"> - <enum>QAbstractItemView::ExtendedSelection</enum> - </property> - <property name="rootIsDecorated"> - <bool>false</bool> - </property> - <property name="itemsExpandable"> - <bool>false</bool> - </property> - <property name="allColumnsShowFocus"> - <bool>true</bool> - </property> - <property name="wordWrap"> - <bool>true</bool> - </property> - <column> - <property name="text"> - <string>Package</string> - </property> - </column> - <column> - <property name="text"> - <string>Version</string> - </property> - </column> - <column> - <property name="text"> - <string>Released</string> - </property> - </column> - <column> - <property name="text"> - <string>Description</string> - </property> - </column> - </widget> - </item> - <item> - <widget class="QLabel" name="searchInfoLabel"/> - </item> - <item> - <layout class="QHBoxLayout" name="horizontalLayout_3"> - <item> - <spacer name="horizontalSpacer_3"> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - <property name="sizeHint" stdset="0"> - <size> - <width>40</width> - <height>20</height> - </size> - </property> - </spacer> - </item> - <item> - <widget class="QToolButton" name="installButton"> - <property name="toolTip"> - <string>Press to install the selected package</string> - </property> - </widget> - </item> - <item> - <widget class="QToolButton" name="installUserSiteButton"> - <property name="toolTip"> - <string>Press to install the selected package to the user site</string> - </property> - </widget> - </item> - <item> - <widget class="QToolButton" name="showDetailsButton"> - <property name="toolTip"> - <string>Press to show details for the selected entry</string> - </property> - </widget> - </item> - <item> - <spacer name="horizontalSpacer_4"> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - <property name="sizeHint" stdset="0"> - <size> - <width>40</width> - <height>20</height> - </size> - </property> - </spacer> - </item> - </layout> - </item> - </layout> + </item> + </layout> + </widget> </widget> </item> </layout> @@ -465,11 +729,13 @@ </customwidget> </customwidgets> <tabstops> + <tabstop>viewToggleButton</tabstop> <tabstop>environmentsComboBox</tabstop> <tabstop>pipMenuButton</tabstop> <tabstop>localCheckBox</tabstop> <tabstop>notRequiredCheckBox</tabstop> <tabstop>userCheckBox</tabstop> + <tabstop>vulnerabilityCheckBox</tabstop> <tabstop>packagesList</tabstop> <tabstop>verboseCheckBox</tabstop> <tabstop>installedFilesCheckBox</tabstop> @@ -482,10 +748,19 @@ <tabstop>searchToggleButton</tabstop> <tabstop>searchEditName</tabstop> <tabstop>searchButton</tabstop> + <tabstop>searchMoreButton</tabstop> <tabstop>searchResultList</tabstop> <tabstop>installButton</tabstop> <tabstop>installUserSiteButton</tabstop> <tabstop>showDetailsButton</tabstop> + <tabstop>requiresButton</tabstop> + <tabstop>requiredByButton</tabstop> + <tabstop>localDepCheckBox</tabstop> + <tabstop>userDepCheckBox</tabstop> + <tabstop>dependenciesList</tabstop> + <tabstop>dependencyInfoWidget</tabstop> + <tabstop>refreshDependenciesButton</tabstop> + <tabstop>showDepPackageDetailsButton</tabstop> </tabstops> <resources/> <connections/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/PipInterface/PipVulnerabilityChecker.py Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,300 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implementing a Python package vulnerability checker. + +The vulnerability data is provided by the open Python vulnerability database +<a href="https://github.com/pyupio/safety-db">Safety DB</a>. +""" + +import collections +import contextlib +import enum +import json +import os +import time +from dataclasses import dataclass + +from packaging.specifiers import SpecifierSet + +from PyQt6.QtCore import QCoreApplication, QObject, QThread, QUrl +from PyQt6.QtNetwork import QNetworkReply, QNetworkRequest + +from EricWidgets import EricMessageBox + +import Globals +import Preferences + + +@dataclass +class Package: + """ + Class containing the package data. + """ + name: str # package name + version: str # version + + +@dataclass +class Vulnerability: + """ + Class containing the vulnerability data. + """ + name: str # package name + spec: dict # package specification record + version: str # package version + cve: str # CVE ID + advisory: str # CVE advisory text + vulnerabilityId: str # vulnerability ID + + +class VulnerabilityCheckError(enum.Enum): + """ + Class defining various vulnerability check error states. + """ + OK = 0 + SummaryDbUnavailable = 1 + FullDbUnavailable = 2 + + +class PipVulnerabilityChecker(QObject): + """ + Class implementing a Python package vulnerability checker. + """ + FullDbFile = "insecure_full.json" + SummaryDbFile = "insecure.json" + + def __init__(self, pip, parent=None): + """ + Constructor + + @param pip reference to the global pip interface + @type Pip + @param parent reference to the parent widget (defaults to None) + @type QWidget (optional) + """ + super().__init__(parent) + + self.__pip = pip + + securityDir = os.path.join(Globals.getConfigDir(), "security") + os.makedirs(securityDir, mode=0o700, exist_ok=True) + self.__cacheFile = os.path.join(securityDir, + "vulnerability_cache.json") + if not os.path.exists(self.__cacheFile): + self.__createCacheFile() + + def __createCacheFile(self): + """ + Private method to create the cache file. + + The cache file has the following structure. + { + "insecure.json": { + "cachedAt": 12345678 + "db": {} + }, + "insecure_full.json": { + "cachedAt": 12345678 + "db": {} + }, + } + """ + structure = { + "insecure.json": { + "cachedAt": 0, + "db": {}, + }, + "insecure_full.json": { + "cachedAt": 0, + "db": {}, + }, + } + with open(self.__cacheFile, "w") as f: + json.dump(structure, f, indent=2) + + def __getDataFromCache(self, dbName): + """ + Private method to get the vulnerability database from the cache. + + @param dbName name of the vulnerability database + @type str + @return dictionary containing the requested vulnerability data + @rtype dict + """ + if os.path.exists(self.__cacheFile): + with open(self.__cacheFile, "r") as f: # __IGNORE_WARNING_Y117__ + with contextlib.suppress(json.JSONDecodeError, OSError): + cachedData = json.load(f) + if ( + dbName in cachedData and + "cachedAt" in cachedData[dbName] + ): + cacheValidPeriod = Preferences.getPip( + "VulnerabilityDbCacheValidity") + if ( + cachedData[dbName]["cachedAt"] + cacheValidPeriod > + time.time() + ): + return cachedData[dbName]["db"] + + return {} + + def __writeDataToCache(self, dbName, data): + """ + Private method to write the vulnerability data for a database to the + cache. + + @param dbName name of the vulnerability database + @type str + @param data dictionary containing the vulnerability data + @type dict + """ + if not os.path.exists(self.__cacheFile): + self.__createCacheFile() + + with open(self.__cacheFile, "r") as f: + try: + cache = json.load(f) + except json.JSONDecodeError: + cache = {} + + cache[dbName] = { + "cachedAt": time.time(), + "db": data, + } + with open(self.__cacheFile, "w") as f: + json.dump(cache, f, indent=2) + + def __fetchVulnerabilityDatabase(self, full=False, forceUpdate=False): + """ + Private method to get the data of the vulnerability database. + + If the cached data is still valid, this data will be used. + Otherwise a copy of the requested database will be downloaded + and cached. + + @param full flag indicating to get the database containing the full + data set (defaults to False) + @type bool (optional) + @param forceUpdate flag indicating an update of the cache is required + (defaults to False) + @type bool (optional) + @return dictionary containing the vulnerability data (full data set or + just package name and version specifier) + """ + dbName = ( + PipVulnerabilityChecker.FullDbFile + if full else + PipVulnerabilityChecker.SummaryDbFile + ) + + if not forceUpdate: + cachedData = self.__getDataFromCache(dbName) + if cachedData: + return cachedData + + url = Preferences.getPip("VulnerabilityDbMirror") + dbName + request = QNetworkRequest(QUrl(url)) + reply = self.__pip.getNetworkAccessManager().get(request) + while not reply.isFinished(): + QCoreApplication.processEvents() + QThread.msleep(100) + + reply.deleteLater() + if reply.error() == QNetworkReply.NetworkError.NoError: + data = str(reply.readAll(), + Preferences.getSystem("IOEncoding"), + 'replace') + with contextlib.suppress(json.JSONDecodeError): + data = json.loads(data) + self.__writeDataToCache(dbName, data) + return data + + EricMessageBox.critical( + None, + self.tr("Fetching Vulnerability Database"), + self.tr("""<p>The vulnerability database <b>{0}</b> could not""" + """ be loaded from <b>{1}</b>.</p><p>The vulnerability""" + """ check is not available.</p>""") + ) + return {} + + def __getVulnerabilities(self, package, specifier, db): + """ + Private method to get the vulnerabilities for a package. + + @param package name of the package + @type str + @param specifier package specifier + @type Specifier + @param db vulnerability data + @type dict + @yield dictionary containing the vulnerability data for the package + @ytype dict + """ + for entry in db[package]: + for entrySpec in entry["specs"]: + if entrySpec == specifier: + yield entry + + def check(self, packages): + """ + Public method to check the given packages for vulnerabilities. + + @param packages list of packages + @type Package + @return tuple containing an error status and a dictionary containing + detected vulnerable packages keyed by package name + @rtype tuple of (VulnerabilityCheckError, list of Vulnerability) + """ + db = self.__fetchVulnerabilityDatabase() + if not db: + return VulnerabilityCheckError.SummaryDbUnavailable, [] + + fullDb = None + vulnerablePackages = frozenset(db.keys()) + vulnerabilities = collections.defaultdict(list) + + for package in packages: + # normalize the package name, the safety-db is converting + # underscores to dashes and uses lowercase + name = package.name.replace("_", "-").lower() + + if name in vulnerablePackages: + # we have a candidate here, build the spec set + for specifier in db[name]: + specifierSet = SpecifierSet(specifiers=specifier) + if specifierSet.contains(package.version): + if not fullDb: + fullDb = self.__fetchVulnerabilityDatabase( + full=True) + for data in self.__getVulnerabilities( + package=name, specifier=specifier, db=fullDb + ): + vulnarabilityId = ( + data.get("id").replace("pyup.io-", "") + ) + cveId = data.get("cve", "") + if cveId: + cveId = cveId.split(",", 1)[0].strip() + vulnerabilities[package.name].append(Vulnerability( + name=name, + spec=specifier, + version=package.version, + cve=cveId, + advisory=data.get("advisory", ""), + vulnerabilityId=vulnarabilityId + )) + + return VulnerabilityCheckError.OK, vulnerabilities + + def updateVulnerabilityDb(self): + """ + Public method to update the cache of the vulnerability databases. + """ + self.__fetchVulnerabilityDatabase(full=False, forceUpdate=True) + self.__fetchVulnerabilityDatabase(full=True, forceUpdate=True)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/PipInterface/piplicenses.py Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,664 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# vim:fenc=utf-8 ff=unix ft=python ts=4 sw=4 sts=4 si et +""" +pip-licenses + +MIT License + +Copyright (c) 2018 raimon + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +""" + +# +# Modified to be used within the eric-ide project. +# +# Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> +# + +import argparse +import codecs +import glob +import json +import os +import sys +from collections import Counter +from email import message_from_string +from email.parser import FeedParser +from enum import Enum, auto +from typing import List, Optional, Sequence, Text + + +def get_installed_distributions(local_only=True, user_only=False): + try: + from pip._internal.metadata import get_environment + except ImportError: + # For backward compatibility with pip version 20.3.4 + from pip._internal.utils import misc + return misc.get_installed_distributions( + local_only=local_only, + user_only=user_only + ) + else: + from pip._internal.utils.compat import stdlib_pkgs + dists = get_environment(None).iter_installed_distributions( + local_only=local_only, + user_only=user_only, + skip=stdlib_pkgs, + include_editables=True, + editables_only=False, + ) + return [d._dist for d in dists] + + +__pkgname__ = 'pip-licenses' +__version__ = '3.5.3' +__author__ = 'raimon' +__license__ = 'MIT' +__summary__ = ('Dump the software license list of ' + 'Python packages installed with pip.') +__url__ = 'https://github.com/raimon49/pip-licenses' + + +FIELD_NAMES = ( + 'Name', + 'Version', + 'License', + 'LicenseFile', + 'LicenseText', + 'NoticeFile', + 'NoticeText', + 'Author', + 'Description', + 'URL', +) + + +DEFAULT_OUTPUT_FIELDS = ( + 'Name', + 'Version', +) + + +SUMMARY_OUTPUT_FIELDS = ( + 'Count', + 'License', +) + + +METADATA_KEYS = ( + 'home-page', + 'author', + 'license', + 'summary', + 'license_classifier', +) + +# Mapping of FIELD_NAMES to METADATA_KEYS where they differ by more than case +FIELDS_TO_METADATA_KEYS = { + 'URL': 'home-page', + 'Description': 'summary', + 'License-Metadata': 'license', + 'License-Classifier': 'license_classifier', +} + + +SYSTEM_PACKAGES = ( + __pkgname__, + 'pip', + 'setuptools', + 'wheel', +) + +LICENSE_UNKNOWN = 'UNKNOWN' + + +def get_packages(args: "CustomNamespace"): + + def get_pkg_included_file(pkg, file_names): + """ + Attempt to find the package's included file on disk and return the + tuple (included_file_path, included_file_contents). + """ + included_file = LICENSE_UNKNOWN + included_text = LICENSE_UNKNOWN + pkg_dirname = "{}-{}.dist-info".format( + pkg.project_name.replace("-", "_"), pkg.version) + patterns = [] + [patterns.extend(sorted(glob.glob(os.path.join(pkg.location, + pkg_dirname, + f)))) + for f in file_names] + for test_file in patterns: + if os.path.exists(test_file): + included_file = test_file + with open(test_file, encoding='utf-8', + errors='backslashreplace') as included_file_handle: + included_text = included_file_handle.read() + break + return (included_file, included_text) + + def get_pkg_info(pkg): + (license_file, license_text) = get_pkg_included_file( + pkg, + ('LICENSE*', 'LICENCE*', 'COPYING*') + ) + (notice_file, notice_text) = get_pkg_included_file( + pkg, + ('NOTICE*',) + ) + pkg_info = { + 'name': pkg.project_name, + 'version': pkg.version, + 'namever': str(pkg), + 'licensefile': license_file, + 'licensetext': license_text, + 'noticefile': notice_file, + 'noticetext': notice_text, + } + metadata = None + if pkg.has_metadata('METADATA'): + metadata = pkg.get_metadata('METADATA') + + if pkg.has_metadata('PKG-INFO') and metadata is None: + metadata = pkg.get_metadata('PKG-INFO') + + if metadata is None: + for key in METADATA_KEYS: + pkg_info[key] = LICENSE_UNKNOWN + + return pkg_info + + feed_parser = FeedParser() + feed_parser.feed(metadata) + parsed_metadata = feed_parser.close() + + for key in METADATA_KEYS: + pkg_info[key] = parsed_metadata.get(key, LICENSE_UNKNOWN) + + if metadata is not None: + message = message_from_string(metadata) + pkg_info['license_classifier'] = \ + find_license_from_classifier(message) + + if args.filter_strings: + for k in pkg_info: + if isinstance(pkg_info[k], list): + for i, item in enumerate(pkg_info[k]): + pkg_info[k][i] = item. \ + encode(args.filter_code_page, errors="ignore"). \ + decode(args.filter_code_page) + else: + pkg_info[k] = pkg_info[k]. \ + encode(args.filter_code_page, errors="ignore"). \ + decode(args.filter_code_page) + + return pkg_info + + pkgs = get_installed_distributions( + local_only=args.local_only, + user_only=args.user_only, + ) + ignore_pkgs_as_lower = [pkg.lower() for pkg in args.ignore_packages] + pkgs_as_lower = [pkg.lower() for pkg in args.packages] + + fail_on_licenses = set() + if args.fail_on: + fail_on_licenses = set(map(str.strip, args.fail_on.split(";"))) + + allow_only_licenses = set() + if args.allow_only: + allow_only_licenses = set(map(str.strip, args.allow_only.split(";"))) + + for pkg in pkgs: + pkg_name = pkg.project_name + + if pkg_name.lower() in ignore_pkgs_as_lower: + continue + + if pkgs_as_lower and pkg_name.lower() not in pkgs_as_lower: + continue + + if not args.with_system and pkg_name in SYSTEM_PACKAGES: + continue + + pkg_info = get_pkg_info(pkg) + + license_names = select_license_by_source( + args.from_, + pkg_info['license_classifier'], + pkg_info['license']) + + if fail_on_licenses: + failed_licenses = license_names.intersection(fail_on_licenses) + if failed_licenses: + sys.stderr.write( + "fail-on license {} was found for package " + "{}:{}".format( + '; '.join(sorted(failed_licenses)), + pkg_info['name'], + pkg_info['version']) + ) + sys.exit(1) + + if allow_only_licenses: + uncommon_licenses = license_names.difference(allow_only_licenses) + if len(uncommon_licenses) == len(license_names): + sys.stderr.write( + "license {} not in allow-only licenses was found" + " for package {}:{}".format( + '; '.join(sorted(uncommon_licenses)), + pkg_info['name'], + pkg_info['version']) + ) + sys.exit(1) + + yield pkg_info + + +def create_licenses_list( + args: "CustomNamespace", output_fields=DEFAULT_OUTPUT_FIELDS): + + licenses = [] + for pkg in get_packages(args): + row = {} + for field in output_fields: + if field == 'License': + license_set = select_license_by_source( + args.from_, pkg['license_classifier'], pkg['license']) + license_str = '; '.join(sorted(license_set)) + row[field] = license_str + elif field == 'License-Classifier': + row[field] = ('; '.join(sorted(pkg['license_classifier'])) + or LICENSE_UNKNOWN) + elif field.lower() in pkg: + row[field] = pkg[field.lower()] + else: + row[field] = pkg[FIELDS_TO_METADATA_KEYS[field]] + licenses.append(row) + + return licenses + + +def create_summary_list(args: "CustomNamespace"): + counts = Counter( + '; '.join(sorted(select_license_by_source( + args.from_, pkg['license_classifier'], pkg['license']))) + for pkg in get_packages(args)) + + licenses = [] + for license, count in counts.items(): + licenses.append({ + "Count": count, + "License": license, + }) + + return licenses + + +def find_license_from_classifier(message): + licenses = [] + for k, v in message.items(): + if k == 'Classifier' and v.startswith('License'): + license = v.split(' :: ')[-1] + + # Through the declaration of 'Classifier: License :: OSI Approved' + if license != 'OSI Approved': + licenses.append(license) + + return licenses + + +def select_license_by_source(from_source, license_classifier, license_meta): + license_classifier_set = set(license_classifier) or {LICENSE_UNKNOWN} + if (from_source == FromArg.CLASSIFIER or + from_source == FromArg.MIXED and len(license_classifier) > 0): + return license_classifier_set + else: + return {license_meta} + + +def get_output_fields(args: "CustomNamespace"): + if args.summary: + return list(SUMMARY_OUTPUT_FIELDS) + + output_fields = list(DEFAULT_OUTPUT_FIELDS) + + if args.from_ == FromArg.ALL: + output_fields.append('License-Metadata') + output_fields.append('License-Classifier') + else: + output_fields.append('License') + + if args.with_authors: + output_fields.append('Author') + + if args.with_urls: + output_fields.append('URL') + + if args.with_description: + output_fields.append('Description') + + if args.with_license_file: + if not args.no_license_path: + output_fields.append('LicenseFile') + + output_fields.append('LicenseText') + + if args.with_notice_file: + output_fields.append('NoticeText') + if not args.no_license_path: + output_fields.append('NoticeFile') + + return output_fields + + +def create_output_string(args: "CustomNamespace"): + output_fields = get_output_fields(args) + + if args.summary: + licenses = create_summary_list(args) + else: + licenses = create_licenses_list(args, output_fields) + + return json.dumps(licenses) + + +class CustomHelpFormatter(argparse.HelpFormatter): # pragma: no cover + def __init__( + self, prog: Text, indent_increment: int = 2, + max_help_position: int = 24, width: Optional[int] = None + ) -> None: + max_help_position = 30 + super().__init__( + prog, indent_increment=indent_increment, + max_help_position=max_help_position, width=width) + + def _format_action(self, action: argparse.Action) -> str: + flag_indent_argument: bool = False + text = self._expand_help(action) + separator_pos = text[:3].find('|') + if separator_pos != -1 and 'I' in text[:separator_pos]: + self._indent() + flag_indent_argument = True + help_str = super()._format_action(action) + if flag_indent_argument: + self._dedent() + return help_str + + def _expand_help(self, action: argparse.Action) -> str: + if isinstance(action.default, Enum): + default_value = enum_key_to_value(action.default) + return self._get_help_string(action) % {'default': default_value} + return super()._expand_help(action) + + def _split_lines(self, text: Text, width: int) -> List[str]: + separator_pos = text[:3].find('|') + if separator_pos != -1: + flag_splitlines: bool = 'R' in text[:separator_pos] + text = text[separator_pos + 1:] + if flag_splitlines: + return text.splitlines() + return super()._split_lines(text, width) + + +class CustomNamespace(argparse.Namespace): + from_: "FromArg" + order: "OrderArg" + summary: bool + local_only: bool + user_only:bool + output_file: str + ignore_packages: List[str] + packages: List[str] + with_system: bool + with_authors: bool + with_urls: bool + with_description: bool + with_license_file: bool + no_license_path: bool + with_notice_file: bool + filter_strings: bool + filter_code_page: str + fail_on: Optional[str] + allow_only: Optional[str] + + +class CompatibleArgumentParser(argparse.ArgumentParser): + def parse_args(self, args: Optional[Sequence[Text]] = None, + namespace: CustomNamespace = None) -> CustomNamespace: + args = super().parse_args(args, namespace) + self._verify_args(args) + return args + + def _verify_args(self, args: CustomNamespace): + if args.with_license_file is False and ( + args.no_license_path is True or + args.with_notice_file is True): + self.error( + "'--no-license-path' and '--with-notice-file' require " + "the '--with-license-file' option to be set") + if args.filter_strings is False and \ + args.filter_code_page != 'latin1': + self.error( + "'--filter-code-page' requires the '--filter-strings' " + "option to be set") + try: + codecs.lookup(args.filter_code_page) + except LookupError: + self.error( + "invalid code page '%s' given for '--filter-code-page, " + "check https://docs.python.org/3/library/codecs.html" + "#standard-encodings for valid code pages" + % args.filter_code_page) + + +class NoValueEnum(Enum): + def __repr__(self): # pragma: no cover + return '<%s.%s>' % (self.__class__.__name__, self.name) + + +class FromArg(NoValueEnum): + META = M = auto() + CLASSIFIER = C = auto() + MIXED = MIX = auto() + ALL = auto() + + +class OrderArg(NoValueEnum): + COUNT = C = auto() + LICENSE = L = auto() + NAME = N = auto() + AUTHOR = A = auto() + URL = U = auto() + + +def value_to_enum_key(value: str) -> str: + return value.replace('-', '_').upper() + + +def enum_key_to_value(enum_key: Enum) -> str: + return enum_key.name.replace('_', '-').lower() + + +def choices_from_enum(enum_cls: NoValueEnum) -> List[str]: + return [key.replace('_', '-').lower() + for key in enum_cls.__members__.keys()] + + +MAP_DEST_TO_ENUM = { + 'from_': FromArg, + 'order': OrderArg, +} + + +class SelectAction(argparse.Action): + def __call__( + self, parser: argparse.ArgumentParser, + namespace: argparse.Namespace, + values: Text, + option_string: Optional[Text] = None, + ) -> None: + enum_cls = MAP_DEST_TO_ENUM[self.dest] + values = value_to_enum_key(values) + setattr(namespace, self.dest, getattr(enum_cls, values)) + + +def create_parser(): + parser = CompatibleArgumentParser( + description=__summary__, + formatter_class=CustomHelpFormatter) + + common_options = parser.add_argument_group('Common options') + format_options = parser.add_argument_group('Format options') + verify_options = parser.add_argument_group('Verify options') + + parser.add_argument( + '-v', '--version', + action='version', + version='%(prog)s ' + __version__) + + common_options.add_argument( + '--from', + dest='from_', + action=SelectAction, type=str, + default=FromArg.MIXED, metavar='SOURCE', + choices=choices_from_enum(FromArg), + help='R|where to find license information\n' + '"meta", "classifier, "mixed", "all"\n' + '(default: %(default)s)') + common_options.add_argument( + '-o', '--order', + action=SelectAction, type=str, + default=OrderArg.NAME, metavar='COL', + choices=choices_from_enum(OrderArg), + help='R|order by column\n' + '"name", "license", "author", "url"\n' + '(default: %(default)s)') + common_options.add_argument( + '--summary', + action='store_true', + default=False, + help='dump summary of each license') + common_options.add_argument( + '--output-file', + action='store', type=str, + help='save license list to file') + common_options.add_argument( + '-i', '--ignore-packages', + action='store', type=str, + nargs='+', metavar='PKG', + default=[], + help='ignore package name in dumped list') + common_options.add_argument( + '-p', '--packages', + action='store', type=str, + nargs='+', metavar='PKG', + default=[], + help='only include selected packages in output') + common_options.add_argument( + '--local-only', + action='store_true', + default=False, + help='include only local packages') + common_options.add_argument( + '--user-only', + action='store_true', + default=False, + help='include only packages of the user site dir') + + format_options.add_argument( + '-s', '--with-system', + action='store_true', + default=False, + help='dump with system packages') + format_options.add_argument( + '-a', '--with-authors', + action='store_true', + default=False, + help='dump with package authors') + format_options.add_argument( + '-u', '--with-urls', + action='store_true', + default=False, + help='dump with package urls') + format_options.add_argument( + '-d', '--with-description', + action='store_true', + default=False, + help='dump with short package description') + format_options.add_argument( + '-l', '--with-license-file', + action='store_true', + default=False, + help='dump with location of license file and ' + 'contents, most useful with JSON output') + format_options.add_argument( + '--no-license-path', + action='store_true', + default=False, + help='I|when specified together with option -l, ' + 'suppress location of license file output') + format_options.add_argument( + '--with-notice-file', + action='store_true', + default=False, + help='I|when specified together with option -l, ' + 'dump with location of license file and contents') + format_options.add_argument( + '--filter-strings', + action="store_true", + default=False, + help='filter input according to code page') + format_options.add_argument( + '--filter-code-page', + action="store", type=str, + default="latin1", + metavar="CODE", + help='I|specify code page for filtering ' + '(default: %(default)s)') + + verify_options.add_argument( + '--fail-on', + action='store', type=str, + default=None, + help='fail (exit with code 1) on the first occurrence ' + 'of the licenses of the semicolon-separated list') + verify_options.add_argument( + '--allow-only', + action='store', type=str, + default=None, + help='fail (exit with code 1) on the first occurrence ' + 'of the licenses not in the semicolon-separated list') + + return parser + + +def main(): # pragma: no cover + parser = create_parser() + args = parser.parse_args() + + output_string = create_output_string(args) + + print(output_string) + + +if __name__ == '__main__': # pragma: no cover + main()
--- a/eric7/PluginManager/PluginManager.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/PluginManager/PluginManager.py Sat Apr 02 11:23:11 2022 +0200 @@ -427,7 +427,11 @@ self.__onDemandInactiveModules[name] = module module.eric7PluginModuleName = name module.eric7PluginModuleFilename = fname - if install and hasattr(module, "installDependencies"): + if ( + (install or + Preferences.getPluginManager("AutoInstallDependencies")) and + hasattr(module, "installDependencies") + ): # ask the module to install its dependencies module.installDependencies(self.pipInstall) self.__modulesCount += 1
--- a/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/mccabe.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/mccabe.py Sat Apr 02 11:23:11 2022 +0200 @@ -4,10 +4,20 @@ MIT License. """ +# +# Specialized variant for integration into the eric IDE. +# +# Changes: +# - use 'import ...' instead of 'from ... import ...' +# - removed 'McCabeChecker' because we have our own checker class +# +# Copyright (c) 2015 - 2022 Detlev Offenbach <detlev@die-offenbachs.de> +# + import collections import ast -__version__ = '0.6.1_eric7' +__version__ = '0.7.0_eric7' class ASTVisitor(object):
--- a/eric7/Preferences/ConfigurationPages/ApplicationPage.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Preferences/ConfigurationPages/ApplicationPage.py Sat Apr 02 11:23:11 2022 +0200 @@ -91,6 +91,9 @@ self.backgroundServicesSpinBox.setValue( Preferences.getUI("BackgroundServiceProcesses")) + + self.upgraderDelaySpinBox.setValue( + Preferences.getUI("UpgraderDelay")) def save(self): """ @@ -154,6 +157,10 @@ Preferences.setUI( "BackgroundServiceProcesses", self.backgroundServicesSpinBox.value()) + + Preferences.setUI( + "UpgraderDelay", + self.upgraderDelaySpinBox.value()) def create(dlg):
--- a/eric7/Preferences/ConfigurationPages/ApplicationPage.ui Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Preferences/ConfigurationPages/ApplicationPage.ui Sat Apr 02 11:23:11 2022 +0200 @@ -7,7 +7,7 @@ <x>0</x> <y>0</y> <width>589</width> - <height>610</height> + <height>748</height> </rect> </property> <layout class="QVBoxLayout" name="verticalLayout_4"> @@ -203,6 +203,54 @@ </widget> </item> <item> + <widget class="QGroupBox" name="groupBox_7"> + <property name="title"> + <string>Upgrader</string> + </property> + <layout class="QHBoxLayout" name="horizontalLayout_3"> + <item> + <widget class="QLabel" name="label_3"> + <property name="text"> + <string>Upgrader Delay:</string> + </property> + </widget> + </item> + <item> + <widget class="QSpinBox" name="upgraderDelaySpinBox"> + <property name="toolTip"> + <string>Enter the time the upgrader process should wait for eric to exit</string> + </property> + <property name="alignment"> + <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> + </property> + <property name="suffix"> + <string> s</string> + </property> + <property name="minimum"> + <number>1</number> + </property> + <property name="maximum"> + <number>30</number> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer_3"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>411</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + </layout> + </widget> + </item> + <item> <widget class="QGroupBox" name="groupBox_4"> <property name="title"> <string>Reporting</string> @@ -392,6 +440,7 @@ <tabstop>dailyCheckRadioButton</tabstop> <tabstop>weeklyCheckRadioButton</tabstop> <tabstop>monthlyCheckRadioButton</tabstop> + <tabstop>upgraderDelaySpinBox</tabstop> <tabstop>systemEmailClientCheckBox</tabstop> <tabstop>errorlogCheckBox</tabstop> <tabstop>msgSeverityComboBox</tabstop>
--- a/eric7/Preferences/ConfigurationPages/PipPage.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Preferences/ConfigurationPages/PipPage.py Sat Apr 02 11:23:11 2022 +0200 @@ -29,11 +29,26 @@ self.indexLabel.setText(self.tr( '<b>Note:</b> Leave empty to use the default index URL (' - '<a href="{0}">{0}</a>).') - .format(Pip.DefaultPyPiUrl)) + '<a href="{0}">{0}</a>).' + ).format(Pip.DefaultPyPiUrl)) + self.safetyDbMirrorLabel.setText(self.tr( + '<b>Note:</b> Leave empty to use the default Safety DB URL ({0}).' + ).format(Preferences.Prefs.pipDefaults["VulnerabilityDbMirror"])) # set initial values self.indexEdit.setText(Preferences.getPip("PipSearchIndex")) + + safetyDbUrl = Preferences.getPip("VulnerabilityDbMirror") + if ( + safetyDbUrl == + Preferences.Prefs.pipDefaults["VulnerabilityDbMirror"] + ): + safetyDbUrl = "" + self.safetyDbMirrorEdit.setText(safetyDbUrl) + self.validitySpinBox.setValue( + Preferences.getPip("VulnerabilityDbCacheValidity") // 3600) + # seconds converted to hours + self.noCondaCheckBox.setChecked( Preferences.getPip("ExcludeCondaEnvironments")) @@ -41,10 +56,24 @@ """ Public slot to save the pip configuration. """ - Preferences.setPip( - "PipSearchIndex", self.indexEdit.text().strip()) - Preferences.setPip( - "ExcludeCondaEnvironments", self.noCondaCheckBox.isChecked()) + safetyDbUrl = self.safetyDbMirrorEdit.text().strip() + if not safetyDbUrl: + safetyDbUrl = Preferences.Prefs.pipDefaults[ + "VulnerabilityDbMirror"] + safetyDbUrl = safetyDbUrl.replace("\\", "/") + if not safetyDbUrl.endswith("/"): + safetyDbUrl += "/" + + Preferences.setPip("PipSearchIndex", + self.indexEdit.text().strip()) + + Preferences.setPip("VulnerabilityDbMirror", safetyDbUrl) + Preferences.setPip("VulnerabilityDbCacheValidity", + self.validitySpinBox.value() * 3600) + # hours converted to seconds + + Preferences.setPip("ExcludeCondaEnvironments", + self.noCondaCheckBox.isChecked()) def create(dlg):
--- a/eric7/Preferences/ConfigurationPages/PipPage.ui Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Preferences/ConfigurationPages/PipPage.ui Sat Apr 02 11:23:11 2022 +0200 @@ -6,8 +6,8 @@ <rect> <x>0</x> <y>0</y> - <width>402</width> - <height>247</height> + <width>532</width> + <height>393</height> </rect> </property> <layout class="QVBoxLayout" name="verticalLayout_3"> @@ -42,6 +42,9 @@ <property name="toolTip"> <string>Enter the URL of the package index or leave empty to use the default</string> </property> + <property name="clearButtonEnabled"> + <bool>true</bool> + </property> </widget> </item> <item> @@ -49,6 +52,9 @@ <property name="text"> <string/> </property> + <property name="wordWrap"> + <bool>true</bool> + </property> <property name="openExternalLinks"> <bool>true</bool> </property> @@ -58,6 +64,81 @@ </widget> </item> <item> + <widget class="QGroupBox" name="groupBox_3"> + <property name="title"> + <string>Vulnerability Checks</string> + </property> + <layout class="QGridLayout" name="gridLayout"> + <item row="0" column="0"> + <widget class="QLabel" name="label"> + <property name="text"> + <string>Safety DB URL:</string> + </property> + </widget> + </item> + <item row="0" column="1" colspan="2"> + <widget class="QLineEdit" name="safetyDbMirrorEdit"> + <property name="toolTip"> + <string>Enter the base URL for the Safety DB mirror to be used</string> + </property> + <property name="clearButtonEnabled"> + <bool>true</bool> + </property> + </widget> + </item> + <item row="1" column="0" colspan="3"> + <widget class="QLabel" name="safetyDbMirrorLabel"> + <property name="wordWrap"> + <bool>true</bool> + </property> + <property name="openExternalLinks"> + <bool>true</bool> + </property> + </widget> + </item> + <item row="2" column="0"> + <widget class="QLabel" name="label_2"> + <property name="text"> + <string>Cache Validity:</string> + </property> + </widget> + </item> + <item row="2" column="1"> + <widget class="QSpinBox" name="validitySpinBox"> + <property name="toolTip"> + <string>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</string> + </property> + <property name="alignment"> + <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> + </property> + <property name="suffix"> + <string> hours</string> + </property> + <property name="minimum"> + <number>2</number> + </property> + <property name="maximum"> + <number>168</number> + </property> + </widget> + </item> + <item row="2" column="2"> + <spacer name="horizontalSpacer"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>330</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + </layout> + </widget> + </item> + <item> <widget class="QGroupBox" name="groupBox"> <property name="title"> <string>Environment</string> @@ -93,6 +174,9 @@ </widget> <tabstops> <tabstop>indexEdit</tabstop> + <tabstop>safetyDbMirrorEdit</tabstop> + <tabstop>validitySpinBox</tabstop> + <tabstop>noCondaCheckBox</tabstop> </tabstops> <resources/> <connections/>
--- a/eric7/Preferences/ConfigurationPages/PluginManagerPage.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Preferences/ConfigurationPages/PluginManagerPage.py Sat Apr 02 11:23:11 2022 +0200 @@ -63,6 +63,9 @@ self.__repositoryUrl = Preferences.getUI("PluginRepositoryUrl7") self.repositoryUrlEdit.setText(self.__repositoryUrl) + + self.autoInstallCheckBox.setChecked( + Preferences.getPluginManager("AutoInstallDependencies")) def save(self): """ @@ -103,6 +106,10 @@ if self.repositoryUrlEdit.text() != self.__repositoryUrl: Preferences.setUI( "PluginRepositoryUrl7", self.repositoryUrlEdit.text()) + + Preferences.getPluginManager( + "AutoInstallDependencies", + self.autoInstallCheckBox.isChecked()) @pyqtSlot(bool) def on_repositoryUrlEditButton_toggled(self, checked):
--- a/eric7/Preferences/ConfigurationPages/PluginManagerPage.ui Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Preferences/ConfigurationPages/PluginManagerPage.ui Sat Apr 02 11:23:11 2022 +0200 @@ -7,10 +7,10 @@ <x>0</x> <y>0</y> <width>528</width> - <height>427</height> + <height>520</height> </rect> </property> - <layout class="QVBoxLayout" name="verticalLayout"> + <layout class="QVBoxLayout" name="verticalLayout_3"> <item> <widget class="QLabel" name="headerLabel"> <property name="text"> @@ -245,6 +245,25 @@ </layout> </item> <item> + <widget class="QGroupBox" name="groupBox_3"> + <property name="title"> + <string>Startup Behavior</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QCheckBox" name="autoInstallCheckBox"> + <property name="toolTip"> + <string>Select, to check for missing plugin dependencies at startup and install them</string> + </property> + <property name="text"> + <string>Automatic dependencies installation</string> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> <spacer> <property name="orientation"> <enum>Qt::Vertical</enum>
--- a/eric7/Preferences/ConfigurationPages/ShellPage.ui Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Preferences/ConfigurationPages/ShellPage.ui Sat Apr 02 11:23:11 2022 +0200 @@ -306,5 +306,54 @@ <tabstop>stdOutErrCheckBox</tabstop> </tabstops> <resources/> - <connections/> + <connections> + <connection> + <sender>shellSyntaxHighlightingCheckBox</sender> + <signal>toggled(bool)</signal> + <receiver>monospacedFontButton</receiver> + <slot>setDisabled(bool)</slot> + <hints> + <hint type="sourcelabel"> + <x>72</x> + <y>102</y> + </hint> + <hint type="destinationlabel"> + <x>71</x> + <y>299</y> + </hint> + </hints> + </connection> + <connection> + <sender>shellSyntaxHighlightingCheckBox</sender> + <signal>toggled(bool)</signal> + <receiver>monospacedFontSample</receiver> + <slot>setDisabled(bool)</slot> + <hints> + <hint type="sourcelabel"> + <x>141</x> + <y>105</y> + </hint> + <hint type="destinationlabel"> + <x>200</x> + <y>298</y> + </hint> + </hints> + </connection> + <connection> + <sender>shellSyntaxHighlightingCheckBox</sender> + <signal>toggled(bool)</signal> + <receiver>monospacedCheckBox</receiver> + <slot>setDisabled(bool)</slot> + <hints> + <hint type="sourcelabel"> + <x>241</x> + <y>104</y> + </hint> + <hint type="destinationlabel"> + <x>410</x> + <y>304</y> + </hint> + </hints> + </connection> + </connections> </ui>
--- a/eric7/Preferences/__init__.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Preferences/__init__.py Sat Apr 02 11:23:11 2022 +0200 @@ -211,9 +211,6 @@ "PluginRepositoryUrl7": "https://eric-ide.python-projects.org/plugins7/repository.xml", - "VersionsUrls7": [ - "https://eric-ide.python-projects.org/versions/versions7", - ], "OpenOnStartup": 0, # 0 = nothing # 1 = last file @@ -222,6 +219,7 @@ # 4 = last global session "OpenCrashSessionOnStartup": True, "CrashSessionEnabled": True, + "UpgraderDelay": 5, "DownloadPath": "", "RequestDownloadFilename": True, @@ -1291,12 +1289,13 @@ # 3 = monthly # 4 = always "CheckInstalledOnly": True, - # list of plug-ins not to shown in the repo dialog + # list of plug-ins not to be shown in the repo dialog "HiddenPlugins": [], # parameters for housekeeping "KeepGenerations": 2, "KeepHidden": False, "StartupCleanup": True, + "AutoInstallDependencies": True, } # defaults for the printer settings @@ -1437,6 +1436,11 @@ "PipSearchIndex": "", # used by the search command "ExcludeCondaEnvironments": True, # don't show conda environments in selector + + # defaults for the package vulnerability check + "VulnerabilityDbMirror": + "https://raw.githubusercontent.com/pyupio/safety-db/master/data/", + "VulnerabilityDbCacheValidity": 60 * 60 * 6 # 6 hours } # defaults for MicroPython @@ -1948,7 +1952,7 @@ elif key in ["TabViewManagerFilenameLength", "CaptionFilenameLength", "ProxyPort/Http", "ProxyPort/Https", "ProxyPort/Ftp", "OpenOnStartup", "PerformVersionCheck", "RecentNumber", - "NotificationTimeout", + "NotificationTimeout", "UpgraderDelay", "KeyboardInputInterval", "BackgroundServiceProcesses", "MinimumMessageTypeSeverity"]: return int(Prefs.settings.value( @@ -1996,13 +2000,6 @@ return state else: return Prefs.uiDefaults[key] - elif key in ["VersionsUrls7"]: - urls = toList( - Prefs.settings.value("UI/" + key, Prefs.uiDefaults[key])) - if len(urls) == 0: - return Prefs.uiDefaults[key] - else: - return urls elif key in ["LogViewerStdoutFilter", "LogViewerStderrFilter", "LogViewerStdxxxFilter", "TextMimeTypes"]: return toList( @@ -3450,10 +3447,14 @@ @param key the key of the value to get @return the requested pip value """ - if key in ("ExcludeCondaEnvironments"): + if key in ("ExcludeCondaEnvironments",): return toBool(Prefs.settings.value( "Pip/" + key, Prefs.pipDefaults[key])) + elif key in ("VulnerabilityDbCacheValidity",): + return int(Prefs.settings.value( + "Pip/" + key, + Prefs.pipDefaults[key])) else: return Prefs.settings.value( "Pip/" + key,
--- a/eric7/Tools/TrayStarter.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Tools/TrayStarter.py Sat Apr 02 11:23:11 2022 +0200 @@ -548,14 +548,20 @@ versionText = self.tr( """<h3>Version Numbers</h3>""" """<table>""") + + # Python version versionText += ( """<tr><td><b>Python</b></td><td>{0}</td></tr>""" .format(sys.version.split()[0]) ) + + # Qt version versionText += ( """<tr><td><b>Qt</b></td><td>{0}</td></tr>""" .format(qVersion()) ) + + # PyQt versions versionText += ( """<tr><td><b>PyQt</b></td><td>{0}</td></tr>""" .format(PYQT_VERSION_STR) @@ -568,6 +574,8 @@ """<tr><td><b>QScintilla</b></td><td>{0}</td></tr>""" .format(QSCINTILLA_VERSION_STR) ) + + # webengine (chromium) version with contextlib.suppress(ImportError): from WebBrowser.Tools import WebBrowserTools chromeVersion = WebBrowserTools.getWebEngineVersions()[0] @@ -575,10 +583,25 @@ """<tr><td><b>WebEngine</b></td><td>{0}</td></tr>""" .format(chromeVersion) ) + + # eric7 version versionText += ( """<tr><td><b>{0}</b></td><td>{1}</td></tr>""" .format(Program, Version) ) + + # desktop and session type + desktop = Globals.desktopName() + session = Globals.sessionType() + if desktop or session: + versionText += "<tr><td></td><td></td></tr>" + if desktop: + versionText += ("<tr><td><b>{0}</b></td><td>{1}</td></tr>" + ).format(self.tr("Desktop"), desktop) + if session: + versionText += ("<tr><td><b>{0}</b></td><td>{1}</td></tr>" + ).format(self.tr("Session Type"), session) + versionText += self.tr("""</table>""") EricMessageBox.about(None, Program, versionText)
--- a/eric7/UI/UserInterface.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/UI/UserInterface.py Sat Apr 02 11:23:11 2022 +0200 @@ -30,9 +30,7 @@ QApplication, QMenu, QVBoxLayout, QDockWidget, QLabel ) from PyQt6.Qsci import QSCINTILLA_VERSION_STR -from PyQt6.QtNetwork import ( - QNetworkProxyFactory, QNetworkAccessManager, QNetworkRequest, QNetworkReply -) +from PyQt6.QtNetwork import QNetworkProxyFactory, QNetworkAccessManager from .Info import Version, VersionOnly, BugAddress, Program, FeatureAddress from . import Config @@ -45,7 +43,6 @@ from EricWidgets.EricApplication import ericApp from EricWidgets.EricMainWindow import EricMainWindow from EricWidgets.EricZoomWidget import EricZoomWidget -from EricWidgets.EricProgressDialog import EricProgressDialog from EricWidgets.EricClickableLabel import EricClickableLabel import Preferences @@ -631,11 +628,6 @@ ericApp().registerObject("PluginRepositoryViewer", self.pluginRepositoryViewer) - # list of web addresses serving the versions file - self.__httpAlternatives = Preferences.getUI("VersionsUrls7") - self.__inVersionCheck = False - self.__versionCheckProgress = None - # create the various JSON file interfaces self.__sessionFile = SessionFile(True) self.__tasksFile = TasksFile(True) @@ -2452,32 +2444,6 @@ self.versionAct.triggered.connect(self.__showVersions) self.actions.append(self.versionAct) - self.checkUpdateAct = EricAction( - self.tr('Check for Updates'), - self.tr('Check for &Updates...'), 0, 0, self, 'check_updates') - self.checkUpdateAct.setStatusTip(self.tr('Check for Updates')) - self.checkUpdateAct.setWhatsThis(self.tr( - """<b>Check for Updates...</b>""" - """<p>Checks the internet for updates of eric.</p>""" - )) - self.checkUpdateAct.triggered.connect(self.performVersionCheck) - self.actions.append(self.checkUpdateAct) - - self.showVersionsAct = EricAction( - self.tr('Show downloadable versions'), - self.tr('Show &downloadable versions...'), - 0, 0, self, 'show_downloadable_versions') - self.showVersionsAct.setStatusTip( - self.tr('Show the versions available for download')) - self.showVersionsAct.setWhatsThis(self.tr( - """<b>Show downloadable versions...</b>""" - """<p>Shows the eric versions available for download """ - """from the internet.</p>""" - )) - self.showVersionsAct.triggered.connect( - self.showAvailableVersionsInfo) - self.actions.append(self.showVersionsAct) - self.showErrorLogAct = EricAction( self.tr('Show Error Log'), self.tr('Show Error &Log...'), @@ -3585,9 +3551,6 @@ self.__menus["help"].addSeparator() self.__menus["help"].addAction(self.versionAct) self.__menus["help"].addSeparator() - self.__menus["help"].addAction(self.checkUpdateAct) - self.__menus["help"].addAction(self.showVersionsAct) - self.__menus["help"].addSeparator() self.__menus["help"].addAction(self.showInstallInfoAct) self.__menus["help"].addSeparator() self.__menus["help"].addAction(self.showErrorLogAct) @@ -3955,8 +3918,6 @@ """ Private slot to display the Help menu. """ - self.checkUpdateAct.setEnabled(not self.__inVersionCheck) - self.showVersionsAct.setEnabled(not self.__inVersionCheck) self.showErrorLogAct.setEnabled(self.__hasErrorLog()) infoFileName = Globals.getInstallInfoFilePath() @@ -4014,6 +3975,8 @@ """ Private slot to handle the Versions dialog. """ + from .VersionsDialog import VersionsDialog + try: try: from PyQt6 import sip @@ -4086,7 +4049,7 @@ versionText += self.tr("""</table>""") - EricMessageBox.about(self, Program, versionText) + VersionsDialog(self, Program, versionText) def __reportBug(self): """ @@ -4440,12 +4403,108 @@ if res and self.__shutdown(): ericApp().closeAllWindows() program = sys.executable - eric7 = os.path.join(getConfig("ericDir"), "eric7.py") - args = [eric7] - args.append("--start-session") + args = ["-m", "eric7", "--start-session"] args.extend(self.__restartArgs) QProcess.startDetached(program, args) - + + @pyqtSlot() + def upgradePyQt(self): + """ + Public slot to upgrade the PyQt packages of the eric7 environment. + + @return flag indicating a successful upgrade + @rtype bool + """ + yes = EricMessageBox.yesNo( + self, + self.tr("Upgrade PyQt"), + self.tr("""eric needs to be closed in order to upgrade PyQt. It""" + """ will be restarted once the upgrade process has""" + """ finished. This may take some time.\n\nShall the""" + """ upgrade be done now?""") + ) + + if yes and self.__shutdown(): + self.__performUpgrade("pyqt") + return True + + return False + + @pyqtSlot() + def upgradeEric(self): + """ + Public slot to upgrade the eric-ide package of the eric7 environment. + + @return flag indicating a successful upgrade + @rtype bool + """ + yes = EricMessageBox.yesNo( + self, + self.tr("Upgrade Eric"), + self.tr("""eric needs to be closed in order to be upgraded. It""" + """ will be restarted once the upgrade process has""" + """ finished. This may take some time.\n\nShall the""" + """ upgrade be done now?""") + ) + + if yes and self.__shutdown(): + self.__performUpgrade("eric") + return True + + return False + + @pyqtSlot() + def upgradeEricPyQt(self): + """ + Public slot to upgrade the eric-ide and Pyqt packages of the eric7 + environment. + + @return flag indicating a successful upgrade + @rtype bool + """ + yes = EricMessageBox.yesNo( + self, + self.tr("Upgrade Eric"), + self.tr("""eric needs to be closed in order to upgrade eric and""" + """ PyQt. It will be restarted once the upgrade process""" + """ has finished. This may take some time.\n\n Shall""" + """ the upgrade be done now?""") + ) + + if yes and self.__shutdown(): + self.__performUpgrade("ericpyqt") + return True + + return False + + def __performUpgrade(self, upgradeType): + """ + Private method to perform the requested upgrade operation. + + This action needs to shut down eric first, start a non-PyQt application + performing the upgrade of the PyQt packages via pip and restart eric + with the passed arguments. The upgrade process is not visible. + + @param upgradeType upgrade operation (one of 'eric', 'ericpyqt', + 'pyqt') + @type str + """ + ericApp().closeAllWindows() + program = sys.executable + ericStartArgs = ["-m", "eric7", "--start-session"] + ericStartArgs.extend(self.__restartArgs) + + upgrader = os.path.join( + os.path.dirname(__file__), "upgrader.py" + ) + upgraderArgs = [ + upgrader, + "--type={0}".format(upgradeType), + "--delay={0}".format(Preferences.getUI("UpgraderDelay")), + "--" + ] + ericStartArgs + QProcess.startDetached(program, upgraderArgs) + def __newWindow(self): """ Private slot to start a new instance of eric. @@ -6556,8 +6615,7 @@ else: self.__setWindowCaption(editor="") - self.__httpAlternatives = Preferences.getUI("VersionsUrls7") - self.performVersionCheck(False) + self.performVersionCheck() from QScintilla.SpellChecker import SpellChecker SpellChecker.setDefaultLanguage( @@ -7495,300 +7553,55 @@ @type bool """ if online: - self.performVersionCheck(False) + self.performVersionCheck() ############################################## ## Below are methods to check for new versions ############################################## - - def showAvailableVersionsInfo(self): - """ - Public method to show the eric versions available for download. - """ - self.performVersionCheck(manual=True, showVersions=True) - - @pyqtSlot() - def performVersionCheck(self, manual=True, alternative=0, - showVersions=False): - """ - Public method to check the internet for an eric update. - - @param manual flag indicating an invocation via the menu (boolean) - @param alternative index of server to download from (integer) - @param showVersions flag indicating the show versions mode (boolean) + + def performVersionCheck(self): + """ + Public method to check for an update even if not installed via PyPI. """ if self.isOnline(): - if not manual: - if VersionOnly.startswith("@@"): - return - else: - period = Preferences.getUI("PerformVersionCheck") - if period == 0: - return - elif period in [2, 3, 4]: - lastCheck = Preferences.getSettings().value( - "Updates/LastCheckDate", QDate(1970, 1, 1)) - if lastCheck.isValid(): - now = QDate.currentDate() - if ( - (period == 2 and - lastCheck.day() == now.day()) or - (period == 3 and lastCheck.daysTo(now) < 7) or - (period == 4 and (lastCheck.daysTo(now) < - lastCheck.daysInMonth())) - ): - # daily, weekly, monthly - return - - self.__inVersionCheck = True - self.manualUpdatesCheck = manual - self.showAvailableVersions = showVersions - self.httpAlternative = alternative - url = QUrl(self.__httpAlternatives[alternative]) - self.__versionCheckCanceled = False - if manual: - if self.__versionCheckProgress is None: - self.__versionCheckProgress = EricProgressDialog( - "", self.tr("&Cancel"), - 0, len(self.__httpAlternatives), - self.tr("%v/%m"), self) - self.__versionCheckProgress.setWindowTitle( - self.tr("Version Check")) - self.__versionCheckProgress.setMinimumDuration(0) - self.__versionCheckProgress.canceled.connect( - self.__versionsDownloadCanceled) - self.__versionCheckProgress.setLabelText( - self.tr("Trying host {0}").format(url.host())) - self.__versionCheckProgress.setValue(alternative) - request = QNetworkRequest(url) - request.setAttribute( - QNetworkRequest.Attribute.CacheLoadControlAttribute, - QNetworkRequest.CacheLoadControl.AlwaysNetwork) - reply = self.__networkManager.get(request) - reply.finished.connect(lambda: self.__versionsDownloadDone(reply)) - self.__replies.append(reply) - else: - if manual: - EricMessageBox.warning( - self, - self.tr("Error getting versions information"), - self.tr("The versions information cannot not be" - " downloaded because the Internet is" - " <b>not reachable</b>. Please try again later.") - ) - - @pyqtSlot() - def __versionsDownloadDone(self, reply): - """ - Private slot called, after the versions file has been downloaded - from the internet. - - @param reply reference to the network reply - @type QNetworkReply - """ - if self.__versionCheckCanceled: - self.__inVersionCheck = False - if self.__versionCheckProgress is not None: - self.__versionCheckProgress.reset() - self.__versionCheckProgress = None - return - - reply.deleteLater() - if reply in self.__replies: - self.__replies.remove(reply) - if reply.error() == QNetworkReply.NetworkError.NoError: - ioEncoding = Preferences.getSystem("IOEncoding") - versions = str(reply.readAll(), ioEncoding, 'replace').splitlines() - reply.close() - if ( - reply.error() != QNetworkReply.NetworkError.NoError or - len(versions) == 0 or - versions[0].startswith("<") - ): - # network error or an error page - self.httpAlternative += 1 - if self.httpAlternative >= len(self.__httpAlternatives): - self.__inVersionCheck = False - if self.__versionCheckProgress is not None: - self.__versionCheckProgress.reset() - self.__versionCheckProgress = None - firstFailure = Preferences.getSettings().value( - "Updates/FirstFailedCheckDate", QDate.currentDate()) - failedDuration = firstFailure.daysTo(QDate.currentDate()) - Preferences.getSettings().setValue( - "Updates/FirstFailedCheckDate", firstFailure) - if self.manualUpdatesCheck: - EricMessageBox.warning( - self, - self.tr("Error getting versions information"), - self.tr("""The versions information could not be""" - """ downloaded.""" - """ Please go online and try again.""")) - elif failedDuration > 7: - EricMessageBox.warning( - self, - self.tr("Error getting versions information"), - self.tr("""The versions information could not be""" - """ downloaded for the last 7 days.""" - """ Please go online and try again.""")) + if VersionOnly.startswith(("rev_", "@@")): + # cannot check against development or source installation return else: - self.performVersionCheck(self.manualUpdatesCheck, - self.httpAlternative, - self.showAvailableVersions) - return - - self.__inVersionCheck = False - if self.__versionCheckProgress is not None: - self.__versionCheckProgress.reset() - self.__versionCheckProgress = None - self.__updateVersionsUrls(versions) - if self.showAvailableVersions: - self.__showAvailableVersionInfos(versions) - else: - Preferences.getSettings().remove("Updates/FirstFailedCheckDate") - Preferences.getSettings().setValue( - "Updates/LastCheckDate", QDate.currentDate()) - self.__versionCheckResult(versions) - - def __updateVersionsUrls(self, versions): - """ - Private method to update the URLs from which to retrieve the versions - file. - - @param versions contents of the downloaded versions file (list of - strings) - """ - if len(versions) > 5 and versions[4] == "---": - line = 5 - urls = [] - while line < len(versions): - urls.append(versions[line]) - line += 1 + period = Preferences.getUI("PerformVersionCheck") + if period == 0: + return + elif period in [2, 3, 4]: + lastCheck = Preferences.getSettings().value( + "Updates/LastCheckDate", QDate(1970, 1, 1)) + if lastCheck.isValid(): + now = QDate.currentDate() + if ( + (period == 2 and + lastCheck.day() == now.day()) or + (period == 3 and lastCheck.daysTo(now) < 7) or + (period == 4 and (lastCheck.daysTo(now) < + lastCheck.daysInMonth())) + ): + # daily, weekly, monthly + return - Preferences.setUI("VersionsUrls7", urls) - - def __versionCheckResult(self, versions): - """ - Private method to show the result of the version check action. - - @param versions contents of the downloaded versions file (list of - strings) - """ - url = "" - try: - if "snapshot-" in VersionOnly: - # check snapshot version like snapshot-20170810 - if "snapshot-" in versions[2]: - installedSnapshotDate = VersionOnly.rsplit("-", 1)[-1] - availableSnapshotDate = versions[2].rsplit("-", 1)[-1] - if availableSnapshotDate > installedSnapshotDate: - res = EricMessageBox.yesNo( - self, - self.tr("Update available"), - self.tr( - """The update to <b>{0}</b> of eric is""" - """ available at <b>{1}</b>. Would you like""" - """ to get it?""") - .format(versions[2], versions[3]), - yesDefault=True) - url = res and versions[3] or '' - else: - if self.manualUpdatesCheck: - EricMessageBox.information( - self, - self.tr("Update Check"), - self.tr( - """You are using a snapshot release of""" - """ eric. A more up-to-date stable release""" - """ might be available.""")) - elif VersionOnly.startswith(("rev_", "@@")): - # check installation from source - if self.manualUpdatesCheck: - EricMessageBox.information( - self, - self.tr("Update Check"), - self.tr( - """You installed eric directly from the source""" - """ code. There is no possibility to check""" - """ for the availability of an update.""")) - else: - # check release version - installedVersionTuple = self.__versionToTuple(VersionOnly) - availableVersionTuple = self.__versionToTuple(versions[0]) - if availableVersionTuple > installedVersionTuple: - res = EricMessageBox.yesNo( - self, - self.tr("Update available"), - self.tr( - """The update to <b>{0}</b> of eric is""" - """ available at <b>{1}</b>. Would you like""" - """ to get it?""") - .format(versions[0], versions[1]), - yesDefault=True) - url = res and versions[1] or '' - else: - if self.manualUpdatesCheck: - EricMessageBox.information( - self, - self.tr("eric is up to date"), - self.tr( - """You are using the latest version of""" - """ eric""")) - except (IndexError, TypeError): - EricMessageBox.warning( - self, - self.tr("Error during updates check"), - self.tr("""Could not perform updates check.""")) - - if url: - QDesktopServices.openUrl(QUrl(url)) - - @pyqtSlot() - def __versionsDownloadCanceled(self): - """ - Private slot called to cancel the version check. - """ - if self.__replies: - self.__versionCheckCanceled = True - self.__replies[-1].abort() - - def __showAvailableVersionInfos(self, versions): - """ - Private method to show the versions available for download. - - @param versions contents of the downloaded versions file (list of - strings) - """ - versionText = self.tr( - """<h3>Available versions</h3>""" - """<table>""") - line = 0 - while line < len(versions): - if versions[line] == "---": - break - - versionText += ( - """<tr><td>{0}</td><td><a href="{1}">{2}</a></td></tr>""" - ).format( - versions[line], versions[line + 1], - 'sourceforge' in versions[line + 1] and - "SourceForge" or versions[line + 1]) - line += 2 - versionText += self.tr("""</table>""") - - self.__versionsDialog = EricMessageBox.EricMessageBox( - EricMessageBox.NoIcon, - Program, - versionText, - modal=False, - buttons=EricMessageBox.Ok, - parent=self - ) - self.__versionsDialog.setIconPixmap( - UI.PixmapCache.getPixmap("eric").scaled(64, 64)) - self.__versionsDialog.show() - + availableVersions = ( + self.pipInterface.getPackageVersions("eric-ide") + ) + updateAvailable = bool(v for v in availableVersions + if v > VersionOnly) + if updateAvailable: + EricMessageBox.information( + self, + self.tr("Upgrade available"), + self.tr( + """A newer version of the <b>eric-ide</b> package is""" + """ available at <a href="{0}/eric-ide/">""" + """PyPI</a>.""" + ).format(self.pipInterface.getIndexUrlPypi()) + ) + def __sslErrors(self, reply, errors): """ Private slot to handle SSL errors.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/UI/VersionsDialog.py Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,130 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implementing a dialog to show the versions of various components. +""" + +import sys + +from PyQt6.QtCore import pyqtSlot, Qt +from PyQt6.QtGui import QGuiApplication +from PyQt6.QtWidgets import QDialog, QDialogButtonBox + +from EricGui.EricOverrideCursor import EricOverrideCursor +from EricWidgets.EricApplication import ericApp +from EricWidgets import EricMessageBox + +from .Ui_VersionsDialog import Ui_VersionsDialog + + +class VersionsDialog(QDialog, Ui_VersionsDialog): + """ + Class implementing a dialog to show the versions of various components. + """ + def __init__(self, parent, title, text): + """ + Constructor + + @param parent reference to the parent widget + @type UserInterface + @param title dialog title + @type str + @param text versions text to be shown + @type str + """ + super().__init__(parent) + self.setupUi(self) + + self.__ui = parent + icon = QGuiApplication.windowIcon().pixmap(64, 64) + + self.setWindowTitle(title) + self.iconLabel.setPixmap(icon) + self.textLabel.setText(text) + + self.__checkUpdateButton = self.buttonBox.addButton( + self.tr("Check for Upgrades..."), + QDialogButtonBox.ButtonRole.ActionRole + ) + self.__checkUpdateButton.clicked.connect(self.__checkForUpdate) + + self.buttonBox.button( + QDialogButtonBox.StandardButton.Ok).setDefault(True) + self.buttonBox.button( + QDialogButtonBox.StandardButton.Ok).setFocus( + Qt.FocusReason.OtherFocusReason) + + msh = self.minimumSizeHint() + self.resize(max(self.width(), msh.width()), msh.height()) + + self.exec() + + @pyqtSlot() + def __checkForUpdate(self): + """ + Private slot to check, if updates of PyQt6 packages or the eric-ide + package are available. + """ + msg = "" + + pip = ericApp().getObject("Pip") + venvManager = ericApp().getObject("VirtualEnvManager") + + environmentName = ( + venvManager.environmentForInterpreter(sys.executable)[0] + # just the name is needed + ) + + if environmentName: + with EricOverrideCursor(): + pyqtUpdateAvailable = pip.checkPackageOutdated( + "pyqt6", environmentName)[0] + ericUpdateAvailable = pip.checkPackageOutdated( + "eric-ide", environmentName)[0] + + if pyqtUpdateAvailable or ericUpdateAvailable: + self.buttonBox.removeButton(self.__checkUpdateButton) + self.__checkUpdateButton = None + else: + msg = self.tr("No upgrades available.") + + if ericUpdateAvailable: + self.__upgradeEricButton = self.buttonBox.addButton( + self.tr("Upgrade eric7..."), + QDialogButtonBox.ButtonRole.ActionRole + ) + self.__upgradeEricButton.clicked.connect(self.__ui.upgradeEric) + msg += self.tr( + "<p>An upgrade of <b>eric7</b> is available.</p>") + + if pyqtUpdateAvailable: + self.__upgradePyQtButton = self.buttonBox.addButton( + self.tr("Upgrade PyQt6..."), + QDialogButtonBox.ButtonRole.ActionRole + ) + self.__upgradePyQtButton.clicked.connect(self.__ui.upgradePyQt) + msg += self.tr( + "<p>An upgrade of <b>PyQt6</b> is available.</p>") + + if ericUpdateAvailable and pyqtUpdateAvailable: + self.__upgradeBothButton = self.buttonBox.addButton( + self.tr("Upgrade Both..."), + QDialogButtonBox.ButtonRole.ActionRole + ) + self.__upgradeBothButton.clicked.connect( + self.__ui.upgradeEricPyQt) + + self.buttonBox.button( + QDialogButtonBox.StandardButton.Ok).setDefault(True) + self.buttonBox.button( + QDialogButtonBox.StandardButton.Ok).setFocus( + Qt.FocusReason.OtherFocusReason) + + EricMessageBox.information( + self, + self.tr("Check for Upgrades"), + msg + )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/UI/VersionsDialog.ui Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>VersionsDialog</class> + <widget class="QDialog" name="VersionsDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>550</width> + <height>600</height> + </rect> + </property> + <property name="sizeGripEnabled"> + <bool>true</bool> + </property> + <layout class="QGridLayout" name="gridLayout"> + <item row="0" column="0"> + <widget class="QLabel" name="iconLabel"> + <property name="text"> + <string/> + </property> + <property name="alignment"> + <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> + </property> + </widget> + </item> + <item row="0" column="1"> + <widget class="QLabel" name="textLabel"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text"> + <string/> + </property> + <property name="alignment"> + <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + </widget> + </item> + <item row="1" column="0" colspan="2"> + <widget class="QDialogButtonBox" name="buttonBox"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons"> + <set>QDialogButtonBox::Ok</set> + </property> + </widget> + </item> + </layout> + </widget> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>accepted()</signal> + <receiver>VersionsDialog</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>VersionsDialog</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>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/UI/upgrader.py Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,104 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +# Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Script to upgrade the packages eric depends on. + +This process must be performed while eric is closed. The script will upgrade +the requested packages and will restart eric. +""" + +import contextlib +import subprocess +import sys +import time + + +_pyqtPackages = [ + "pyqt6", "pyqt6-sip", "pyqt6-webengine", "pyqt6-charts", + "pyqt6-qscintilla", "pyqt6-qt6", "pyqt6-webengine-qt6", + "pyqt6-charts-qt6" +] +_ericPackages = ["eric-ide"] + + +def doUpgrade(packages): + """ + Function to upgrade the given packages via pip. + + @param packages list of packages to be upgraded + @type list of str + @return flag indicating a successful installation + @rtype bool + """ + exitCode = subprocess.run( # secok + [sys.executable, "-m", "pip", "install", "--prefer-binary", + "--upgrade"] + packages + ).returncode + ok = (exitCode == 0) + + return ok + + +def startEric(args): + """ + Function to start eric with the given arguments. + + @param args list containing the start arguments + @type list of str + """ + args = [sys.executable] + args + subprocess.Popen(args) + + +def main(): + """ + Main entry point into the upgrader. + """ + try: + ddindex = sys.argv.index("--") + except ValueError: + # '--' was not found. Start eric with all parameters given. + ddindex = 1 + + ericStartArgs = sys.argv[ddindex + 1:] + if not ericStartArgs: + # create default start arguments + ericStartArgs = ["-m", "eric7", "--start-session"] + + upgraderArgs = sys.argv[1:ddindex] + + upgradeType = "" + upgradeDelay = 2 + + for arg in upgraderArgs: + if arg.startswith("--delay="): + with contextlib.suppress(ValueError): + upgradeDelay = int(arg.split("=")[1].strip()) + elif arg.startswith("--type="): + upgradeType = arg.split("=")[1].strip() + + # wait a few seconds to give eric the chance to fully shut down + time.sleep(upgradeDelay) + + # now perform the upgrade and start eric, if it was successful + if upgradeType == "pyqt": + ok = doUpgrade(_pyqtPackages) + elif upgradeType == "eric": + ok = doUpgrade(_ericPackages) + elif upgradeType == "ericpyqt": + ok = doUpgrade(_ericPackages + _pyqtPackages) + else: + ok = False + + if ok: + startEric(ericStartArgs) + sys.exit(0) + else: + sys.exit(1) + +if __name__ == "__main__": + main()
--- a/eric7/Utilities/__init__.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/Utilities/__init__.py Sat Apr 02 11:23:11 2022 +0200 @@ -1989,9 +1989,9 @@ sysPath = [] - getSysPath = os.path.join( - getConfig('ericDir'), "Utilities", "GetSysPath.py") - args = [getSysPath] + getSysPathSkript = os.path.join( + os.path.dirname(__file__), "GetSysPath.py") + args = [getSysPathSkript] proc = QProcess() proc.setProcessChannelMode(QProcess.ProcessChannelMode.MergedChannels) proc.start(interpreter, args)
--- a/eric7/VirtualEnv/VirtualenvAddEditDialog.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/VirtualEnv/VirtualenvAddEditDialog.py Sat Apr 02 11:23:11 2022 +0200 @@ -86,14 +86,19 @@ ) self.nameEdit.setText(venvName) - if venvName: + if venvDirectory: self.targetDirectoryPicker.setText(venvDirectory, toNative=not isRemote) else: self.targetDirectoryPicker.setText(self.__envBaseDir, toNative=not isRemote) - self.pythonExecPicker.setText(venvInterpreter, - toNative=not isRemote) + if not venvInterpreter and venvDirectory and not isRemote: + py = self.__detectPythonInterpreter(venvDirectory) + self.pythonExecPicker.setText(py) + else: + self.pythonExecPicker.setText(venvInterpreter, + toNative=not isRemote) + self.globalCheckBox.setChecked(isGlobal) self.anacondaCheckBox.setChecked(isConda) self.remoteCheckBox.setChecked(isRemote) @@ -136,6 +141,33 @@ self.buttonBox.button( QDialogButtonBox.StandardButton.Ok).setEnabled(enable) + def __detectPythonInterpreter(self, venvDirectory): + """ + Private method to search for a suitable Python interpreter inside an + environment. + + @param venvDirectory directory for the virtual environment + @type str + @return detected Python interpreter or empty string + @rtype str + """ + if venvDirectory: + # try to determine a Python interpreter name + if Utilities.isWindowsPlatform(): + candidates = ( + os.path.join(venvDirectory, "Scripts", "python.exe"), + os.path.join(venvDirectory, "python.exe"), + ) + else: + candidates = ( + os.path.join(venvDirectory, "bin", "python3"), + ) + for py in candidates: + if os.path.exists(py): + return py + + return "" + @pyqtSlot(str) def on_nameEdit_textChanged(self, txt): """ @@ -161,6 +193,9 @@ else: self.pythonExecPicker.setDefaultDirectory( sys.executable.replace("w.exe", ".exe")) + py = self.__detectPythonInterpreter(txt) + if py: + self.pythonExecPicker.setText(py) @pyqtSlot(str) def on_pythonExecPicker_textChanged(self, txt):
--- a/eric7/VirtualEnv/VirtualenvInterpreterSelectionDialog.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/VirtualEnv/VirtualenvInterpreterSelectionDialog.py Sat Apr 02 11:23:11 2022 +0200 @@ -19,6 +19,8 @@ Ui_VirtualenvInterpreterSelectionDialog ) +import Globals + class VirtualenvInterpreterSelectionDialog( QDialog, Ui_VirtualenvInterpreterSelectionDialog): @@ -45,7 +47,26 @@ self.tr("Python Interpreter")) self.nameEdit.setText(venvName) - self.pythonExecPicker.setText(venvDirectory) + + if venvDirectory: + # try to determine a Python interpreter name + if Globals.isWindowsPlatform(): + candidates = ( + os.path.join(venvDirectory, "Scripts", "python.exe"), + os.path.join(venvDirectory, "python.exe"), + ) + else: + candidates = ( + os.path.join(venvDirectory, "bin", "python3"), + ) + for py in candidates: + if os.path.exists(py): + self.pythonExecPicker.setText(py) + break + else: + self.pythonExecPicker.setText(venvDirectory) + else: + self.pythonExecPicker.setText(venvDirectory) def __updateOK(self): """
--- a/eric7/VirtualEnv/VirtualenvManager.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/VirtualEnv/VirtualenvManager.py Sat Apr 02 11:23:11 2022 +0200 @@ -156,14 +156,25 @@ ) else: - defaultPy = sys.executable.replace("w.exe", ".exe") - for venvName in self.__virtualEnvironments: - if (defaultPy == - self.__virtualEnvironments[venvName]["interpreter"]): - return ( - venvName, - copy.copy(self.__virtualEnvironments[venvName]) - ) + return self.environmentForInterpreter(sys.executable) + + def environmentForInterpreter(self, interpreter): + """ + Public method to get the environment a given interpreter belongs to. + + @param interpreter path of the interpreter + @type str + @return tuple containing the environment name and a dictionary + containing a copy of the default virtual environment + @rtype tuple of (str, dict) + """ + py = interpreter.replace("w.exe", ".exe") + for venvName in self.__virtualEnvironments: + if (py == self.__virtualEnvironments[venvName]["interpreter"]): + return ( + venvName, + copy.copy(self.__virtualEnvironments[venvName]) + ) return ("", {})
--- a/eric7/WebBrowser/WebBrowserPage.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/WebBrowser/WebBrowserPage.py Sat Apr 02 11:23:11 2022 +0200 @@ -72,12 +72,6 @@ @param parent reference to the parent widget (defaults to None) @type QWidget (optional) """ - """ - Constructor - - @param parent parent widget of this window (optional) - @type QWidget - """ super().__init__( WebBrowserWindow.webProfile(), parent)
--- a/eric7/WebBrowser/WebBrowserView.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/WebBrowser/WebBrowserView.py Sat Apr 02 11:23:11 2022 +0200 @@ -1978,8 +1978,13 @@ return self.__mw.newTab(addNextTo=self) elif windowType == QWebEnginePage.WebWindowType.WebBrowserWindow: return self.__mw.newWindow().currentBrowser() + elif ( + windowType == QWebEnginePage.WebWindowType.WebBrowserBackgroundTab + ): + return self.__mw.newTab(addNextTo=self, background=True) else: - return self.__mw.newTab(addNextTo=self, background=True) + # default for unknow/new window types + return self.__mw.newTab(addNextTo=self) def preferencesChanged(self): """
--- a/eric7/eric7.py Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/eric7.py Sat Apr 02 11:23:11 2022 +0200 @@ -232,7 +232,7 @@ mainWindow.processInstallInfoFile() mainWindow.checkProjectsWorkspace() mainWindow.checkConfigurationStatus() - mainWindow.performVersionCheck(False) + mainWindow.performVersionCheck() mainWindow.checkPluginUpdatesAvailable() mainWindow.autoConnectIrc()
--- a/eric7/i18n/eric7_cs.ts Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/i18n/eric7_cs.ts Sat Apr 02 11:23:11 2022 +0200 @@ -1511,6 +1511,26 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader Delay:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Enter the time the upgrader process should wait for eric to exit</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source> s</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> <source>Reporting</source> <translation>Zasílání zpráv</translation> </message> @@ -48555,7 +48575,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="473" /> + <location filename="../Preferences/__init__.py" line="471" /> <location filename="../QScintilla/Lexers/__init__.py" line="415" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished">Python soubory (*.py *.py3)</translation> @@ -48808,7 +48828,7 @@ <translation>Všechny soubory (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="475" /> + <location filename="../Preferences/__init__.py" line="473" /> <location filename="../QScintilla/Lexers/__init__.py" line="585" /> <source>Python3 Files (*.py)</source> <translation>Python3 soubory (*.py)</translation> @@ -54800,119 +54820,113 @@ <context> <name>Pip</name> <message> - <location filename="../PipInterface/Pip.py" line="109" /> + <location filename="../PipInterface/Pip.py" line="123" /> <source>python exited with an error ({0}).</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="116" /> + <location filename="../PipInterface/Pip.py" line="130" /> <source>python did not finish within 30 seconds.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="119" /> + <location filename="../PipInterface/Pip.py" line="133" /> <source>python could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="179" /> + <location filename="../PipInterface/Pip.py" line="193" /> <source><project></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="208" /> + <location filename="../PipInterface/Pip.py" line="222" /> <source>Interpreter for Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="209" /> + <location filename="../PipInterface/Pip.py" line="223" /> <source>No interpreter configured for the selected virtual environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="244" /> + <location filename="../PipInterface/Pip.py" line="258" /> <source>Install PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="286" /> + <location filename="../PipInterface/Pip.py" line="300" /> <source>Repair PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="359" /> - <location filename="../PipInterface/Pip.py" line="311" /> + <location filename="../PipInterface/Pip.py" line="383" /> <source>Upgrade Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="312" /> - <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/Pip.py" line="399" /> + <location filename="../PipInterface/Pip.py" line="423" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="428" /> + <location filename="../PipInterface/Pip.py" line="452" /> <source>Install Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="491" /> - <location filename="../PipInterface/Pip.py" line="460" /> - <location filename="../PipInterface/Pip.py" line="451" /> + <location filename="../PipInterface/Pip.py" line="515" /> + <location filename="../PipInterface/Pip.py" line="484" /> + <location filename="../PipInterface/Pip.py" line="475" /> <source>Uninstall Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="492" /> - <location filename="../PipInterface/Pip.py" line="452" /> + <location filename="../PipInterface/Pip.py" line="516" /> + <location filename="../PipInterface/Pip.py" line="476" /> <source>Do you really want to uninstall these packages?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="503" /> + <location filename="../PipInterface/Pip.py" line="527" /> <source>Uninstall Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="721" /> + <location filename="../PipInterface/Pip.py" line="844" /> <source>Cache Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="746" /> - <location filename="../PipInterface/Pip.py" line="738" /> + <location filename="../PipInterface/Pip.py" line="869" /> + <location filename="../PipInterface/Pip.py" line="861" /> <source>List Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="739" /> + <location filename="../PipInterface/Pip.py" line="862" /> <source>Enter a file pattern (empty for all):</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="770" /> - <location filename="../PipInterface/Pip.py" line="764" /> + <location filename="../PipInterface/Pip.py" line="893" /> + <location filename="../PipInterface/Pip.py" line="887" /> <source>Remove Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="765" /> + <location filename="../PipInterface/Pip.py" line="888" /> <source>Enter a file pattern:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="793" /> - <location filename="../PipInterface/Pip.py" line="788" /> + <location filename="../PipInterface/Pip.py" line="916" /> + <location filename="../PipInterface/Pip.py" line="911" /> <source>Purge Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="789" /> + <location filename="../PipInterface/Pip.py" line="912" /> <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source> <translation type="unfinished" /> </message> @@ -55039,18 +55053,18 @@ <location filename="../PipInterface/PipFreezeDialog.py" line="230" /> <location filename="../PipInterface/PipFreezeDialog.py" line="210" /> <location filename="../PipInterface/PipFreezeDialog.py" line="198" /> - <location filename="../PipInterface/PipFreezeDialog.py" line="118" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="122" /> <source>Generate Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="119" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="123" /> <source>The requirements were changed. Do you want to overwrite these changes?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="160" /> - <source>No output generated by 'pip freeze'.</source> + <location filename="../PipInterface/PipFreezeDialog.py" line="158" /> + <source>No package specifiers generated by 'pip freeze'.</source> <translation type="unfinished" /> </message> <message> @@ -55080,6 +55094,16 @@ </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>Select to show requirements for packages installed to the user-site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Requirements File:</source> <translation type="unfinished" /> </message> @@ -55140,6 +55164,65 @@ </message> </context> <context> + <name>PipLicensesDialog</name> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package Licenses</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Local packages only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Version</source> + <translation type="unfinished">Verze</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>License</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="61" /> + <source>Licenses of "{0}"</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="65" /> + <source>No environment specified.</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PipListDialog</name> <message> <source>Version</source> @@ -55415,11 +55498,17 @@ <name>PipPackagesWidget</name> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Toggle to show or hide the dependency tree view</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only locally-installed packages</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Local packages only</source> <translation type="unfinished" /> </message> @@ -55440,11 +55529,23 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>User-Site only</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Perform vulnerability checks based on "Safety DB".</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Vulnerability Check</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Package</source> @@ -55452,12 +55553,18 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Installed Version</source> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Installed</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Available Version</source> + <source>Available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Affected</source> <translation type="unfinished" /> </message> <message> @@ -55503,6 +55610,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Press to show details for the selected entry</source> <translation type="unfinished" /> </message> @@ -55513,11 +55621,6 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Press to start the search</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Enter the search term for the package name</source> <translation type="unfinished" /> </message> @@ -55528,6 +55631,16 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to start the search</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to search for more packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Version</source> <translation type="unfinished">Verze</translation> </message> @@ -55552,104 +55665,150 @@ <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="169" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>View Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package requires other packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Requires</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package is required by others</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required By</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to refresh the dependency tree</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="185" /> <source>pip Menu</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="195" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="230" /> <source>Name:</source> <translation type="unfinished">Jméno:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="196" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="231" /> <source>Version:</source> <translation type="unfinished">Verze:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="197" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="232" /> <source>Location:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="198" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="233" /> <source>Requires:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="199" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="234" /> <source>Summary:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="200" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="235" /> <source>Homepage:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="201" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="236" /> <source>Author:</source> <translation type="unfinished">Autor:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="202" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="237" /> <source>Author Email:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="203" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="238" /> <source>License:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="204" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="239" /> <source>Metadata Version:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="205" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="240" /> <source>Installer:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="206" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="241" /> <source>Classifiers:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="207" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="242" /> <source>Entry Points:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="208" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="243" /> <source>Files:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="375" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="427" /> <source>Getting installed packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="390" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="443" /> <source>Getting outdated packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="975" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="812" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="790" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1141" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="972" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="961" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="930" /> <source>Search PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="791" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="931" /> <source><p>Received an error while searching for <b>{0}</b>.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../PipInterface/PipPackagesWidget.py" line="805" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="946" /> <source>%n package(s) found.</source> <translation type="unfinished"> <numerusform /> @@ -55658,117 +55817,158 @@ </translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="807" /> - <source>Showing first 20 packages found.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="815" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="813" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="950" /> + <source>Showing first {0} packages found.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="966" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="962" /> <source><p>There were no results for <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="976" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="973" /> + <source><p>There were no more results for <b>{0}</b>.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1142" /> <source><p>No package details info for <b>{0}</b> available.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="990" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1156" /> <source>Install Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="993" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1159" /> <source>Install Pip to User-Site</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="996" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1162" /> <source>Repair Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1116" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1000" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1299" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1166" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1003" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1169" /> <source>Install Local Package</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1007" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1173" /> <source>Install Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1010" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1176" /> <source>Re-Install Selected Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1013" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1179" /> <source>Uninstall Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1016" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1182" /> <source>Generate Requirements...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1020" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1186" /> + <source>Show Licenses...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1190" /> + <source>Check Vulnerabilities</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1194" /> + <source>Update Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1198" /> <source>Show Cache Info...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1023" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1201" /> <source>Show Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1026" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1204" /> <source>Remove Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1029" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1207" /> <source>Purge Cache...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1034" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1212" /> <source>Edit User Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1037" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1215" /> <source>Edit Environment Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1042" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1220" /> <source>Configure...</source> <translation type="unfinished">Konfigurovat...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1237" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1224" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1213" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1421" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1408" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1397" /> <source>Edit Configuration</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1238" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1225" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1214" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1422" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1409" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1398" /> <source>No valid configuration path determined. Aborting</source> <translation type="unfinished" /> </message> <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1576" /> + <source>{0} {1}</source> + <comment>package name, package version</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1598" /> + <source>Affected Version:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1601" /> + <source>Advisory:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1716" /> + <source>any</source> + <translation type="unfinished" /> + </message> + <message> <source>Error: {0}</source> <translation type="vanished">Chyby: {0}</translation> </message> @@ -55781,6 +55981,11 @@ <translation type="unfinished" /> </message> <message> + <location filename="../Preferences/ConfigurationPages/PipPage.py" line="34" /> + <source><b>Note:</b> Leave empty to use the default Safety DB URL ({0}).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source><b>Configure pip</b></source> <translation type="unfinished" /> @@ -55797,6 +56002,36 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Vulnerability Checks</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Safety DB URL:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the base URL for the Safety DB mirror to be used</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Cache Validity:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source> hours</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source>Environment</source> <translation type="unfinished" /> </message> @@ -55823,6 +56058,19 @@ </message> </context> <context> + <name>PipVulnerabilityChecker</name> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="219" /> + <source>Fetching Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="220" /> + <source><p>The vulnerability database <b>{0}</b> could not be loaded from <b>{1}</b>.</p><p>The vulnerability check is not available.</p></source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PixmapDiagram</name> <message> <location filename="../Graphics/PixmapDiagram.py" line="164" /> @@ -56232,32 +56480,32 @@ <translation>Modulu chybí atributy 'pluginType' a/nebo 'pluginTypename'.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="445" /> + <location filename="../PluginManager/PluginManager.py" line="449" /> <source>Module failed to load. Error: {0}</source> <translation>Modul se nepodařilo načíst. Chyba: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="622" /> + <location filename="../PluginManager/PluginManager.py" line="626" /> <source>Incompatible plugin activation method.</source> <translation>Nekompatibilní metoda aktivace pluginu.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1204" /> + <location filename="../PluginManager/PluginManager.py" line="1208" /> <source>Plugin Manager Error</source> <translation>Chyba plugin manažeru</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1205" /> + <location filename="../PluginManager/PluginManager.py" line="1209" /> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>Download plugin adresář <b>{0}</b> se nepodařilo vytvořit. Prosím, upravte nastavení přes konfigurační dialog.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1271" /> + <location filename="../PluginManager/PluginManager.py" line="1275" /> <source>Error downloading file</source> <translation type="unfinished">Chyba při stahování souboru</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1272" /> + <location filename="../PluginManager/PluginManager.py" line="1276" /> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation type="unfinished"><p>Nelze stáhnout požadovaný soubor z {0}.</p><p>Chyba: {1}</p></translation> </message> @@ -56414,6 +56662,21 @@ <source>Edit URL</source> <translation type="unfinished" /> </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Startup Behavior</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Select, to check for missing plugin dependencies at startup and install them</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Automatic dependencies installation</source> + <translation type="unfinished" /> + </message> </context> <context> <name>PluginRepositoryDialog</name> @@ -57090,18 +57353,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1654" /> + <location filename="../Preferences/__init__.py" line="1658" /> <source>Export Preferences</source> <translation>Předvolby exportu</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1682" /> - <location filename="../Preferences/__init__.py" line="1656" /> + <location filename="../Preferences/__init__.py" line="1686" /> + <location filename="../Preferences/__init__.py" line="1660" /> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> + <location filename="../Preferences/__init__.py" line="1684" /> <source>Import Preferences</source> <translation>Předvolby importu</translation> </message> @@ -83197,7 +83460,17 @@ <translation type="unfinished"><h3>Čísla verzí</h3><table></translation> </message> <message> - <location filename="../Tools/TrayStarter.py" line="582" /> + <location filename="../Tools/TrayStarter.py" line="600" /> + <source>Desktop</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="603" /> + <source>Session Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="605" /> <source></table></source> <translation type="unfinished"></table></translation> </message> @@ -84796,2635 +85069,2589 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="256" /> + <location filename="../UI/UserInterface.py" line="253" /> <source>Initializing Basic Services...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="297" /> + <location filename="../UI/UserInterface.py" line="294" /> <source>Initializing Plugin Manager...</source> <translation>Inicializace Plugin manažera...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="304" /> + <location filename="../UI/UserInterface.py" line="301" /> <source>Generating Main User Interface...</source> <translation>Generování hlavního uživatelského rozhraní...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="346" /> + <location filename="../UI/UserInterface.py" line="343" /> <source>Setting up connections...</source> <translation>Nastavení připojení...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="593" /> + <location filename="../UI/UserInterface.py" line="590" /> <source>Initializing Tools...</source> <translation>Inicializace nástrojů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="603" /> + <location filename="../UI/UserInterface.py" line="600" /> <source>Registering Objects...</source> <translation>Registrování objektů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="644" /> + <location filename="../UI/UserInterface.py" line="636" /> <source>Initializing Actions...</source> <translation>Inicializace akcí...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="646" /> + <location filename="../UI/UserInterface.py" line="638" /> <source>Initializing Menus...</source> <translation>Inicializace menu...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="648" /> + <location filename="../UI/UserInterface.py" line="640" /> <source>Initializing Toolbars...</source> <translation>Inicializace nástrojových lišt...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="650" /> + <location filename="../UI/UserInterface.py" line="642" /> <source>Initializing Statusbar...</source> <translation>Inicializace statusbaru...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="678" /> + <location filename="../UI/UserInterface.py" line="670" /> <source>Initializing Single Application Server...</source> <translation>Inicializace jednouživatelského aplikačního serveru...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="676" /> + <source>Initializing Plugins...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="679" /> + <source>Activating Plugins...</source> + <translation>Aktivace pluginů...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="681" /> + <source>Generating Plugins Toolbars...</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="684" /> - <source>Initializing Plugins...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="687" /> - <source>Activating Plugins...</source> - <translation>Aktivace pluginů...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="689" /> - <source>Generating Plugins Toolbars...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="692" /> <source>Cleaning Plugins Download Area...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="703" /> + <location filename="../UI/UserInterface.py" line="695" /> <source>Restoring Toolbarmanager...</source> <translation>Obnovit manažer nástrojových lišt...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="712" /> + <location filename="../UI/UserInterface.py" line="704" /> <source>Setting View Profile...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="725" /> + <location filename="../UI/UserInterface.py" line="717" /> <source>Reading Tasks...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="730" /> + <location filename="../UI/UserInterface.py" line="722" /> <source>Reading Templates...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="735" /> + <location filename="../UI/UserInterface.py" line="727" /> <source>Starting Debugger...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2041" /> + <location filename="../UI/UserInterface.py" line="2033" /> + <location filename="../UI/UserInterface.py" line="1057" /> + <source>Left Toolbox</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2064" /> <location filename="../UI/UserInterface.py" line="1065" /> - <source>Left Toolbox</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2072" /> - <location filename="../UI/UserInterface.py" line="1073" /> <source>Horizontal Toolbox</source> <translation>Vodorovná nástrojová lišta</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2056" /> - <location filename="../UI/UserInterface.py" line="1081" /> + <location filename="../UI/UserInterface.py" line="2048" /> + <location filename="../UI/UserInterface.py" line="1073" /> <source>Right Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1915" /> - <location filename="../UI/UserInterface.py" line="1237" /> - <location filename="../UI/UserInterface.py" line="1089" /> + <location filename="../UI/UserInterface.py" line="1907" /> + <location filename="../UI/UserInterface.py" line="1229" /> + <location filename="../UI/UserInterface.py" line="1081" /> <source>Multiproject-Viewer</source> <translation>Prohlížeč multiprojektu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1898" /> - <location filename="../UI/UserInterface.py" line="1242" /> - <location filename="../UI/UserInterface.py" line="1093" /> + <location filename="../UI/UserInterface.py" line="1890" /> + <location filename="../UI/UserInterface.py" line="1234" /> + <location filename="../UI/UserInterface.py" line="1085" /> <source>Project-Viewer</source> <translation>Prohlížeč projektu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2326" /> - <location filename="../UI/UserInterface.py" line="2325" /> - <location filename="../UI/UserInterface.py" line="1247" /> - <location filename="../UI/UserInterface.py" line="1097" /> + <location filename="../UI/UserInterface.py" line="2318" /> + <location filename="../UI/UserInterface.py" line="2317" /> + <location filename="../UI/UserInterface.py" line="1239" /> + <location filename="../UI/UserInterface.py" line="1089" /> <source>Find/Replace In Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2344" /> - <location filename="../UI/UserInterface.py" line="2343" /> - <location filename="../UI/UserInterface.py" line="1252" /> - <location filename="../UI/UserInterface.py" line="1101" /> + <location filename="../UI/UserInterface.py" line="2336" /> + <location filename="../UI/UserInterface.py" line="2335" /> + <location filename="../UI/UserInterface.py" line="1244" /> + <location filename="../UI/UserInterface.py" line="1093" /> <source>Find File</source> <translation type="unfinished">Hledat soubor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1257" /> - <location filename="../UI/UserInterface.py" line="1105" /> + <location filename="../UI/UserInterface.py" line="1249" /> + <location filename="../UI/UserInterface.py" line="1097" /> <source>VCS Status</source> <translation type="unfinished">VCS Status</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2022" /> - <location filename="../UI/UserInterface.py" line="1263" /> - <location filename="../UI/UserInterface.py" line="1110" /> + <location filename="../UI/UserInterface.py" line="2014" /> + <location filename="../UI/UserInterface.py" line="1255" /> + <location filename="../UI/UserInterface.py" line="1102" /> <source>Template-Viewer</source> <translation>Prohlížeč šablon</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1968" /> - <location filename="../UI/UserInterface.py" line="1269" /> - <location filename="../UI/UserInterface.py" line="1115" /> + <location filename="../UI/UserInterface.py" line="1960" /> + <location filename="../UI/UserInterface.py" line="1261" /> + <location filename="../UI/UserInterface.py" line="1107" /> <source>File-Browser</source> <translation>Browser souborů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1275" /> - <location filename="../UI/UserInterface.py" line="1120" /> + <location filename="../UI/UserInterface.py" line="1267" /> + <location filename="../UI/UserInterface.py" line="1112" /> <source>Symbols</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1933" /> - <location filename="../UI/UserInterface.py" line="1295" /> - <location filename="../UI/UserInterface.py" line="1290" /> - <location filename="../UI/UserInterface.py" line="1128" /> + <location filename="../UI/UserInterface.py" line="1925" /> + <location filename="../UI/UserInterface.py" line="1287" /> + <location filename="../UI/UserInterface.py" line="1282" /> + <location filename="../UI/UserInterface.py" line="1120" /> <source>Debug-Viewer</source> <translation>Prohlížeč debugeru</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2215" /> - <location filename="../UI/UserInterface.py" line="2214" /> - <location filename="../UI/UserInterface.py" line="1301" /> - <location filename="../UI/UserInterface.py" line="1133" /> + <location filename="../UI/UserInterface.py" line="2207" /> + <location filename="../UI/UserInterface.py" line="2206" /> + <location filename="../UI/UserInterface.py" line="1293" /> + <location filename="../UI/UserInterface.py" line="1125" /> <source>Code Documentation Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2380" /> - <location filename="../UI/UserInterface.py" line="2379" /> - <location filename="../UI/UserInterface.py" line="1307" /> - <location filename="../UI/UserInterface.py" line="1138" /> + <location filename="../UI/UserInterface.py" line="2372" /> + <location filename="../UI/UserInterface.py" line="2371" /> + <location filename="../UI/UserInterface.py" line="1299" /> + <location filename="../UI/UserInterface.py" line="1130" /> <source>Help Viewer</source> <translation type="unfinished">Prohlížeč nápovědy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3103" /> - <location filename="../UI/UserInterface.py" line="2289" /> - <location filename="../UI/UserInterface.py" line="2288" /> - <location filename="../UI/UserInterface.py" line="1312" /> - <location filename="../UI/UserInterface.py" line="1142" /> + <location filename="../UI/UserInterface.py" line="3069" /> + <location filename="../UI/UserInterface.py" line="2281" /> + <location filename="../UI/UserInterface.py" line="2280" /> + <location filename="../UI/UserInterface.py" line="1304" /> + <location filename="../UI/UserInterface.py" line="1134" /> <source>Plugin Repository</source> <translation>Repozitář pluginů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2307" /> - <location filename="../UI/UserInterface.py" line="2306" /> - <location filename="../UI/UserInterface.py" line="1317" /> - <location filename="../UI/UserInterface.py" line="1146" /> + <location filename="../UI/UserInterface.py" line="2299" /> + <location filename="../UI/UserInterface.py" line="2298" /> + <location filename="../UI/UserInterface.py" line="1309" /> + <location filename="../UI/UserInterface.py" line="1138" /> <source>Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2235" /> - <location filename="../UI/UserInterface.py" line="2234" /> - <location filename="../UI/UserInterface.py" line="1322" /> - <location filename="../UI/UserInterface.py" line="1151" /> + <location filename="../UI/UserInterface.py" line="2227" /> + <location filename="../UI/UserInterface.py" line="2226" /> + <location filename="../UI/UserInterface.py" line="1314" /> + <location filename="../UI/UserInterface.py" line="1143" /> <source>PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2253" /> - <location filename="../UI/UserInterface.py" line="2252" /> - <location filename="../UI/UserInterface.py" line="1327" /> - <location filename="../UI/UserInterface.py" line="1156" /> + <location filename="../UI/UserInterface.py" line="2245" /> + <location filename="../UI/UserInterface.py" line="2244" /> + <location filename="../UI/UserInterface.py" line="1319" /> + <location filename="../UI/UserInterface.py" line="1148" /> <source>Conda</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1332" /> - <location filename="../UI/UserInterface.py" line="1161" /> + <location filename="../UI/UserInterface.py" line="1324" /> + <location filename="../UI/UserInterface.py" line="1153" /> <source>Cooperation</source> <translation>Spolupráce</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2158" /> - <location filename="../UI/UserInterface.py" line="1337" /> - <location filename="../UI/UserInterface.py" line="1166" /> + <location filename="../UI/UserInterface.py" line="2150" /> + <location filename="../UI/UserInterface.py" line="1329" /> + <location filename="../UI/UserInterface.py" line="1158" /> <source>IRC</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2271" /> - <location filename="../UI/UserInterface.py" line="2270" /> + <location filename="../UI/UserInterface.py" line="2263" /> + <location filename="../UI/UserInterface.py" line="2262" /> + <location filename="../UI/UserInterface.py" line="1335" /> + <location filename="../UI/UserInterface.py" line="1163" /> + <source>MicroPython</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1943" /> <location filename="../UI/UserInterface.py" line="1343" /> <location filename="../UI/UserInterface.py" line="1171" /> - <source>MicroPython</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1951" /> + <source>Shell</source> + <translation /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1995" /> + <location filename="../UI/UserInterface.py" line="1347" /> + <location filename="../UI/UserInterface.py" line="1175" /> + <source>Task-Viewer</source> + <translation>Prohlížeč úloh</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1977" /> <location filename="../UI/UserInterface.py" line="1351" /> <location filename="../UI/UserInterface.py" line="1179" /> - <source>Shell</source> - <translation /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2003" /> - <location filename="../UI/UserInterface.py" line="1355" /> - <location filename="../UI/UserInterface.py" line="1183" /> - <source>Task-Viewer</source> - <translation>Prohlížeč úloh</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1985" /> - <location filename="../UI/UserInterface.py" line="1359" /> - <location filename="../UI/UserInterface.py" line="1187" /> <source>Log-Viewer</source> <translation>Prohlížeč logu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1364" /> - <location filename="../UI/UserInterface.py" line="1192" /> + <location filename="../UI/UserInterface.py" line="1356" /> + <location filename="../UI/UserInterface.py" line="1184" /> <source>Numbers</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1752" /> + <location filename="../UI/UserInterface.py" line="1744" /> <source>{0} - Passive Mode</source> <translation>{0} - Pasivní mód</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1759" /> - <location filename="../UI/UserInterface.py" line="1755" /> + <location filename="../UI/UserInterface.py" line="1751" /> + <location filename="../UI/UserInterface.py" line="1747" /> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - pasivní mód</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1763" /> + <location filename="../UI/UserInterface.py" line="1755" /> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - pasivní mód</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1786" /> + <location filename="../UI/UserInterface.py" line="1778" /> <source>Quit</source> <translation>Konec</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1788" /> + <location filename="../UI/UserInterface.py" line="1780" /> <source>&Quit</source> <translation>&Konec</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1789" /> + <location filename="../UI/UserInterface.py" line="1781" /> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1791" /> + <location filename="../UI/UserInterface.py" line="1783" /> <source>Quit the IDE</source> <translation>Ukončit IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1792" /> + <location filename="../UI/UserInterface.py" line="1784" /> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Ukončit IDE</b><p>Ukončí se IDE. Nejdříve by se měly uložit neuložené změny. Python programy běžící v debug procesu budou ukončeny a nastavení budou uložena.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1805" /> - <location filename="../UI/UserInterface.py" line="1803" /> + <location filename="../UI/UserInterface.py" line="1797" /> + <location filename="../UI/UserInterface.py" line="1795" /> <source>Restart</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1806" /> + <location filename="../UI/UserInterface.py" line="1798" /> <source>Ctrl+Shift+Q</source> <comment>File|Quit</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1808" /> + <location filename="../UI/UserInterface.py" line="1800" /> <source>Restart the IDE</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1809" /> + <location filename="../UI/UserInterface.py" line="1801" /> <source><b>Restart the IDE</b><p>This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1822" /> - <location filename="../UI/UserInterface.py" line="1819" /> + <location filename="../UI/UserInterface.py" line="1814" /> + <location filename="../UI/UserInterface.py" line="1811" /> <source>Save session</source> <translation>Uložit relaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1820" /> + <location filename="../UI/UserInterface.py" line="1812" /> <source>Save session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1823" /> + <location filename="../UI/UserInterface.py" line="1815" /> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7022" /> - <location filename="../UI/UserInterface.py" line="1835" /> - <location filename="../UI/UserInterface.py" line="1832" /> + <location filename="../UI/UserInterface.py" line="7080" /> + <location filename="../UI/UserInterface.py" line="1827" /> + <location filename="../UI/UserInterface.py" line="1824" /> <source>Load session</source> <translation type="unfinished">Načíst relaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1833" /> + <location filename="../UI/UserInterface.py" line="1825" /> <source>Load session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1836" /> + <location filename="../UI/UserInterface.py" line="1828" /> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1845" /> + <location filename="../UI/UserInterface.py" line="1837" /> <source>New Window</source> <translation type="unfinished">Nové okno</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1847" /> + <location filename="../UI/UserInterface.py" line="1839" /> <source>New &Window</source> <translation type="unfinished">&Nové okno</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848" /> + <location filename="../UI/UserInterface.py" line="1840" /> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1850" /> + <location filename="../UI/UserInterface.py" line="1842" /> <source>Open a new eric instance</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1852" /> + <location filename="../UI/UserInterface.py" line="1844" /> <source><b>New Window</b><p>This opens a new instance of the eric IDE.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1866" /> - <location filename="../UI/UserInterface.py" line="1864" /> + <location filename="../UI/UserInterface.py" line="1858" /> + <location filename="../UI/UserInterface.py" line="1856" /> <source>Edit Profile</source> <translation>Editační profil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1869" /> + <location filename="../UI/UserInterface.py" line="1861" /> <source>Activate the edit view profile</source> <translation>Aktivovat profil editace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871" /> + <location filename="../UI/UserInterface.py" line="1863" /> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Editační profil</b><p>Aktivování skupiny 'Editační profil'. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu 'Konfigurace profilu pohledů'.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1883" /> - <location filename="../UI/UserInterface.py" line="1881" /> + <location filename="../UI/UserInterface.py" line="1875" /> + <location filename="../UI/UserInterface.py" line="1873" /> <source>Debug Profile</source> <translation>Debugovací profil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1887" /> + <location filename="../UI/UserInterface.py" line="1879" /> <source>Activate the debug view profile</source> <translation>Aktivovat debugovací profil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1888" /> + <location filename="../UI/UserInterface.py" line="1880" /> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Debugovací profil</b><p>Aktivování skupiny 'Debugovací profil'. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu 'Konfigurace profilu pohledů'.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899" /> + <location filename="../UI/UserInterface.py" line="1891" /> <source>&Project-Viewer</source> <translation>Prohlížeč &projektu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1900" /> + <location filename="../UI/UserInterface.py" line="1892" /> <source>Alt+Shift+P</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1903" /> + <location filename="../UI/UserInterface.py" line="1895" /> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1905" /> + <location filename="../UI/UserInterface.py" line="1897" /> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1916" /> + <location filename="../UI/UserInterface.py" line="1908" /> <source>&Multiproject-Viewer</source> <translation>Prohlížeč &multiprojektu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1917" /> + <location filename="../UI/UserInterface.py" line="1909" /> <source>Alt+Shift+M</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1920" /> + <location filename="../UI/UserInterface.py" line="1912" /> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1922" /> + <location filename="../UI/UserInterface.py" line="1914" /> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1934" /> + <location filename="../UI/UserInterface.py" line="1926" /> <source>&Debug-Viewer</source> <translation>Prohlížeč &debugeru</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935" /> + <location filename="../UI/UserInterface.py" line="1927" /> <source>Alt+Shift+D</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1938" /> + <location filename="../UI/UserInterface.py" line="1930" /> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1940" /> + <location filename="../UI/UserInterface.py" line="1932" /> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1952" /> + <location filename="../UI/UserInterface.py" line="1944" /> <source>&Shell</source> <translation>&Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1953" /> + <location filename="../UI/UserInterface.py" line="1945" /> <source>Alt+Shift+S</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1956" /> + <location filename="../UI/UserInterface.py" line="1948" /> <source>Switch the input focus to the Shell window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1958" /> + <location filename="../UI/UserInterface.py" line="1950" /> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1969" /> + <location filename="../UI/UserInterface.py" line="1961" /> <source>&File-Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1970" /> + <location filename="../UI/UserInterface.py" line="1962" /> <source>Alt+Shift+F</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1973" /> + <location filename="../UI/UserInterface.py" line="1965" /> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1975" /> + <location filename="../UI/UserInterface.py" line="1967" /> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1986" /> + <location filename="../UI/UserInterface.py" line="1978" /> <source>Lo&g-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1987" /> + <location filename="../UI/UserInterface.py" line="1979" /> <source>Alt+Shift+G</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1990" /> + <location filename="../UI/UserInterface.py" line="1982" /> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1992" /> + <location filename="../UI/UserInterface.py" line="1984" /> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2004" /> + <location filename="../UI/UserInterface.py" line="1996" /> <source>&Task-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2005" /> + <location filename="../UI/UserInterface.py" line="1997" /> <source>Alt+Shift+T</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2008" /> + <location filename="../UI/UserInterface.py" line="2000" /> <source>Switch the input focus to the Task-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2010" /> + <location filename="../UI/UserInterface.py" line="2002" /> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2023" /> + <location filename="../UI/UserInterface.py" line="2015" /> <source>Templ&ate-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2024" /> + <location filename="../UI/UserInterface.py" line="2016" /> <source>Alt+Shift+A</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2027" /> + <location filename="../UI/UserInterface.py" line="2019" /> <source>Switch the input focus to the Template-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2029" /> + <location filename="../UI/UserInterface.py" line="2021" /> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2042" /> + <location filename="../UI/UserInterface.py" line="2034" /> <source>&Left Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2043" /> + <location filename="../UI/UserInterface.py" line="2035" /> <source>Toggle the Left Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2044" /> + <location filename="../UI/UserInterface.py" line="2036" /> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2057" /> + <location filename="../UI/UserInterface.py" line="2049" /> <source>&Right Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2059" /> + <location filename="../UI/UserInterface.py" line="2051" /> <source>Toggle the Right Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2060" /> + <location filename="../UI/UserInterface.py" line="2052" /> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2073" /> + <location filename="../UI/UserInterface.py" line="2065" /> <source>&Horizontal Toolbox</source> <translation>&Horizontální lista nástrojů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2075" /> + <location filename="../UI/UserInterface.py" line="2067" /> <source>Toggle the Horizontal Toolbox window</source> <translation>Přepnout na vodorovnou lištu nástrojů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2077" /> + <location filename="../UI/UserInterface.py" line="2069" /> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Přepnout vodorovnou nástrojovou lištu</b><p>Pokud je vodorovná nástrojová lišta skryta, tak se zobrazí. Je-li zobrazena, skryje se.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2089" /> + <location filename="../UI/UserInterface.py" line="2081" /> <source>Left Sidebar</source> <translation>Levé menu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2090" /> + <location filename="../UI/UserInterface.py" line="2082" /> <source>&Left Sidebar</source> <translation>&Levé menu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2092" /> + <location filename="../UI/UserInterface.py" line="2084" /> <source>Toggle the left sidebar window</source> <translation>Přepnout okno levého menu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2093" /> + <location filename="../UI/UserInterface.py" line="2085" /> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Přepnout okno levého menu</b><p>Je-li okno levého menu skryto, tak se zobrazí. Je-li zobrazeno, skryje se.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2105" /> + <location filename="../UI/UserInterface.py" line="2097" /> <source>Right Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2106" /> + <location filename="../UI/UserInterface.py" line="2098" /> <source>&Right Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2108" /> + <location filename="../UI/UserInterface.py" line="2100" /> <source>Toggle the right sidebar window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2110" /> + <location filename="../UI/UserInterface.py" line="2102" /> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2122" /> + <location filename="../UI/UserInterface.py" line="2114" /> <source>Bottom Sidebar</source> <translation>Dolní menu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2123" /> + <location filename="../UI/UserInterface.py" line="2115" /> <source>&Bottom Sidebar</source> <translation>&Dolní menu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2125" /> + <location filename="../UI/UserInterface.py" line="2117" /> <source>Toggle the bottom sidebar window</source> <translation>Přepnout okno dolního menu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2127" /> + <location filename="../UI/UserInterface.py" line="2119" /> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Přepnout okno dolního menu</b><p>Je-li okno dolního menu skryto, tak se zobrazí. Je-li zobrazeno, skryje se.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139" /> + <location filename="../UI/UserInterface.py" line="2131" /> <source>Cooperation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2140" /> + <location filename="../UI/UserInterface.py" line="2132" /> <source>Co&operation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2141" /> + <location filename="../UI/UserInterface.py" line="2133" /> <source>Alt+Shift+O</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2144" /> + <location filename="../UI/UserInterface.py" line="2136" /> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2146" /> + <location filename="../UI/UserInterface.py" line="2138" /> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2159" /> + <location filename="../UI/UserInterface.py" line="2151" /> <source>&IRC</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2160" /> + <location filename="../UI/UserInterface.py" line="2152" /> <source>Ctrl+Alt+Shift+I</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2163" /> + <location filename="../UI/UserInterface.py" line="2155" /> <source>Switch the input focus to the IRC window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2165" /> + <location filename="../UI/UserInterface.py" line="2157" /> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2176" /> + <location filename="../UI/UserInterface.py" line="2168" /> <source>Symbols-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2177" /> + <location filename="../UI/UserInterface.py" line="2169" /> <source>S&ymbols-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2178" /> + <location filename="../UI/UserInterface.py" line="2170" /> <source>Alt+Shift+Y</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2181" /> + <location filename="../UI/UserInterface.py" line="2173" /> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2183" /> + <location filename="../UI/UserInterface.py" line="2175" /> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2195" /> + <location filename="../UI/UserInterface.py" line="2187" /> <source>Numbers-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2196" /> + <location filename="../UI/UserInterface.py" line="2188" /> <source>Num&bers-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2197" /> + <location filename="../UI/UserInterface.py" line="2189" /> <source>Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2200" /> + <location filename="../UI/UserInterface.py" line="2192" /> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2202" /> + <location filename="../UI/UserInterface.py" line="2194" /> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2216" /> + <location filename="../UI/UserInterface.py" line="2208" /> <source>Ctrl+Alt+Shift+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2219" /> + <location filename="../UI/UserInterface.py" line="2211" /> <source>Switch the input focus to the Code Documentation Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2222" /> + <location filename="../UI/UserInterface.py" line="2214" /> <source><b>Code Documentation Viewer</b><p>This switches the input focus to the Code Documentation Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2236" /> + <location filename="../UI/UserInterface.py" line="2228" /> <source>Ctrl+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2239" /> + <location filename="../UI/UserInterface.py" line="2231" /> <source>Switch the input focus to the PyPI window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2241" /> + <location filename="../UI/UserInterface.py" line="2233" /> <source><b>PyPI</b><p>This switches the input focus to the PyPI window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2254" /> + <location filename="../UI/UserInterface.py" line="2246" /> <source>Ctrl+Alt+Shift+C</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2257" /> + <location filename="../UI/UserInterface.py" line="2249" /> <source>Switch the input focus to the Conda window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2259" /> + <location filename="../UI/UserInterface.py" line="2251" /> <source><b>Conda</b><p>This switches the input focus to the Conda window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2272" /> + <location filename="../UI/UserInterface.py" line="2264" /> <source>Ctrl+Alt+Shift+M</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2275" /> + <location filename="../UI/UserInterface.py" line="2267" /> <source>Switch the input focus to the MicroPython window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2277" /> + <location filename="../UI/UserInterface.py" line="2269" /> <source><b>MicroPython</b><p>This switches the input focus to the MicroPython window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2290" /> + <location filename="../UI/UserInterface.py" line="2282" /> <source>Ctrl+Alt+Shift+R</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2293" /> + <location filename="../UI/UserInterface.py" line="2285" /> <source>Switch the input focus to the Plugin Repository window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2295" /> + <location filename="../UI/UserInterface.py" line="2287" /> <source><b>Plugin Repository</b><p>This switches the input focus to the Plugin Repository window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2308" /> + <location filename="../UI/UserInterface.py" line="2300" /> <source>Ctrl+Alt+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2311" /> + <location filename="../UI/UserInterface.py" line="2303" /> <source>Switch the input focus to the Virtual Environments Manager window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2314" /> + <location filename="../UI/UserInterface.py" line="2306" /> <source><b>Virtual Environments</b><p>This switches the input focus to the Virtual Environments Manager window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2327" /> + <location filename="../UI/UserInterface.py" line="2319" /> <source>Ctrl+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2330" /> + <location filename="../UI/UserInterface.py" line="2322" /> <source>Switch the input focus to the Find/Replace In Files window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2332" /> + <location filename="../UI/UserInterface.py" line="2324" /> <source><b>Find/Replace In Files</b><p>This switches the input focus to the Find/Replace In Files window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2345" /> + <location filename="../UI/UserInterface.py" line="2337" /> <source>Ctrl+Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2348" /> + <location filename="../UI/UserInterface.py" line="2340" /> <source>Switch the input focus to the Find File window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2350" /> + <location filename="../UI/UserInterface.py" line="2342" /> <source><b>Find File</b><p>This switches the input focus to the Find File window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2362" /> - <location filename="../UI/UserInterface.py" line="2361" /> + <location filename="../UI/UserInterface.py" line="2354" /> + <location filename="../UI/UserInterface.py" line="2353" /> <source>VCS Status List</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2363" /> + <location filename="../UI/UserInterface.py" line="2355" /> <source>Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2366" /> + <location filename="../UI/UserInterface.py" line="2358" /> <source>Switch the input focus to the VCS Status List window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2368" /> + <location filename="../UI/UserInterface.py" line="2360" /> <source><b>VCS Status List</b><p>This switches the input focus to the VCS Status List window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2381" /> + <location filename="../UI/UserInterface.py" line="2373" /> <source>Alt+Shift+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2384" /> + <location filename="../UI/UserInterface.py" line="2376" /> <source>Switch the input focus to the embedded Help Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2386" /> + <location filename="../UI/UserInterface.py" line="2378" /> <source><b>Help Viewer</b><p>This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2399" /> + <location filename="../UI/UserInterface.py" line="2391" /> <source>What's This?</source> <translation>Co je to?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2401" /> + <location filename="../UI/UserInterface.py" line="2393" /> <source>&What's This?</source> <translation>&Co je to?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2402" /> + <location filename="../UI/UserInterface.py" line="2394" /> <source>Shift+F1</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2404" /> + <location filename="../UI/UserInterface.py" line="2396" /> <source>Context sensitive help</source> <translation>Kontextově senzitivní nápověda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2405" /> + <location filename="../UI/UserInterface.py" line="2397" /> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zobrazit kontextově senzitivní nápovědu</b><p>V režimu "Co je to?" se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2417" /> + <location filename="../UI/UserInterface.py" line="2409" /> <source>Helpviewer</source> <translation>Prohlížeč nápovědy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419" /> + <location filename="../UI/UserInterface.py" line="2411" /> <source>&Helpviewer...</source> <translation>Pro&hlížeč nápovědy...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2420" /> + <location filename="../UI/UserInterface.py" line="2412" /> <source>F1</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2422" /> + <location filename="../UI/UserInterface.py" line="2414" /> <source>Open the helpviewer window</source> <translation>Otevřít okno prohlížeče nápovědy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2424" /> + <location filename="../UI/UserInterface.py" line="2416" /> <source><b>Helpviewer</b><p>Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2443" /> + <location filename="../UI/UserInterface.py" line="2435" /> <source>Show Versions</source> <translation>Zobrazit verze</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2444" /> + <location filename="../UI/UserInterface.py" line="2436" /> <source>Show &Versions</source> <translation>Zobrazit &verze</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446" /> + <location filename="../UI/UserInterface.py" line="2438" /> <source>Display version information</source> <translation>Zobrazit informace o verzích</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2448" /> + <location filename="../UI/UserInterface.py" line="2440" /> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Zobrazit verze</b><p>Zobrazí informace o verzích.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2458" /> - <location filename="../UI/UserInterface.py" line="2456" /> - <source>Check for Updates</source> - <translation>Zjistit aktualizace</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2457" /> - <source>Check for &Updates...</source> - <translation>Zjistit akt&ualizace...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2459" /> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2467" /> - <source>Show downloadable versions</source> - <translation>Zobrazit verze ke stažení</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2468" /> - <source>Show &downloadable versions...</source> - <translation>Zobrazit verze pro &download...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2471" /> - <source>Show the versions available for download</source> - <translation>Zobrazit dostupné verze ke stažení</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2472" /> - <source><b>Show downloadable versions...</b><p>Shows the eric versions available for download from the internet.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2485" /> - <location filename="../UI/UserInterface.py" line="2482" /> + <location filename="../UI/UserInterface.py" line="2451" /> + <location filename="../UI/UserInterface.py" line="2448" /> <source>Show Error Log</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2483" /> + <location filename="../UI/UserInterface.py" line="2449" /> <source>Show Error &Log...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2452" /> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2460" /> + <source>Show Install Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2461" /> + <source>Show Install &Info...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2463" /> + <source>Show Installation Information</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2465" /> + <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4083" /> + <location filename="../UI/UserInterface.py" line="2474" /> + <source>Report Bug</source> + <translation>Reportovat Bugy</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2475" /> + <source>Report &Bug...</source> + <translation>Reportovat &Bugy...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2477" /> + <source>Report a bug</source> + <translation>Reportovat bug</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2478" /> + <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <translation><b>Reportovat bug...</b><p>Otevře se dialog pro reportování bugu.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2486" /> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2494" /> - <source>Show Install Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2495" /> - <source>Show Install &Info...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2497" /> - <source>Show Installation Information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2499" /> - <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4120" /> - <location filename="../UI/UserInterface.py" line="2508" /> - <source>Report Bug</source> - <translation>Reportovat Bugy</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2509" /> - <source>Report &Bug...</source> - <translation>Reportovat &Bugy...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2511" /> - <source>Report a bug</source> - <translation>Reportovat bug</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512" /> - <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> - <translation><b>Reportovat bug...</b><p>Otevře se dialog pro reportování bugu.</p></translation> + <source>Request Feature</source> + <translation>Požadavek na vlastnost</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2487" /> + <source>Request &Feature...</source> + <translation>&Požadavek na vlastnost...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2489" /> + <source>Send a feature request</source> + <translation>Poslat požadavek na vlastnost</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2491" /> + <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> + <translation><b>Požadavek na vlastnost...</b><p>Otevře dialog pro odeslání požadavku.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606" /> + <location filename="../UI/UserInterface.py" line="3583" /> + <location filename="../UI/UserInterface.py" line="2501" /> + <source>Unittest</source> + <translation /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2503" /> + <source>&Unittest...</source> + <translation>&Unittest...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2505" /> + <source>Start unittest dialog</source> + <translation>Otevřít dialog unittestu</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506" /> + <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <translation><b>Unittest</b><p>Provést unittesty. V dialogovém okně se nastaví který test se má provést.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2515" /> + <source>Unittest Restart</source> + <translation>Restart unittestu</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2517" /> + <source>&Restart Unittest...</source> + <translation>&Restart unittestu...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2519" /> + <source>Restart last unittest</source> + <translation>Restart posledního unittestu</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2520" /> - <source>Request Feature</source> - <translation>Požadavek na vlastnost</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2521" /> - <source>Request &Feature...</source> - <translation>&Požadavek na vlastnost...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2523" /> - <source>Send a feature request</source> - <translation>Poslat požadavek na vlastnost</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2525" /> - <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> - <translation><b>Požadavek na vlastnost...</b><p>Otevře dialog pro odeslání požadavku.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3643" /> - <location filename="../UI/UserInterface.py" line="3620" /> + <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> + <translation><b>Restart unittestu</b><p>Restartuje se poslední provedený unittest.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2529" /> + <source>Unittest Rerun Failed</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2531" /> + <source>Rerun Failed Tests...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2533" /> + <source>Rerun failed tests of the last run</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2535" /> - <source>Unittest</source> - <translation /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2537" /> - <source>&Unittest...</source> - <translation>&Unittest...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2539" /> - <source>Start unittest dialog</source> - <translation>Otevřít dialog unittestu</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2540" /> - <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> - <translation><b>Unittest</b><p>Provést unittesty. V dialogovém okně se nastaví který test se má provést.</p></translation> + <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2545" /> + <source>Unittest Script</source> + <translation /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2547" /> + <source>Unittest &Script...</source> + <translation>Unittest &Script...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2549" /> - <source>Unittest Restart</source> - <translation>Restart unittestu</translation> + <source>Run unittest with current script</source> + <translation>Spustit unittest s aktuálním skriptem</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2551" /> - <source>&Restart Unittest...</source> - <translation>&Restart unittestu...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2553" /> - <source>Restart last unittest</source> - <translation>Restart posledního unittestu</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2554" /> - <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> - <translation><b>Restart unittestu</b><p>Restartuje se poslední provedený unittest.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2563" /> - <source>Unittest Rerun Failed</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2565" /> - <source>Rerun Failed Tests...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2567" /> - <source>Rerun failed tests of the last run</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2569" /> - <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2579" /> - <source>Unittest Script</source> - <translation /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2581" /> - <source>Unittest &Script...</source> - <translation>Unittest &Script...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2583" /> - <source>Run unittest with current script</source> - <translation>Spustit unittest s aktuálním skriptem</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2585" /> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Unittest Script</b><p>Spustit unittest s aktuálním skriptem.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2594" /> + <location filename="../UI/UserInterface.py" line="2560" /> <source>Unittest Project</source> <translation>Unittest Projekt</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596" /> + <location filename="../UI/UserInterface.py" line="2562" /> <source>Unittest &Project...</source> <translation>Unittest &Projekt...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2598" /> + <location filename="../UI/UserInterface.py" line="2564" /> <source>Run unittest with current project</source> <translation>Spustit unittest s aktuálním projektem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600" /> + <location filename="../UI/UserInterface.py" line="2566" /> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Unittest projekt</b><p>Spustit unittest s aktuálním projektem.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2621" /> + <location filename="../UI/UserInterface.py" line="2587" /> <source>Qt-Designer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2623" /> + <location filename="../UI/UserInterface.py" line="2589" /> <source>Qt-&Designer...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2625" /> + <location filename="../UI/UserInterface.py" line="2591" /> <source>Start Qt-Designer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2626" /> + <location filename="../UI/UserInterface.py" line="2592" /> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2613" /> + <source>Qt-Linguist</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2615" /> + <source>Qt-&Linguist...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2617" /> + <source>Start Qt-Linguist</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2618" /> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2628" /> + <source>UI Previewer</source> + <translation /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2630" /> + <source>&UI Previewer...</source> + <translation>&UI Previewer...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2632" /> + <source>Start the UI Previewer</source> + <translation>Spustit UI Previewer</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2633" /> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation><b>UI Previewer</b><p>Spustit UI Previewer.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2641" /> + <source>Translations Previewer</source> + <translation>Náhled překladů</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2643" /> + <source>&Translations Previewer...</source> + <translation>Náhled &překladů...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2645" /> + <source>Start the Translations Previewer</source> + <translation>Spustit Previewer překladů</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2647" /> - <source>Qt-Linguist</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2649" /> - <source>Qt-&Linguist...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2651" /> - <source>Start Qt-Linguist</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2652" /> - <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2662" /> - <source>UI Previewer</source> - <translation /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2664" /> - <source>&UI Previewer...</source> - <translation>&UI Previewer...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2666" /> - <source>Start the UI Previewer</source> - <translation>Spustit UI Previewer</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2667" /> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation><b>UI Previewer</b><p>Spustit UI Previewer.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2675" /> - <source>Translations Previewer</source> - <translation>Náhled překladů</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2677" /> - <source>&Translations Previewer...</source> - <translation>Náhled &překladů...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2679" /> - <source>Start the Translations Previewer</source> - <translation>Spustit Previewer překladů</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2681" /> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Previewer překladů</b><p>Spustit Previewer překladů.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2689" /> + <location filename="../UI/UserInterface.py" line="2655" /> <source>Compare Files</source> <translation>Porovnat soubory</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691" /> + <location filename="../UI/UserInterface.py" line="2657" /> <source>&Compare Files...</source> <translation>&Porovnat soubory...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2706" /> - <location filename="../UI/UserInterface.py" line="2693" /> + <location filename="../UI/UserInterface.py" line="2672" /> + <location filename="../UI/UserInterface.py" line="2659" /> <source>Compare two files</source> <translation>Porovnat dva soubory</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2694" /> + <location filename="../UI/UserInterface.py" line="2660" /> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Porovnat soubory</b><p>Otevře dialog pro porovnání dvou souborů.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2702" /> + <location filename="../UI/UserInterface.py" line="2668" /> <source>Compare Files side by side</source> <translation>Porovnat soubory stranu proti straně</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2704" /> + <location filename="../UI/UserInterface.py" line="2670" /> <source>Compare &Files side by side...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2707" /> + <location filename="../UI/UserInterface.py" line="2673" /> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Porovnat soubory stranu proti straně</b><p>Otevře dialog pro porovnání souborů a zobrazení rozdílů strany proti straně.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2716" /> + <location filename="../UI/UserInterface.py" line="2682" /> <source>SQL Browser</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2718" /> + <location filename="../UI/UserInterface.py" line="2684" /> <source>SQL &Browser...</source> <translation>SQL &Browser...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2720" /> + <location filename="../UI/UserInterface.py" line="2686" /> <source>Browse a SQL database</source> <translation>Procházet SQL databázi</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2721" /> + <location filename="../UI/UserInterface.py" line="2687" /> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL Browser</b><p>Procházet SQL databázi.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2733" /> - <location filename="../UI/UserInterface.py" line="2729" /> + <location filename="../UI/UserInterface.py" line="2699" /> + <location filename="../UI/UserInterface.py" line="2695" /> <source>Mini Editor</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2731" /> + <location filename="../UI/UserInterface.py" line="2697" /> <source>Mini &Editor...</source> <translation>Mini &Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2734" /> + <location filename="../UI/UserInterface.py" line="2700" /> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini editor</b><p>Otevře se okno s jednoduchým editorem</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2742" /> + <location filename="../UI/UserInterface.py" line="2708" /> <source>Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2744" /> + <location filename="../UI/UserInterface.py" line="2710" /> <source>&Hex Editor...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2746" /> + <location filename="../UI/UserInterface.py" line="2712" /> <source>Start the eric Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2748" /> + <location filename="../UI/UserInterface.py" line="2714" /> <source><b>Hex Editor</b><p>Starts the eric Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2723" /> + <source>eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2725" /> + <source>eric &Web Browser...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2727" /> + <source>Start the eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2729" /> + <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2737" /> + <source>Icon Editor</source> + <translation>Editor ikon</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2739" /> + <source>&Icon Editor...</source> + <translation>Editor &ikon...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2741" /> + <source>Start the eric Icon Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2743" /> + <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2751" /> + <source>Snapshot</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2753" /> + <source>&Snapshot...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2755" /> + <source>Take snapshots of a screen region</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757" /> - <source>eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2759" /> - <source>eric &Web Browser...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2761" /> - <source>Start the eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2763" /> - <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2771" /> - <source>Icon Editor</source> - <translation>Editor ikon</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2773" /> - <source>&Icon Editor...</source> - <translation>Editor &ikon...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2775" /> - <source>Start the eric Icon Editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2777" /> - <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2785" /> - <source>Snapshot</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2787" /> - <source>&Snapshot...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2789" /> - <source>Take snapshots of a screen region</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2791" /> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2766" /> + <source>Preferences</source> + <translation>Nastavení</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768" /> + <source>&Preferences...</source> + <translation>Na&stavení...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2770" /> + <source>Set the prefered configuration</source> + <translation>Nastavení konfigurace</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2772" /> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation><b>Nastavení</b><p>Upravit konfiguraci aplikace podle požadavků uživatele.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782" /> + <source>Export Preferences</source> + <translation>Exportovat předvolby</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2784" /> + <source>E&xport Preferences...</source> + <translation>E&xportovat předvolby...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2786" /> + <source>Export the current configuration</source> + <translation>Export aktuální konfigurace</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2788" /> + <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <translation><b>Export předvoleb</b><p>Export aktuální konfigurace do souboru.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2796" /> + <source>Import Preferences</source> + <translation>Import předvoleb</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2798" /> + <source>I&mport Preferences...</source> + <translation>I&mport předvoleb...</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2800" /> - <source>Preferences</source> - <translation>Nastavení</translation> + <source>Import a previously exported configuration</source> + <translation>Import dříve exportované konfigurace</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2802" /> - <source>&Preferences...</source> - <translation>Na&stavení...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2804" /> - <source>Set the prefered configuration</source> - <translation>Nastavení konfigurace</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2806" /> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> - <translation><b>Nastavení</b><p>Upravit konfiguraci aplikace podle požadavků uživatele.</p></translation> + <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> + <translation><b>Import předvoleb</b><p>Import dříve exportované konfigurace.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2810" /> + <source>Export Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2812" /> + <source>Export Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2814" /> + <source>Export the current theme</source> + <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2816" /> - <source>Export Preferences</source> - <translation>Exportovat předvolby</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2818" /> - <source>E&xport Preferences...</source> - <translation>E&xportovat předvolby...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2820" /> - <source>Export the current configuration</source> - <translation>Export aktuální konfigurace</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2822" /> - <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> - <translation><b>Export předvoleb</b><p>Export aktuální konfigurace do souboru.</p></translation> + <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2824" /> + <source>Import Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2826" /> + <source>Import Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2828" /> + <source>Import a previously exported theme</source> + <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2830" /> - <source>Import Preferences</source> - <translation>Import předvoleb</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2832" /> - <source>I&mport Preferences...</source> - <translation>I&mport předvoleb...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2834" /> - <source>Import a previously exported configuration</source> - <translation>Import dříve exportované konfigurace</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2836" /> - <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> - <translation><b>Import předvoleb</b><p>Import dříve exportované konfigurace.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2844" /> - <source>Export Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2846" /> - <source>Export Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2848" /> - <source>Export the current theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2850" /> - <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2858" /> - <source>Import Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2860" /> - <source>Import Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2862" /> - <source>Import a previously exported theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2864" /> <source><b>Import Theme</b><p>Import a previously exported theme.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2872" /> + <location filename="../UI/UserInterface.py" line="2838" /> <source>Reload APIs</source> <translation>Obnovit API</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2839" /> + <source>Reload &APIs</source> + <translation>Obnovit &API</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2841" /> + <source>Reload the API information</source> + <translation>Obnovit API nastavení</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2843" /> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation><b>Obnovit API</b><p>Obnovit API nastavení.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2855" /> + <location filename="../UI/UserInterface.py" line="2851" /> + <source>Show external tools</source> + <translation>Zobrazit externí nástroje</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2853" /> + <source>Show external &tools</source> + <translation>Zobrazit externí nás&troje</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857" /> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2867" /> + <source>View Profiles</source> + <translation>Profily pohledů</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2869" /> + <source>&View Profiles...</source> + <translation>Profily &pohledů...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2871" /> + <source>Configure view profiles</source> + <translation>Konfigurace profilů pohledů</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2873" /> - <source>Reload &APIs</source> - <translation>Obnovit &API</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2875" /> - <source>Reload the API information</source> - <translation>Obnovit API nastavení</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2877" /> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> - <translation><b>Obnovit API</b><p>Obnovit API nastavení.</p></translation> + <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <translation><b>Profily pohledů</b><p>Konfigurace profilu pohledů. V tomto dialogu můžete nastavit zobrazování různých typů pohledů - editačních oken.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2884" /> + <source>Toolbars</source> + <translation>Lišty nástrojů</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2886" /> + <source>Tool&bars...</source> + <translation>&Lišty nástrojů...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2888" /> + <source>Configure toolbars</source> + <translation>Konfigurace lišt nástrojů</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2889" /> - <location filename="../UI/UserInterface.py" line="2885" /> - <source>Show external tools</source> - <translation>Zobrazit externí nástroje</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887" /> - <source>Show external &tools</source> - <translation>Zobrazit externí nás&troje</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2891" /> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> - <translation type="unfinished" /> + <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> + <translation><b>Listy nástrojů</b><p>Konfigurace lišt nástrojů. S tímto dialogem můžete změnit akce zobrazené v různých nástrojových lištách nebo definovat své vlastní nástrojové lišty.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2899" /> + <source>Keyboard Shortcuts</source> + <translation>Klávesové zkratky</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2901" /> - <source>View Profiles</source> - <translation>Profily pohledů</translation> + <source>Keyboard &Shortcuts...</source> + <translation>Klávesové &zkratky...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2903" /> - <source>&View Profiles...</source> - <translation>Profily &pohledů...</translation> + <source>Set the keyboard shortcuts</source> + <translation>Nastavení klávesových zkratek</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2905" /> - <source>Configure view profiles</source> - <translation>Konfigurace profilů pohledů</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2907" /> - <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> - <translation><b>Profily pohledů</b><p>Konfigurace profilu pohledů. V tomto dialogu můžete nastavit zobrazování různých typů pohledů - editačních oken.</p></translation> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation><b>Klávesové zkratky</b><p>Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756" /> + <location filename="../UI/UserInterface.py" line="6738" /> + <location filename="../UI/UserInterface.py" line="2914" /> + <source>Export Keyboard Shortcuts</source> + <translation>Exportovat klávesové zkratky</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2916" /> + <source>&Export Keyboard Shortcuts...</source> + <translation>&Exportovat klávesové zkratky...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2918" /> - <source>Toolbars</source> - <translation>Lišty nástrojů</translation> + <source>Export the keyboard shortcuts</source> + <translation>Export klávesových zkratek</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2920" /> - <source>Tool&bars...</source> - <translation>&Lišty nástrojů...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2922" /> - <source>Configure toolbars</source> - <translation>Konfigurace lišt nástrojů</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2923" /> - <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> - <translation><b>Listy nástrojů</b><p>Konfigurace lišt nástrojů. S tímto dialogem můžete změnit akce zobrazené v různých nástrojových lištách nebo definovat své vlastní nástrojové lišty.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2933" /> - <source>Keyboard Shortcuts</source> - <translation>Klávesové zkratky</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2935" /> - <source>Keyboard &Shortcuts...</source> - <translation>Klávesové &zkratky...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2937" /> - <source>Set the keyboard shortcuts</source> - <translation>Nastavení klávesových zkratek</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2939" /> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation><b>Klávesové zkratky</b><p>Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6698" /> - <location filename="../UI/UserInterface.py" line="6680" /> - <location filename="../UI/UserInterface.py" line="2948" /> - <source>Export Keyboard Shortcuts</source> - <translation>Exportovat klávesové zkratky</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2950" /> - <source>&Export Keyboard Shortcuts...</source> - <translation>&Exportovat klávesové zkratky...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2952" /> - <source>Export the keyboard shortcuts</source> - <translation>Export klávesových zkratek</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2954" /> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Export klávesových zkratek</b><p>Exportují se klávesové zkratky z aplikace.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6715" /> - <location filename="../UI/UserInterface.py" line="2962" /> + <location filename="../UI/UserInterface.py" line="6773" /> + <location filename="../UI/UserInterface.py" line="2928" /> <source>Import Keyboard Shortcuts</source> <translation>Import klávesových zkratek</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2964" /> + <location filename="../UI/UserInterface.py" line="2930" /> <source>&Import Keyboard Shortcuts...</source> <translation>&Import klávesových zkratek...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2966" /> + <location filename="../UI/UserInterface.py" line="2932" /> <source>Import the keyboard shortcuts</source> <translation>Import klávesových zkratek</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2968" /> + <location filename="../UI/UserInterface.py" line="2934" /> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Import klávesových zkratek</b><p>Do aplikace se importují klávesové zkratky.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2977" /> + <location filename="../UI/UserInterface.py" line="2943" /> <source>Manage SSL Certificates</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2979" /> + <location filename="../UI/UserInterface.py" line="2945" /> <source>Manage SSL Certificates...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2947" /> + <source>Manage the saved SSL certificates</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2949" /> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2959" /> + <source>Edit Message Filters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2961" /> + <source>Edit Message Filters...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2963" /> + <source>Edit the message filters used to suppress unwanted messages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2965" /> + <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2981" /> - <source>Manage the saved SSL certificates</source> - <translation type="unfinished" /> + <location filename="../UI/UserInterface.py" line="2978" /> + <location filename="../UI/UserInterface.py" line="2976" /> + <source>Clear private data</source> + <translation type="unfinished">Smazat soukromá data</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2983" /> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation type="unfinished" /> - </message> - <message> + <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" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2994" /> <location filename="../UI/UserInterface.py" line="2993" /> - <source>Edit Message Filters</source> - <translation type="unfinished" /> + <source>Activate current editor</source> + <translation>Aktivovat aktuální editor</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2995" /> - <source>Edit Message Filters...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2997" /> - <source>Edit the message filters used to suppress unwanted messages</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2999" /> - <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3015" /> - <location filename="../UI/UserInterface.py" line="3012" /> - <location filename="../UI/UserInterface.py" line="3010" /> - <source>Clear private data</source> - <translation type="unfinished">Smazat soukromá data</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3017" /> - <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" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3028" /> - <location filename="../UI/UserInterface.py" line="3027" /> - <source>Activate current editor</source> - <translation>Aktivovat aktuální editor</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3029" /> <source>Alt+Shift+E</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="3038" /> - <location filename="../UI/UserInterface.py" line="3037" /> + <location filename="../UI/UserInterface.py" line="3004" /> + <location filename="../UI/UserInterface.py" line="3003" /> <source>Show next</source> <translation>Zobrazit další</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3039" /> + <location filename="../UI/UserInterface.py" line="3005" /> <source>Ctrl+Alt+Tab</source> <translation /> </message> <message> + <location filename="../UI/UserInterface.py" line="3013" /> + <location filename="../UI/UserInterface.py" line="3012" /> + <source>Show previous</source> + <translation>Zobrazit předchozí</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3014" /> + <source>Shift+Ctrl+Alt+Tab</source> + <translation /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3022" /> + <location filename="../UI/UserInterface.py" line="3021" /> + <source>Switch between tabs</source> + <translation>Přepnout mezi taby</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3023" /> + <source>Ctrl+1</source> + <translation /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3030" /> + <source>Plugin Infos</source> + <translation>Plugin Infa</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3032" /> + <source>&Plugin Infos...</source> + <translation>&Plugin Infa...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3033" /> + <source>Show Plugin Infos</source> + <translation>Zobrazit Plugin infa</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3034" /> + <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="3047" /> - <location filename="../UI/UserInterface.py" line="3046" /> - <source>Show previous</source> - <translation>Zobrazit předchozí</translation> + <location filename="../UI/UserInterface.py" line="3043" /> + <source>Install Plugins</source> + <translation>Instalovat pluginy</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3045" /> + <source>&Install Plugins...</source> + <translation>&Instalovat pluginy...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3048" /> - <source>Shift+Ctrl+Alt+Tab</source> - <translation /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3056" /> - <location filename="../UI/UserInterface.py" line="3055" /> - <source>Switch between tabs</source> - <translation>Přepnout mezi taby</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3057" /> - <source>Ctrl+1</source> - <translation /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3064" /> - <source>Plugin Infos</source> - <translation>Plugin Infa</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3066" /> - <source>&Plugin Infos...</source> - <translation>&Plugin Infa...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3067" /> - <source>Show Plugin Infos</source> - <translation>Zobrazit Plugin infa</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3068" /> - <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="3081" /> - <location filename="../UI/UserInterface.py" line="3077" /> - <source>Install Plugins</source> - <translation>Instalovat pluginy</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3079" /> - <source>&Install Plugins...</source> - <translation>&Instalovat pluginy...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3082" /> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Instalovat pluginy...</b><p>Otevře dialog pro instalaci nebo aktualizaci pluginů.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3094" /> - <location filename="../UI/UserInterface.py" line="3090" /> + <location filename="../UI/UserInterface.py" line="3060" /> + <location filename="../UI/UserInterface.py" line="3056" /> <source>Uninstall Plugin</source> <translation>Odinstalovat plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3092" /> + <location filename="../UI/UserInterface.py" line="3058" /> <source>&Uninstall Plugin...</source> <translation>&Odinstalovat plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3095" /> + <location filename="../UI/UserInterface.py" line="3061" /> <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="3105" /> + <location filename="../UI/UserInterface.py" line="3071" /> <source>Plugin &Repository...</source> <translation>&Repozitář pluginů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3107" /> + <location filename="../UI/UserInterface.py" line="3073" /> <source>Show Plugins available for download</source> <translation>Zobrazit pluginy dostupné ke stažení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3109" /> + <location filename="../UI/UserInterface.py" line="3075" /> <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="3101" /> + <location filename="../UI/UserInterface.py" line="3100" /> + <source>Qt5 Documentation</source> + <translation type="unfinished">Qt4 dokumentace {5 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3103" /> + <source>Open Qt5 Documentation</source> + <translation type="unfinished">Otevřít Qt4 dokumentaci {5 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3104" /> + <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3116" /> + <location filename="../UI/UserInterface.py" line="3115" /> + <source>Qt6 Documentation</source> + <translation type="unfinished">Qt4 dokumentace {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3118" /> + <source>Open Qt6 Documentation</source> + <translation type="unfinished">Otevřít Qt4 dokumentaci {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3119" /> + <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3131" /> + <location filename="../UI/UserInterface.py" line="3130" /> + <source>PyQt5 Documentation</source> + <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3133" /> + <source>Open PyQt5 Documentation</source> + <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="3135" /> - <location filename="../UI/UserInterface.py" line="3134" /> - <source>Qt5 Documentation</source> - <translation type="unfinished">Qt4 dokumentace {5 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3137" /> - <source>Open Qt5 Documentation</source> - <translation type="unfinished">Otevřít Qt4 dokumentaci {5 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3138" /> - <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> + <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3148" /> + <location filename="../UI/UserInterface.py" line="3147" /> + <source>PyQt6 Documentation</source> + <translation type="unfinished">PyQt4 dokumentace {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3150" /> - <location filename="../UI/UserInterface.py" line="3149" /> - <source>Qt6 Documentation</source> - <translation type="unfinished">Qt4 dokumentace {6 ?}</translation> + <source>Open PyQt6 Documentation</source> + <translation type="unfinished">Otevřít PyQt4 dokumentaci {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3152" /> - <source>Open Qt6 Documentation</source> - <translation type="unfinished">Otevřít Qt4 dokumentaci {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3153" /> - <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3165" /> - <location filename="../UI/UserInterface.py" line="3164" /> - <source>PyQt5 Documentation</source> - <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3167" /> - <source>Open PyQt5 Documentation</source> - <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation> - </message> - <message> + <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3170" /> <location filename="../UI/UserInterface.py" line="3169" /> - <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3182" /> - <location filename="../UI/UserInterface.py" line="3181" /> - <source>PyQt6 Documentation</source> - <translation type="unfinished">PyQt4 dokumentace {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3184" /> - <source>Open PyQt6 Documentation</source> - <translation type="unfinished">Otevřít PyQt4 dokumentaci {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3186" /> - <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3204" /> - <location filename="../UI/UserInterface.py" line="3203" /> <source>Python 3 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3206" /> + <location filename="../UI/UserInterface.py" line="3172" /> <source>Open Python 3 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3208" /> + <location filename="../UI/UserInterface.py" line="3174" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3226" /> - <location filename="../UI/UserInterface.py" line="3225" /> + <location filename="../UI/UserInterface.py" line="3192" /> + <location filename="../UI/UserInterface.py" line="3191" /> <source>eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3228" /> + <location filename="../UI/UserInterface.py" line="3194" /> <source>Open eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3230" /> + <location filename="../UI/UserInterface.py" line="3196" /> <source><b>eric API Documentation</b><p>Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3247" /> - <location filename="../UI/UserInterface.py" line="3246" /> + <location filename="../UI/UserInterface.py" line="3213" /> + <location filename="../UI/UserInterface.py" line="3212" /> <source>PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3249" /> + <location filename="../UI/UserInterface.py" line="3215" /> <source>Open PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3251" /> + <location filename="../UI/UserInterface.py" line="3217" /> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3267" /> - <location filename="../UI/UserInterface.py" line="3266" /> + <location filename="../UI/UserInterface.py" line="3233" /> + <location filename="../UI/UserInterface.py" line="3232" /> <source>PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3269" /> + <location filename="../UI/UserInterface.py" line="3235" /> <source>Open PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3271" /> + <location filename="../UI/UserInterface.py" line="3237" /> <source><b>PySide6 Documentation</b><p>Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3373" /> + <location filename="../UI/UserInterface.py" line="3339" /> <source>E&xtras</source> <translation>E&xtra funkce</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3383" /> + <location filename="../UI/UserInterface.py" line="3349" /> <source>Wi&zards</source> <translation>&Průvodci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3402" /> + <location filename="../UI/UserInterface.py" line="3368" /> <source>P&lugins</source> <translation>P&luginy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3412" /> + <location filename="../UI/UserInterface.py" line="3378" /> <source>Configure...</source> <translation>Konfigurovat...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3421" /> + <location filename="../UI/UserInterface.py" line="3387" /> <source>&Unittest</source> <translation>&Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3438" /> + <location filename="../UI/UserInterface.py" line="3404" /> <source>Select Tool Group</source> <translation>Vybrat skupinu nástrojů</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3449" /> + <location filename="../UI/UserInterface.py" line="3415" /> <source>Se&ttings</source> <translation>Nas&tavení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482" /> + <location filename="../UI/UserInterface.py" line="3448" /> <source>&Window</source> <translation>O&kno</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3491" /> + <location filename="../UI/UserInterface.py" line="3457" /> <source>&Windows</source> <translation type="unfinished">&Windows</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3496" /> + <location filename="../UI/UserInterface.py" line="3462" /> <source>Central Park</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3500" /> + <location filename="../UI/UserInterface.py" line="3466" /> <source>Left Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3517" /> + <location filename="../UI/UserInterface.py" line="3483" /> <source>Right Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3541" /> + <location filename="../UI/UserInterface.py" line="3507" /> <source>Bottom Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3549" /> + <location filename="../UI/UserInterface.py" line="3515" /> <source>Plug-ins</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3556" /> + <location filename="../UI/UserInterface.py" line="3522" /> <source>&Toolbars</source> <translation>&Toolbary</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3569" /> + <location filename="../UI/UserInterface.py" line="3535" /> <source>&Help</source> <translation>&Nápověda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3642" /> - <location filename="../UI/UserInterface.py" line="3619" /> + <location filename="../UI/UserInterface.py" line="3605" /> + <location filename="../UI/UserInterface.py" line="3582" /> <source>Tools</source> <translation>Nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3644" /> - <location filename="../UI/UserInterface.py" line="3623" /> + <location filename="../UI/UserInterface.py" line="3607" /> + <location filename="../UI/UserInterface.py" line="3586" /> <source>Settings</source> <translation>Nastavení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5541" /> - <location filename="../UI/UserInterface.py" line="3645" /> - <location filename="../UI/UserInterface.py" line="3624" /> + <location filename="../UI/UserInterface.py" line="5600" /> + <location filename="../UI/UserInterface.py" line="3608" /> + <location filename="../UI/UserInterface.py" line="3587" /> <source>Help</source> <translation>Nápověda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3646" /> - <location filename="../UI/UserInterface.py" line="3625" /> + <location filename="../UI/UserInterface.py" line="3609" /> + <location filename="../UI/UserInterface.py" line="3588" /> <source>Profiles</source> <translation>Profily</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3647" /> - <location filename="../UI/UserInterface.py" line="3626" /> + <location filename="../UI/UserInterface.py" line="3610" /> + <location filename="../UI/UserInterface.py" line="3589" /> <source>Plugins</source> <translation>Pluginy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811" /> + <location filename="../UI/UserInterface.py" line="3774" /> <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="3818" /> + <location filename="../UI/UserInterface.py" line="3781" /> <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="3825" /> + <location filename="../UI/UserInterface.py" line="3788" /> <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="3832" /> + <location filename="../UI/UserInterface.py" line="3795" /> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Tato část status baru zobrazuje indikátor práva zápisu editoru do souboru.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3839" /> + <location filename="../UI/UserInterface.py" line="3802" /> <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="3846" /> + <location filename="../UI/UserInterface.py" line="3809" /> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Tato část status baru zobrazuje pozici kurzoru v aktuálním editoru.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3857" /> + <location filename="../UI/UserInterface.py" line="3820" /> <source><p>This part of the status bar allows zooming the current editor or shell.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3922" /> - <location filename="../UI/UserInterface.py" line="3882" /> + <location filename="../UI/UserInterface.py" line="3885" /> + <location filename="../UI/UserInterface.py" line="3845" /> <source>External Tools/{0}</source> <translation>Externí nástroje/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4028" /> + <location filename="../UI/UserInterface.py" line="3991" /> <source><h2>Version Numbers</h2><table></source> <translation type="unfinished"><h3>Čísla verzí</h3><table> {2>?} {2>?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4082" /> + <location filename="../UI/UserInterface.py" line="4045" /> <source>Desktop</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4085" /> + <location filename="../UI/UserInterface.py" line="4048" /> <source>Session Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7778" /> - <location filename="../UI/UserInterface.py" line="4087" /> + <location filename="../UI/UserInterface.py" line="4050" /> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4121" /> + <location filename="../UI/UserInterface.py" line="4084" /> <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="4432" /> + <location filename="../UI/UserInterface.py" line="4395" /> <source>Restart application</source> <translation>Restartovat aplikaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4433" /> + <location filename="../UI/UserInterface.py" line="4396" /> <source>The application needs to be restarted. Do it now?</source> <translation>Aplikace potřebuje restartovat. Má se provést nyní?</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="4420" /> + <source>Upgrade PyQt</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4421" /> + <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="4467" /> + <location filename="../UI/UserInterface.py" line="4443" /> + <source>Upgrade Eric</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4444" /> + <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4468" /> + <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time. + + Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4526" /> <source>&Builtin Tools</source> <translation>&Vestavěné nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4484" /> + <location filename="../UI/UserInterface.py" line="4543" /> <source>&Plugin Tools</source> <translation>&Plugin nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4487" /> + <location filename="../UI/UserInterface.py" line="4546" /> <source>&User Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4513" /> + <location filename="../UI/UserInterface.py" line="4572" /> <source>Configure Tool Groups ...</source> <translation>Konfigurace Skupin nástrojů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517" /> + <location filename="../UI/UserInterface.py" line="4576" /> <source>Configure current Tool Group ...</source> <translation>Konfigurace aktuální skupiny nástrojů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4558" /> - <location filename="../UI/UserInterface.py" line="4538" /> + <location filename="../UI/UserInterface.py" line="4617" /> + <location filename="../UI/UserInterface.py" line="4597" /> <source>No User Tools Configured</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4632" /> + <location filename="../UI/UserInterface.py" line="4691" /> <source>&Show all</source> <translation>&Zobrazit vše</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4634" /> + <location filename="../UI/UserInterface.py" line="4693" /> <source>&Hide all</source> <translation>&Skrýt vše</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5669" /> - <location filename="../UI/UserInterface.py" line="5659" /> - <location filename="../UI/UserInterface.py" line="5612" /> - <location filename="../UI/UserInterface.py" line="5603" /> - <location filename="../UI/UserInterface.py" line="5442" /> - <location filename="../UI/UserInterface.py" line="5433" /> - <location filename="../UI/UserInterface.py" line="5372" /> - <location filename="../UI/UserInterface.py" line="5363" /> + <location filename="../UI/UserInterface.py" line="5728" /> + <location filename="../UI/UserInterface.py" line="5718" /> + <location filename="../UI/UserInterface.py" line="5671" /> + <location filename="../UI/UserInterface.py" line="5662" /> + <location filename="../UI/UserInterface.py" line="5501" /> + <location filename="../UI/UserInterface.py" line="5492" /> + <location filename="../UI/UserInterface.py" line="5431" /> + <location filename="../UI/UserInterface.py" line="5422" /> <source>Problem</source> <translation>Problém</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5670" /> - <location filename="../UI/UserInterface.py" line="5660" /> - <location filename="../UI/UserInterface.py" line="5613" /> - <location filename="../UI/UserInterface.py" line="5604" /> - <location filename="../UI/UserInterface.py" line="5443" /> - <location filename="../UI/UserInterface.py" line="5434" /> - <location filename="../UI/UserInterface.py" line="5373" /> - <location filename="../UI/UserInterface.py" line="5364" /> + <location filename="../UI/UserInterface.py" line="5729" /> + <location filename="../UI/UserInterface.py" line="5719" /> + <location filename="../UI/UserInterface.py" line="5672" /> + <location filename="../UI/UserInterface.py" line="5663" /> + <location filename="../UI/UserInterface.py" line="5502" /> + <location filename="../UI/UserInterface.py" line="5493" /> + <location filename="../UI/UserInterface.py" line="5432" /> + <location filename="../UI/UserInterface.py" line="5423" /> <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="5877" /> - <location filename="../UI/UserInterface.py" line="5790" /> - <location filename="../UI/UserInterface.py" line="5705" /> - <location filename="../UI/UserInterface.py" line="5682" /> - <location filename="../UI/UserInterface.py" line="5625" /> - <location filename="../UI/UserInterface.py" line="5575" /> - <location filename="../UI/UserInterface.py" line="5555" /> - <location filename="../UI/UserInterface.py" line="5517" /> - <location filename="../UI/UserInterface.py" line="5508" /> - <location filename="../UI/UserInterface.py" line="5473" /> - <location filename="../UI/UserInterface.py" line="5464" /> - <location filename="../UI/UserInterface.py" line="5403" /> - <location filename="../UI/UserInterface.py" line="5394" /> + <location filename="../UI/UserInterface.py" line="5936" /> + <location filename="../UI/UserInterface.py" line="5849" /> + <location filename="../UI/UserInterface.py" line="5764" /> + <location filename="../UI/UserInterface.py" line="5741" /> + <location filename="../UI/UserInterface.py" line="5684" /> + <location filename="../UI/UserInterface.py" line="5634" /> + <location filename="../UI/UserInterface.py" line="5614" /> + <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5567" /> + <location filename="../UI/UserInterface.py" line="5532" /> + <location filename="../UI/UserInterface.py" line="5523" /> + <location filename="../UI/UserInterface.py" line="5462" /> + <location filename="../UI/UserInterface.py" line="5453" /> <source>Process Generation Error</source> <translation>Chyba v procesu generování</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5395" /> + <location filename="../UI/UserInterface.py" line="5454" /> <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="5404" /> + <location filename="../UI/UserInterface.py" line="5463" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5465" /> + <location filename="../UI/UserInterface.py" line="5524" /> <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="5474" /> + <location filename="../UI/UserInterface.py" line="5533" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5509" /> + <location filename="../UI/UserInterface.py" line="5568" /> <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="5518" /> + <location filename="../UI/UserInterface.py" line="5577" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5542" /> + <location filename="../UI/UserInterface.py" line="5601" /> <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="5556" /> + <location filename="../UI/UserInterface.py" line="5615" /> <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="5576" /> + <location filename="../UI/UserInterface.py" line="5635" /> <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="5626" /> + <location filename="../UI/UserInterface.py" line="5685" /> <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="5683" /> + <location filename="../UI/UserInterface.py" line="5742" /> <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="5706" /> + <location filename="../UI/UserInterface.py" line="5765" /> <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="5791" /> + <location filename="../UI/UserInterface.py" line="5850" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5822" /> - <location filename="../UI/UserInterface.py" line="5813" /> + <location filename="../UI/UserInterface.py" line="5881" /> + <location filename="../UI/UserInterface.py" line="5872" /> <source>External Tools</source> <translation>Externí nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5814" /> + <location filename="../UI/UserInterface.py" line="5873" /> <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="5823" /> + <location filename="../UI/UserInterface.py" line="5882" /> <source>No toolgroup entry '{0}' found.</source> <translation>Skupina nástrojů '{0}' nenalezena. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5859" /> + <location filename="../UI/UserInterface.py" line="5918" /> <source>Starting process '{0} {1}'. </source> <translation>Spouštím proces '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5878" /> + <location filename="../UI/UserInterface.py" line="5937" /> <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="5953" /> + <location filename="../UI/UserInterface.py" line="6012" /> <source>Process '{0}' has exited. </source> <translation>Proces '{0}' byl ukončen. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6225" /> - <location filename="../UI/UserInterface.py" line="6167" /> - <location filename="../UI/UserInterface.py" line="6126" /> - <location filename="../UI/UserInterface.py" line="6058" /> - <location filename="../UI/UserInterface.py" line="5996" /> + <location filename="../UI/UserInterface.py" line="6284" /> + <location filename="../UI/UserInterface.py" line="6226" /> + <location filename="../UI/UserInterface.py" line="6185" /> + <location filename="../UI/UserInterface.py" line="6117" /> + <location filename="../UI/UserInterface.py" line="6055" /> <source>Documentation Missing</source> <translation>Dokumentace chybí</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6226" /> - <location filename="../UI/UserInterface.py" line="6168" /> - <location filename="../UI/UserInterface.py" line="6127" /> - <location filename="../UI/UserInterface.py" line="6059" /> - <location filename="../UI/UserInterface.py" line="5997" /> + <location filename="../UI/UserInterface.py" line="6285" /> + <location filename="../UI/UserInterface.py" line="6227" /> + <location filename="../UI/UserInterface.py" line="6186" /> + <location filename="../UI/UserInterface.py" line="6118" /> + <location filename="../UI/UserInterface.py" line="6056" /> <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="6208" /> - <location filename="../UI/UserInterface.py" line="6099" /> + <location filename="../UI/UserInterface.py" line="6267" /> + <location filename="../UI/UserInterface.py" line="6158" /> <source>Documentation</source> <translation>Dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6100" /> + <location filename="../UI/UserInterface.py" line="6159" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6209" /> + <location filename="../UI/UserInterface.py" line="6268" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6387" /> - <location filename="../UI/UserInterface.py" line="6323" /> + <location filename="../UI/UserInterface.py" line="6446" /> + <location filename="../UI/UserInterface.py" line="6382" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6324" /> + <location filename="../UI/UserInterface.py" line="6383" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6388" /> + <location filename="../UI/UserInterface.py" line="6447" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6430" /> + <location filename="../UI/UserInterface.py" line="6489" /> <source>Open Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6431" /> + <location filename="../UI/UserInterface.py" line="6490" /> <source>Could not start a web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6682" /> + <location filename="../UI/UserInterface.py" line="6740" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6699" /> + <location filename="../UI/UserInterface.py" line="6757" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6717" /> + <location filename="../UI/UserInterface.py" line="6775" /> <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6909" /> + <location filename="../UI/UserInterface.py" line="6967" /> <source>Read Tasks</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6910" /> + <location filename="../UI/UserInterface.py" line="6968" /> <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="6957" /> + <location filename="../UI/UserInterface.py" line="7015" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6985" /> - <location filename="../UI/UserInterface.py" line="6958" /> + <location filename="../UI/UserInterface.py" line="7043" /> + <location filename="../UI/UserInterface.py" line="7016" /> <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="6984" /> + <location filename="../UI/UserInterface.py" line="7042" /> <source>Read session</source> <translation>Načíst relaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7000" /> + <location filename="../UI/UserInterface.py" line="7058" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7002" /> + <location filename="../UI/UserInterface.py" line="7060" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="7082" /> <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7072" /> + <location filename="../UI/UserInterface.py" line="7130" /> <source>Crash Session found!</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7073" /> + <location filename="../UI/UserInterface.py" line="7131" /> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7374" /> + <location filename="../UI/UserInterface.py" line="7432" /> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7375" /> + <location filename="../UI/UserInterface.py" line="7433" /> <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="7552" /> - <source>&Cancel</source> - <translation>&Zrušit</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7554" /> - <source>%v/%m</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7556" /> - <source>Version Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7561" /> - <source>Trying host {0}</source> - <translation>Zkouším host {0}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7630" /> - <location filename="../UI/UserInterface.py" line="7623" /> - <location filename="../UI/UserInterface.py" line="7574" /> - <source>Error getting versions information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7575" /> - <source>The versions information cannot not be downloaded because the Internet is <b>not reachable</b>. Please try again later.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7624" /> - <source>The versions information could not be downloaded. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> + <location filename="../UI/UserInterface.py" line="7597" /> + <source>Upgrade available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7598" /> + <source>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7642" /> <location filename="../UI/UserInterface.py" line="7631" /> - <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7722" /> - <location filename="../UI/UserInterface.py" line="7688" /> - <source>Update available</source> - <translation>Byla nalezena aktualizace</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7723" /> - <location filename="../UI/UserInterface.py" line="7689" /> - <source>The update to <b>{0}</b> of eric is available at <b>{1}</b>. Would you like to get it?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7710" /> - <location filename="../UI/UserInterface.py" line="7700" /> - <source>Update Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7701" /> - <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7711" /> - <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7734" /> - <source>eric is up to date</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7735" /> - <source>You are using the latest version of eric</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7741" /> - <source>Error during updates check</source> - <translation>Chyba během zjišťování aktualizací</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7742" /> - <source>Could not perform updates check.</source> - <translation>Kontrolu updatů nelze provést.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7763" /> - <source><h3>Available versions</h3><table></source> - <translation><h3>Dostupné verze</h3><table></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7829" /> - <location filename="../UI/UserInterface.py" line="7818" /> <source>First time usage</source> <translation>Spuštěno poprvé</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7819" /> + <location filename="../UI/UserInterface.py" line="7632" /> <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7830" /> + <location filename="../UI/UserInterface.py" line="7643" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7850" /> + <location filename="../UI/UserInterface.py" line="7663" /> <source>Select Workspace Directory</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8027" /> + <location filename="../UI/UserInterface.py" line="7840" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8028" /> + <location filename="../UI/UserInterface.py" line="7841" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> <message> + <source>&Cancel</source> + <translation type="vanished">&Zrušit</translation> + </message> + <message> + <source>Trying host {0}</source> + <translation type="vanished">Zkouším host {0}</translation> + </message> + <message> + <source>Update available</source> + <translation type="vanished">Byla nalezena aktualizace</translation> + </message> + <message> + <source>Error during updates check</source> + <translation type="vanished">Chyba během zjišťování aktualizací</translation> + </message> + <message> + <source>Could not perform updates check.</source> + <translation type="vanished">Kontrolu updatů nelze provést.</translation> + </message> + <message> + <source><h3>Available versions</h3><table></source> + <translation type="vanished"><h3>Dostupné verze</h3><table></translation> + </message> + <message> + <source>Check for Updates</source> + <translation type="vanished">Zjistit aktualizace</translation> + </message> + <message> + <source>Check for &Updates...</source> + <translation type="vanished">Zjistit akt&ualizace...</translation> + </message> + <message> + <source>Show downloadable versions</source> + <translation type="vanished">Zobrazit verze ke stažení</translation> + </message> + <message> + <source>Show &downloadable versions...</source> + <translation type="vanished">Zobrazit verze pro &download...</translation> + </message> + <message> + <source>Show the versions available for download</source> + <translation type="vanished">Zobrazit dostupné verze ke stažení</translation> + </message> + <message> <source>Eric API Documentation</source> <translation type="vanished">Eric API dokumentace</translation> </message> @@ -88757,6 +88984,49 @@ </message> </context> <context> + <name>VersionsDialog</name> + <message> + <location filename="../UI/VersionsDialog.py" line="49" /> + <source>Check for Upgrades...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="92" /> + <source>No upgrades available.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="96" /> + <source>Upgrade eric7...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="100" /> + <source><p>An upgrade of <b>eric7</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="105" /> + <source>Upgrade PyQt6...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="109" /> + <source><p>An upgrade of <b>PyQt6</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="114" /> + <source>Upgrade Both...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="128" /> + <source>Check for Upgrades</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>ViewManager</name> <message> <location filename="../HexEdit/HexEditMainWindow.py" line="518" /> @@ -93556,7 +93826,7 @@ <context> <name>VirtualenvInterpreterSelectionDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="45" /> + <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="47" /> <source>Python Interpreter</source> <translation type="unfinished" /> </message> @@ -93584,54 +93854,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="232" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="243" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="233" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="244" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="295" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="306" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="346" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="296" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="307" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="345" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="433" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="369" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="444" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="380" /> <source>{0} - {1}</source> <translation type="unfinished">{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="377" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="378" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="441" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="452" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="453" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -94625,22 +94895,22 @@ <context> <name>WebBrowserPage</name> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="195" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="189" /> <source>Suspicuous URL detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="196" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="190" /> <source><p>The URL <b>{0}</b> was found in the Safe Browsing database.</p>{1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="663" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="657" /> <source>SSL Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="664" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="658" /> <source>This site does not contain SSL information.</source> <translation type="unfinished" /> </message> @@ -95961,12 +96231,12 @@ <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2282" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2287" /> <source>Quota Request</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2288" /> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished" /> </message>
--- a/eric7/i18n/eric7_de.ts Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/i18n/eric7_de.ts Sat Apr 02 11:23:11 2022 +0200 @@ -1490,6 +1490,26 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader</source> + <translation>Upgrader</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader Delay:</source> + <translation>Verzögerung:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Enter the time the upgrader process should wait for eric to exit</source> + <translation>Gib die Zeit ein, die der Aktualisierungsprozess warten soll, bis sich eric beendet hat</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source> s</source> + <translation> s</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> <source>Reporting</source> <translation>Berichte</translation> </message> @@ -45133,7 +45153,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="473" /> + <location filename="../Preferences/__init__.py" line="471" /> <location filename="../QScintilla/Lexers/__init__.py" line="415" /> <source>Python Files (*.py *.py3)</source> <translation>Python-Dateien (*.py *.py3)</translation> @@ -45386,7 +45406,7 @@ <translation>Alle Dateien (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="475" /> + <location filename="../Preferences/__init__.py" line="473" /> <location filename="../QScintilla/Lexers/__init__.py" line="585" /> <source>Python3 Files (*.py)</source> <translation>Python 3-Dateien (*.py)</translation> @@ -51269,119 +51289,113 @@ <context> <name>Pip</name> <message> - <location filename="../PipInterface/Pip.py" line="109" /> + <location filename="../PipInterface/Pip.py" line="123" /> <source>python exited with an error ({0}).</source> <translation>python endete mit einem Fehler ({0}).</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="116" /> + <location filename="../PipInterface/Pip.py" line="130" /> <source>python did not finish within 30 seconds.</source> <translation>python endete nicht innerhalb 30 Sekunden.</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="119" /> + <location filename="../PipInterface/Pip.py" line="133" /> <source>python could not be started.</source> <translation>python konnte nicht gestarted werden.</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="179" /> + <location filename="../PipInterface/Pip.py" line="193" /> <source><project></source> <translation><Projekt></translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="208" /> + <location filename="../PipInterface/Pip.py" line="222" /> <source>Interpreter for Virtual Environment</source> <translation>Interpreter für virtuelle Umgebung</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="209" /> + <location filename="../PipInterface/Pip.py" line="223" /> <source>No interpreter configured for the selected virtual environment.</source> <translation>Für die gewählte virtuelle Umgebung ist kein Interpreter konfiguriert.</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="244" /> + <location filename="../PipInterface/Pip.py" line="258" /> <source>Install PIP</source> <translation>PIP installieren</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="286" /> + <location filename="../PipInterface/Pip.py" line="300" /> <source>Repair PIP</source> <translation>PIP reparieren</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="359" /> - <location filename="../PipInterface/Pip.py" line="311" /> + <location filename="../PipInterface/Pip.py" line="383" /> <source>Upgrade Packages</source> <translation>Pakete aktualisieren</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="312" /> - <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> - <translation>Sie versuchen ein Upgrade von PyQt Paketen. Dies könnte für die laufende Python Instanz ({0}) fehlschlagen. Soll fortgefahren werden?</translation> - </message> - <message> - <location filename="../PipInterface/Pip.py" line="399" /> + <location filename="../PipInterface/Pip.py" line="423" /> <source>Install Packages</source> <translation>Pakete installieren</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="428" /> + <location filename="../PipInterface/Pip.py" line="452" /> <source>Install Packages from Requirements</source> <translation>Pakete gem. Anforderungen installieren</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="491" /> - <location filename="../PipInterface/Pip.py" line="460" /> - <location filename="../PipInterface/Pip.py" line="451" /> + <location filename="../PipInterface/Pip.py" line="515" /> + <location filename="../PipInterface/Pip.py" line="484" /> + <location filename="../PipInterface/Pip.py" line="475" /> <source>Uninstall Packages</source> <translation>Pakete deinstallieren</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="492" /> - <location filename="../PipInterface/Pip.py" line="452" /> + <location filename="../PipInterface/Pip.py" line="516" /> + <location filename="../PipInterface/Pip.py" line="476" /> <source>Do you really want to uninstall these packages?</source> <translation>Sollen diese Pakete wirklich deinstalliert werden?</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="503" /> + <location filename="../PipInterface/Pip.py" line="527" /> <source>Uninstall Packages from Requirements</source> <translation>Pakete gem. Anforderungen deinstallieren</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="721" /> + <location filename="../PipInterface/Pip.py" line="844" /> <source>Cache Info</source> <translation>Zwischenspeicherinformationen</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="746" /> - <location filename="../PipInterface/Pip.py" line="738" /> + <location filename="../PipInterface/Pip.py" line="869" /> + <location filename="../PipInterface/Pip.py" line="861" /> <source>List Cached Files</source> <translation>Liste zwischengespeicherte Dateien</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="739" /> + <location filename="../PipInterface/Pip.py" line="862" /> <source>Enter a file pattern (empty for all):</source> <translation>Gib ein Dateinamenmuster ein (leer für alle):</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="770" /> - <location filename="../PipInterface/Pip.py" line="764" /> + <location filename="../PipInterface/Pip.py" line="893" /> + <location filename="../PipInterface/Pip.py" line="887" /> <source>Remove Cached Files</source> <translation>Zwischengespeicherte Dateien Löschen</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="765" /> + <location filename="../PipInterface/Pip.py" line="888" /> <source>Enter a file pattern:</source> <translation>Gib ein Dateinamenmuster ein:</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="793" /> - <location filename="../PipInterface/Pip.py" line="788" /> + <location filename="../PipInterface/Pip.py" line="916" /> + <location filename="../PipInterface/Pip.py" line="911" /> <source>Purge Cache</source> <translation>Zwischenspeicher Leeren</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="789" /> + <location filename="../PipInterface/Pip.py" line="912" /> <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source> <translation>Soll der pip Zwischenspeicher wirklich geleert werden? Alle Dateien müssen neu heruntergeladen werden.</translation> </message> @@ -51500,19 +51514,19 @@ <location filename="../PipInterface/PipFreezeDialog.py" line="230" /> <location filename="../PipInterface/PipFreezeDialog.py" line="210" /> <location filename="../PipInterface/PipFreezeDialog.py" line="198" /> - <location filename="../PipInterface/PipFreezeDialog.py" line="118" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="122" /> <source>Generate Requirements</source> <translation>Anforderungen erzeugen</translation> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="119" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="123" /> <source>The requirements were changed. Do you want to overwrite these changes?</source> <translation>Die Anforderungen wurden verändert. Sollen die Änderungen überschrieben werden?</translation> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="160" /> - <source>No output generated by 'pip freeze'.</source> - <translation>'pip freeze' erzeugte keine Ausgabe.</translation> + <location filename="../PipInterface/PipFreezeDialog.py" line="158" /> + <source>No package specifiers generated by 'pip freeze'.</source> + <translation>'pip freeze' erzeugte keine Paketspezifikationen.</translation> </message> <message> <location filename="../PipInterface/PipFreezeDialog.py" line="199" /> @@ -51532,7 +51546,7 @@ <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Select to show requirements for locally-installed packages only</source> - <translation>Auswählen, um nur die Anforderungen für lokal installierte Packete anzuzeigen</translation> + <translation>Auswählen, um nur die Spezifikationen für lokal installierte Packete anzuzeigen</translation> </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> @@ -51541,6 +51555,16 @@ </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>Select to show requirements for packages installed to the user-site only</source> + <translation>Auswählen, um nur die Spezifikationen für im Nutzerverzeichnis installierte Packete anzuzeigen</translation> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>User-Site only</source> + <translation>Nur Nutzerverzeichnis</translation> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Requirements File:</source> <translation>Anforderungsdatei:</translation> </message> @@ -51601,6 +51625,65 @@ </message> </context> <context> + <name>PipLicensesDialog</name> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package Licenses</source> + <translation>Paketlizenzen</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of locally installed packages</source> + <translation>Auswählen, um nur die Lizenzen für lokal installierte Packete anzuzeigen</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Local packages only</source> + <translation>Nur lokale Pakete</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of packages installed to the user-site</source> + <translation>Auswählen, um nur die Lizenzen für im Nutzerverzeichnis installierte Packete anzuzeigen</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>User-Site only</source> + <translation>Nur Nutzerverzeichnis</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package</source> + <translation>Paket</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Version</source> + <translation>Version</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>License</source> + <translation>Lizenz</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Count</source> + <translation>Anzahl</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="61" /> + <source>Licenses of "{0}"</source> + <translation>Lizenzen für "{0}"</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="65" /> + <source>No environment specified.</source> + <translation>Keine Umgebung angegeben.</translation> + </message> + </context> + <context> <name>PipPackageDetailsDialog</name> <message> <location filename="../PipInterface/PipPackageDetailsDialog.py" line="46" /> @@ -51853,11 +51936,17 @@ <name>PipPackagesWidget</name> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Toggle to show or hide the dependency tree view</source> + <translation>Umschalten, um den Abhängigkeitsbaum anzuzeigen bzw. auszublenden</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only locally-installed packages</source> <translation>Auswählen, um nur lokal installierte Pakete anzuzeigen</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Local packages only</source> <translation>Nur lokale Pakete</translation> </message> @@ -51878,11 +51967,23 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>User-Site only</source> <translation>Nur Nutzerverzeichnis</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Perform vulnerability checks based on "Safety DB".</source> + <translation>Verwundbarkeitsprüfungen basierend auf "Safety DB" durchführen.</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Vulnerability Check</source> + <translation>Verwundbarkeitsprüfung</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Package</source> @@ -51890,13 +51991,19 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Installed Version</source> - <translation>Installierte Version</translation> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Installed</source> + <translation>Installiert</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Available Version</source> - <translation>Verfügbare Version</translation> + <source>Available</source> + <translation>Verfügbar</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Affected</source> + <translation>Betroffen</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> @@ -51941,6 +52048,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Press to show details for the selected entry</source> <translation>Drücken, um Details für den ausgewählten Eintrag anzuzeigen</translation> </message> @@ -51951,11 +52059,6 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Press to start the search</source> - <translation>Drücken, um die Suche zu starten</translation> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Enter the search term for the package name</source> <translation>Gib den Suchtext für Paketnamen ein</translation> </message> @@ -51966,6 +52069,16 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to start the search</source> + <translation>Drücken, um die Suche zu starten</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to search for more packages</source> + <translation>Drücken, um mehr Pakete zu suchen</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Version</source> <translation>Version</translation> </message> @@ -51990,104 +52103,150 @@ <translation>Drücken, um die ausgewählten Pakete in das Python Nutzerverzeichnis zu installieren</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="169" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>View Type</source> + <translation>Ansichtstyp</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package requires other packages</source> + <translation>Auswählen, um anzuzeigen, welches Paket andere Pakete erwartet</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Requires</source> + <translation>Erfordert</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package is required by others</source> + <translation>Auswählen, um anzuzeigen, welches Paket von anderen Paketen erwartet wird</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required By</source> + <translation>Erfordert Von</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of locally installed packages</source> + <translation>Auswählen, um nur die Abhängigkeiten für lokal installierte Packete anzuzeigen</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of packages installed to the user-site</source> + <translation>Auswählen, um nur die Abhängigkeiten für im Nutzerverzeichnis installierte Packete anzuzeigen</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required</source> + <translation>Erfordert</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to refresh the dependency tree</source> + <translation>Drücken, um den Abhängigkeitsbaum zu erneuern</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="185" /> <source>pip Menu</source> <translation>pip Menü</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="195" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="230" /> <source>Name:</source> <translation>Name:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="196" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="231" /> <source>Version:</source> <translation>Version:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="197" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="232" /> <source>Location:</source> <translation>Speicherort:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="198" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="233" /> <source>Requires:</source> <translation>Erfordert:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="199" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="234" /> <source>Summary:</source> <translation>Kurzbeschreibung:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="200" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="235" /> <source>Homepage:</source> <translation>Homepage:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="201" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="236" /> <source>Author:</source> <translation>Autor:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="202" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="237" /> <source>Author Email:</source> <translation>Autor Email:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="203" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="238" /> <source>License:</source> <translation>Lizenz:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="204" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="239" /> <source>Metadata Version:</source> <translation>Metadaten Version:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="205" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="240" /> <source>Installer:</source> <translation>Installer:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="206" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="241" /> <source>Classifiers:</source> <translation>Klassifizierungen:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="207" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="242" /> <source>Entry Points:</source> <translation>Einsprungpunkte:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="208" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="243" /> <source>Files:</source> <translation>Dateien:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="375" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="427" /> <source>Getting installed packages...</source> <translation>Ermittle installierte Pakete...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="390" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="443" /> <source>Getting outdated packages...</source> <translation>Ermittle veraltete Pakete...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="975" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="812" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="790" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1141" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="972" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="961" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="930" /> <source>Search PyPI</source> <translation>PyPI durchsuchen</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="791" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="931" /> <source><p>Received an error while searching for <b>{0}</b>.</p><p>Error: {1}</p></source> <translation><p>Fehler während der Suche nach <b>{0}</b> empfangen.</p><p>Fehler: {1}</p></translation> </message> <message numerus="yes"> - <location filename="../PipInterface/PipPackagesWidget.py" line="805" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="946" /> <source>%n package(s) found.</source> <translation> <numerusform>%n Paket gefunden.</numerusform> @@ -52095,116 +52254,157 @@ </translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="807" /> - <source>Showing first 20 packages found.</source> - <translation>Zeige die ersten 20 gefundenen Pakete.</translation> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="815" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="813" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="950" /> + <source>Showing first {0} packages found.</source> + <translation>Zeige die ersten {0} gefundenen Pakete.</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="966" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="962" /> <source><p>There were no results for <b>{0}</b>.</p></source> <translation><p>Es gab keine Ergebnisse für <b>{0}</b>.</p></translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="976" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="973" /> + <source><p>There were no more results for <b>{0}</b>.</p></source> + <translation><p>Es gab keine weiteren Ergebnisse für <b>{0}</b>.</p></translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1142" /> <source><p>No package details info for <b>{0}</b> available.</p></source> <translation><p>Keine detaillierten Paketinformationen für <b>{0}</b> verfügbar.</p></translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="990" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1156" /> <source>Install Pip</source> <translation>Pip installieren</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="993" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1159" /> <source>Install Pip to User-Site</source> <translation>Pip in Nutzerverzeichnis installieren</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="996" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1162" /> <source>Repair Pip</source> <translation>Pip reparieren</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1116" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1000" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1299" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1166" /> <source>Install Packages</source> <translation>Pakete installieren</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1003" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1169" /> <source>Install Local Package</source> <translation>Lokales Paket installieren</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1007" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1173" /> <source>Install Requirements</source> <translation>Paketanforderungen installieren</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1010" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1176" /> <source>Re-Install Selected Packages</source> <translation>Ausgewählte Pakete neu installieren</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1013" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1179" /> <source>Uninstall Requirements</source> <translation>Paketanforderungen deinstallieren</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1016" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1182" /> <source>Generate Requirements...</source> <translation>Anforderungen erzeugen...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1020" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1186" /> + <source>Show Licenses...</source> + <translation>Lizenzen anzeigen...</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1190" /> + <source>Check Vulnerabilities</source> + <translation>Verwundbarkeiten prüfen</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1194" /> + <source>Update Vulnerability Database</source> + <translation>Verwundbarkeitsdatenbank aktualisieren</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1198" /> <source>Show Cache Info...</source> <translation>Zwischenspeicherinfo...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1023" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1201" /> <source>Show Cached Files...</source> <translation>Zwischengespeicherte Dateien...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1026" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1204" /> <source>Remove Cached Files...</source> <translation>Zwischengespeicherte Dateien löschen...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1029" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1207" /> <source>Purge Cache...</source> <translation>Zwischenspeicher leeren...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1034" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1212" /> <source>Edit User Configuration...</source> <translation>Nutzerkonfiguration bearbeiten...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1037" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1215" /> <source>Edit Environment Configuration...</source> <translation>Umgebungskonfiguration bearbeiten...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1042" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1220" /> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1237" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1224" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1213" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1421" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1408" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1397" /> <source>Edit Configuration</source> <translation>Konfiguration bearbeiten</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1238" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1225" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1214" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1422" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1409" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1398" /> <source>No valid configuration path determined. Aborting</source> <translation>Es konnte kein gültiger Konfigurationspfad ermittelt werden. Abbruch</translation> </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1576" /> + <source>{0} {1}</source> + <comment>package name, package version</comment> + <translation>{0} {1}</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1598" /> + <source>Affected Version:</source> + <translation>Betroffene Version:</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1601" /> + <source>Advisory:</source> + <translation>Advisory:</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1716" /> + <source>any</source> + <translation>beliebig</translation> + </message> </context> <context> <name>PipPage</name> @@ -52214,6 +52414,11 @@ <translation><b>Hinweis:</b> Leer lassen, um den Standardwert für die Index-URL (<a href="{0}">{0}</a>) zu verwenden.</translation> </message> <message> + <location filename="../Preferences/ConfigurationPages/PipPage.py" line="34" /> + <source><b>Note:</b> Leave empty to use the default Safety DB URL ({0}).</source> + <translation><b>Hinweis:</b> Leer lassen, um die Standard Safety DB URL ({0}) zu verwenden.</translation> + </message> + <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source><b>Configure pip</b></source> <translation><b>pip Einstellungen</p></translation> @@ -52230,6 +52435,36 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Vulnerability Checks</source> + <translation>Verwundbarkeitsprüfungen</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Safety DB URL:</source> + <translation>Safety DB URL:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the base URL for the Safety DB mirror to be used</source> + <translation>Gib den Basis-URL für den zu verwendenden Safety DB Spiegelserver ein</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Cache Validity:</source> + <translation>Cache Gültigkeit:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</source> + <translation>Gib die Safety DB Cache Gültigkeitsdauer in Stunden ein (2 Stunden bis 7 Tage)</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source> hours</source> + <translation> Stunden</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source>Environment</source> <translation>Umgebung</translation> </message> @@ -52245,6 +52480,19 @@ </message> </context> <context> + <name>PipVulnerabilityChecker</name> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="219" /> + <source>Fetching Vulnerability Database</source> + <translation>Verwundbarkeitsdatenbank holen</translation> + </message> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="220" /> + <source><p>The vulnerability database <b>{0}</b> could not be loaded from <b>{1}</b>.</p><p>The vulnerability check is not available.</p></source> + <translation><p>Die Verwundbarkeitsdatenbank <b>{0}</b> konnte nicht von <b>{1}</b> geladen werden.</p><p>Die Verwundbarkeitsprüfung ist nicht verfügbar.</p></translation> + </message> + </context> + <context> <name>PixmapDiagram</name> <message> <location filename="../Graphics/PixmapDiagram.py" line="164" /> @@ -52658,32 +52906,32 @@ <translation>Dem Modul fehlt das Attribut „pluginType“ und/oder „pluginTypename“.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="445" /> + <location filename="../PluginManager/PluginManager.py" line="449" /> <source>Module failed to load. Error: {0}</source> <translation>Modul konnte nicht geladen werden. Fehler: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="622" /> + <location filename="../PluginManager/PluginManager.py" line="626" /> <source>Incompatible plugin activation method.</source> <translation>Nicht kompatible Plugin-Aktivierungsmethode.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1204" /> + <location filename="../PluginManager/PluginManager.py" line="1208" /> <source>Plugin Manager Error</source> <translation>Pluginmanager-Fehler</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1205" /> + <location filename="../PluginManager/PluginManager.py" line="1209" /> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>Das Downloadverzeichnis für Plugins <b>{0}</b> konnte nicht erzeugt werden. Bitte über den Konfigurationsdialog einstellen.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1271" /> + <location filename="../PluginManager/PluginManager.py" line="1275" /> <source>Error downloading file</source> <translation>Fehler beim Herunterladen der Datei</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1272" /> + <location filename="../PluginManager/PluginManager.py" line="1276" /> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>Die angefragte Datei konnte nicht von {0} gedownloaded werden.</p><p>Fehler: {1}</p></translation> </message> @@ -52840,6 +53088,21 @@ <source>Edit URL</source> <translation>URL bearbeiten</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Startup Behavior</source> + <translation>Startverhalten</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Select, to check for missing plugin dependencies at startup and install them</source> + <translation>Auswählen, um beim Start nach fehlenden Plugin-Abhängigkeiten zu suchen und sie zu installieren</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Automatic dependencies installation</source> + <translation>Automatische Installation von Abhängigkeiten</translation> + </message> </context> <context> <name>PluginRepositoryDialog</name> @@ -53508,18 +53771,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1654" /> + <location filename="../Preferences/__init__.py" line="1658" /> <source>Export Preferences</source> <translation>Einstellungen exportieren</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1682" /> - <location filename="../Preferences/__init__.py" line="1656" /> + <location filename="../Preferences/__init__.py" line="1686" /> + <location filename="../Preferences/__init__.py" line="1660" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>Properties-Dateien (*.ini);;Alle Dateien (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> + <location filename="../Preferences/__init__.py" line="1684" /> <source>Import Preferences</source> <translation>Einstellungen importieren</translation> </message> @@ -78775,7 +79038,17 @@ <translation><h3>Versionsnummern</h3><table></translation> </message> <message> - <location filename="../Tools/TrayStarter.py" line="582" /> + <location filename="../Tools/TrayStarter.py" line="600" /> + <source>Desktop</source> + <translation>Arbeitsumgebung</translation> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="603" /> + <source>Session Type</source> + <translation>Sitzungstyp</translation> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="605" /> <source></table></source> <translation></table></translation> </message> @@ -80335,2632 +80608,2547 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="256" /> + <location filename="../UI/UserInterface.py" line="253" /> <source>Initializing Basic Services...</source> <translation>Initialisiere Basisdienste...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="297" /> + <location filename="../UI/UserInterface.py" line="294" /> <source>Initializing Plugin Manager...</source> <translation>Initialisiere Plugin-Manager...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="304" /> + <location filename="../UI/UserInterface.py" line="301" /> <source>Generating Main User Interface...</source> <translation>Erzeuge das Hauptfenster...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="346" /> + <location filename="../UI/UserInterface.py" line="343" /> <source>Setting up connections...</source> <translation>Erstelle Verbindungen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="593" /> + <location filename="../UI/UserInterface.py" line="590" /> <source>Initializing Tools...</source> <translation>Initialisiere Werkzeuge...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="603" /> + <location filename="../UI/UserInterface.py" line="600" /> <source>Registering Objects...</source> <translation>Registriere Objekte...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="644" /> + <location filename="../UI/UserInterface.py" line="636" /> <source>Initializing Actions...</source> <translation>Initialisiere Aktionen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="646" /> + <location filename="../UI/UserInterface.py" line="638" /> <source>Initializing Menus...</source> <translation>Initialisiere Menüs...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="648" /> + <location filename="../UI/UserInterface.py" line="640" /> <source>Initializing Toolbars...</source> <translation>Initialisiere Werkzeugleisten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="650" /> + <location filename="../UI/UserInterface.py" line="642" /> <source>Initializing Statusbar...</source> <translation>Initialisiere Statuszeile...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="678" /> + <location filename="../UI/UserInterface.py" line="670" /> <source>Initializing Single Application Server...</source> <translation>Initialisiere Applikationsserver...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="676" /> + <source>Initializing Plugins...</source> + <translation>Initialisiere Plugins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="679" /> + <source>Activating Plugins...</source> + <translation>Aktiviere Plugins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="681" /> + <source>Generating Plugins Toolbars...</source> + <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="684" /> - <source>Initializing Plugins...</source> - <translation>Initialisiere Plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="687" /> - <source>Activating Plugins...</source> - <translation>Aktiviere Plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="689" /> - <source>Generating Plugins Toolbars...</source> - <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="692" /> <source>Cleaning Plugins Download Area...</source> <translation>Bereinige den Plugins Downloadbereich...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="703" /> + <location filename="../UI/UserInterface.py" line="695" /> <source>Restoring Toolbarmanager...</source> <translation>Lade Toolbarmanager...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="712" /> + <location filename="../UI/UserInterface.py" line="704" /> <source>Setting View Profile...</source> <translation>Stelle Ansichtenprofil ein...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="725" /> + <location filename="../UI/UserInterface.py" line="717" /> <source>Reading Tasks...</source> <translation>Lese Aufgaben...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="730" /> + <location filename="../UI/UserInterface.py" line="722" /> <source>Reading Templates...</source> <translation>Lese Vorlagen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="735" /> + <location filename="../UI/UserInterface.py" line="727" /> <source>Starting Debugger...</source> <translation>Starte Debugger...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2041" /> - <location filename="../UI/UserInterface.py" line="1065" /> + <location filename="../UI/UserInterface.py" line="2033" /> + <location filename="../UI/UserInterface.py" line="1057" /> <source>Left Toolbox</source> <translation>Linke Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2072" /> - <location filename="../UI/UserInterface.py" line="1073" /> + <location filename="../UI/UserInterface.py" line="2064" /> + <location filename="../UI/UserInterface.py" line="1065" /> <source>Horizontal Toolbox</source> <translation>Horizontale Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2056" /> - <location filename="../UI/UserInterface.py" line="1081" /> + <location filename="../UI/UserInterface.py" line="2048" /> + <location filename="../UI/UserInterface.py" line="1073" /> <source>Right Toolbox</source> <translation>Rechte Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915" /> - <location filename="../UI/UserInterface.py" line="1237" /> - <location filename="../UI/UserInterface.py" line="1089" /> + <location filename="../UI/UserInterface.py" line="1907" /> + <location filename="../UI/UserInterface.py" line="1229" /> + <location filename="../UI/UserInterface.py" line="1081" /> <source>Multiproject-Viewer</source> <translation>Mehrfachprojektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1898" /> - <location filename="../UI/UserInterface.py" line="1242" /> - <location filename="../UI/UserInterface.py" line="1093" /> + <location filename="../UI/UserInterface.py" line="1890" /> + <location filename="../UI/UserInterface.py" line="1234" /> + <location filename="../UI/UserInterface.py" line="1085" /> <source>Project-Viewer</source> <translation>Projektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2326" /> - <location filename="../UI/UserInterface.py" line="2325" /> - <location filename="../UI/UserInterface.py" line="1247" /> - <location filename="../UI/UserInterface.py" line="1097" /> + <location filename="../UI/UserInterface.py" line="2318" /> + <location filename="../UI/UserInterface.py" line="2317" /> + <location filename="../UI/UserInterface.py" line="1239" /> + <location filename="../UI/UserInterface.py" line="1089" /> <source>Find/Replace In Files</source> <translation>Suchen/Ersetzen in Dateien</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2344" /> - <location filename="../UI/UserInterface.py" line="2343" /> - <location filename="../UI/UserInterface.py" line="1252" /> - <location filename="../UI/UserInterface.py" line="1101" /> + <location filename="../UI/UserInterface.py" line="2336" /> + <location filename="../UI/UserInterface.py" line="2335" /> + <location filename="../UI/UserInterface.py" line="1244" /> + <location filename="../UI/UserInterface.py" line="1093" /> <source>Find File</source> <translation>Datei suchen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1257" /> - <location filename="../UI/UserInterface.py" line="1105" /> + <location filename="../UI/UserInterface.py" line="1249" /> + <location filename="../UI/UserInterface.py" line="1097" /> <source>VCS Status</source> <translation>VCS-Status</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2022" /> - <location filename="../UI/UserInterface.py" line="1263" /> - <location filename="../UI/UserInterface.py" line="1110" /> + <location filename="../UI/UserInterface.py" line="2014" /> + <location filename="../UI/UserInterface.py" line="1255" /> + <location filename="../UI/UserInterface.py" line="1102" /> <source>Template-Viewer</source> <translation>Vorlagen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1968" /> - <location filename="../UI/UserInterface.py" line="1269" /> - <location filename="../UI/UserInterface.py" line="1115" /> + <location filename="../UI/UserInterface.py" line="1960" /> + <location filename="../UI/UserInterface.py" line="1261" /> + <location filename="../UI/UserInterface.py" line="1107" /> <source>File-Browser</source> <translation>Dateibrowser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1275" /> - <location filename="../UI/UserInterface.py" line="1120" /> + <location filename="../UI/UserInterface.py" line="1267" /> + <location filename="../UI/UserInterface.py" line="1112" /> <source>Symbols</source> <translation>Symbole</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1933" /> - <location filename="../UI/UserInterface.py" line="1295" /> - <location filename="../UI/UserInterface.py" line="1290" /> - <location filename="../UI/UserInterface.py" line="1128" /> + <location filename="../UI/UserInterface.py" line="1925" /> + <location filename="../UI/UserInterface.py" line="1287" /> + <location filename="../UI/UserInterface.py" line="1282" /> + <location filename="../UI/UserInterface.py" line="1120" /> <source>Debug-Viewer</source> <translation>Debuganzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2215" /> - <location filename="../UI/UserInterface.py" line="2214" /> - <location filename="../UI/UserInterface.py" line="1301" /> - <location filename="../UI/UserInterface.py" line="1133" /> + <location filename="../UI/UserInterface.py" line="2207" /> + <location filename="../UI/UserInterface.py" line="2206" /> + <location filename="../UI/UserInterface.py" line="1293" /> + <location filename="../UI/UserInterface.py" line="1125" /> <source>Code Documentation Viewer</source> <translation>Dokumentationsanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380" /> - <location filename="../UI/UserInterface.py" line="2379" /> - <location filename="../UI/UserInterface.py" line="1307" /> - <location filename="../UI/UserInterface.py" line="1138" /> + <location filename="../UI/UserInterface.py" line="2372" /> + <location filename="../UI/UserInterface.py" line="2371" /> + <location filename="../UI/UserInterface.py" line="1299" /> + <location filename="../UI/UserInterface.py" line="1130" /> <source>Help Viewer</source> <translation>Hilfeanzeiger</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3103" /> - <location filename="../UI/UserInterface.py" line="2289" /> - <location filename="../UI/UserInterface.py" line="2288" /> - <location filename="../UI/UserInterface.py" line="1312" /> - <location filename="../UI/UserInterface.py" line="1142" /> + <location filename="../UI/UserInterface.py" line="3069" /> + <location filename="../UI/UserInterface.py" line="2281" /> + <location filename="../UI/UserInterface.py" line="2280" /> + <location filename="../UI/UserInterface.py" line="1304" /> + <location filename="../UI/UserInterface.py" line="1134" /> <source>Plugin Repository</source> <translation>Plugin-Repository</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2307" /> - <location filename="../UI/UserInterface.py" line="2306" /> - <location filename="../UI/UserInterface.py" line="1317" /> - <location filename="../UI/UserInterface.py" line="1146" /> + <location filename="../UI/UserInterface.py" line="2299" /> + <location filename="../UI/UserInterface.py" line="2298" /> + <location filename="../UI/UserInterface.py" line="1309" /> + <location filename="../UI/UserInterface.py" line="1138" /> <source>Virtual Environments</source> <translation>Virtuelle Umgebungen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235" /> - <location filename="../UI/UserInterface.py" line="2234" /> - <location filename="../UI/UserInterface.py" line="1322" /> - <location filename="../UI/UserInterface.py" line="1151" /> + <location filename="../UI/UserInterface.py" line="2227" /> + <location filename="../UI/UserInterface.py" line="2226" /> + <location filename="../UI/UserInterface.py" line="1314" /> + <location filename="../UI/UserInterface.py" line="1143" /> <source>PyPI</source> <translation>PyPI</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2253" /> - <location filename="../UI/UserInterface.py" line="2252" /> - <location filename="../UI/UserInterface.py" line="1327" /> - <location filename="../UI/UserInterface.py" line="1156" /> + <location filename="../UI/UserInterface.py" line="2245" /> + <location filename="../UI/UserInterface.py" line="2244" /> + <location filename="../UI/UserInterface.py" line="1319" /> + <location filename="../UI/UserInterface.py" line="1148" /> <source>Conda</source> <translation>Conda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332" /> - <location filename="../UI/UserInterface.py" line="1161" /> + <location filename="../UI/UserInterface.py" line="1324" /> + <location filename="../UI/UserInterface.py" line="1153" /> <source>Cooperation</source> <translation>Zusammenarbeit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2158" /> - <location filename="../UI/UserInterface.py" line="1337" /> - <location filename="../UI/UserInterface.py" line="1166" /> + <location filename="../UI/UserInterface.py" line="2150" /> + <location filename="../UI/UserInterface.py" line="1329" /> + <location filename="../UI/UserInterface.py" line="1158" /> <source>IRC</source> <translation>IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2271" /> - <location filename="../UI/UserInterface.py" line="2270" /> - <location filename="../UI/UserInterface.py" line="1343" /> - <location filename="../UI/UserInterface.py" line="1171" /> + <location filename="../UI/UserInterface.py" line="2263" /> + <location filename="../UI/UserInterface.py" line="2262" /> + <location filename="../UI/UserInterface.py" line="1335" /> + <location filename="../UI/UserInterface.py" line="1163" /> <source>MicroPython</source> <translation>MicroPython</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1951" /> - <location filename="../UI/UserInterface.py" line="1351" /> - <location filename="../UI/UserInterface.py" line="1179" /> + <location filename="../UI/UserInterface.py" line="1943" /> + <location filename="../UI/UserInterface.py" line="1343" /> + <location filename="../UI/UserInterface.py" line="1171" /> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003" /> - <location filename="../UI/UserInterface.py" line="1355" /> - <location filename="../UI/UserInterface.py" line="1183" /> + <location filename="../UI/UserInterface.py" line="1995" /> + <location filename="../UI/UserInterface.py" line="1347" /> + <location filename="../UI/UserInterface.py" line="1175" /> <source>Task-Viewer</source> <translation>Aufgabenanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1985" /> - <location filename="../UI/UserInterface.py" line="1359" /> - <location filename="../UI/UserInterface.py" line="1187" /> + <location filename="../UI/UserInterface.py" line="1977" /> + <location filename="../UI/UserInterface.py" line="1351" /> + <location filename="../UI/UserInterface.py" line="1179" /> <source>Log-Viewer</source> <translation>Ausgabefenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1364" /> - <location filename="../UI/UserInterface.py" line="1192" /> + <location filename="../UI/UserInterface.py" line="1356" /> + <location filename="../UI/UserInterface.py" line="1184" /> <source>Numbers</source> <translation>Zahlen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752" /> + <location filename="../UI/UserInterface.py" line="1744" /> <source>{0} - Passive Mode</source> <translation>{0} – Passiver Modus</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1759" /> - <location filename="../UI/UserInterface.py" line="1755" /> + <location filename="../UI/UserInterface.py" line="1751" /> + <location filename="../UI/UserInterface.py" line="1747" /> <source>{0} - {1} - Passive Mode</source> <translation>{0} – {1} – Passiver Modus</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1763" /> + <location filename="../UI/UserInterface.py" line="1755" /> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} . {1} – {2} – Passiver Modus</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1786" /> + <location filename="../UI/UserInterface.py" line="1778" /> <source>Quit</source> <translation>Beenden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1788" /> + <location filename="../UI/UserInterface.py" line="1780" /> <source>&Quit</source> <translation>B&eenden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1789" /> + <location filename="../UI/UserInterface.py" line="1781" /> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1791" /> + <location filename="../UI/UserInterface.py" line="1783" /> <source>Quit the IDE</source> <translation>Beenden der Entwicklungsumgebung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1792" /> + <location filename="../UI/UserInterface.py" line="1784" /> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Die Entwicklungsumgebung beenden</b><p>Dies beendet die Entwicklungsumgebung. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python-Programm, das gerade debuggt wird, wird beendet und sämtliche Einstellungen werden gespeichert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1805" /> - <location filename="../UI/UserInterface.py" line="1803" /> + <location filename="../UI/UserInterface.py" line="1797" /> + <location filename="../UI/UserInterface.py" line="1795" /> <source>Restart</source> <translation>Neu starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806" /> + <location filename="../UI/UserInterface.py" line="1798" /> <source>Ctrl+Shift+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Shift+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1808" /> + <location filename="../UI/UserInterface.py" line="1800" /> <source>Restart the IDE</source> <translation>Neustart der Entwicklungsumgebung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1809" /> + <location filename="../UI/UserInterface.py" line="1801" /> <source><b>Restart the IDE</b><p>This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Neustart der Entwicklungsumgebung</b><p>Dies startet die Entwicklungsumgebung neu. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python-Programm, das gerade debuggt wird, wird beendet und sämtliche Einstellungen werden gespeichert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1822" /> - <location filename="../UI/UserInterface.py" line="1819" /> + <location filename="../UI/UserInterface.py" line="1814" /> + <location filename="../UI/UserInterface.py" line="1811" /> <source>Save session</source> <translation>Sitzung speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1820" /> + <location filename="../UI/UserInterface.py" line="1812" /> <source>Save session...</source> <translation>Sitzung speichern...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823" /> + <location filename="../UI/UserInterface.py" line="1815" /> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation><b>Sitzung speichern...</b><p>Dies speichert die aktuelle Sitzung in eine Datei. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7022" /> - <location filename="../UI/UserInterface.py" line="1835" /> - <location filename="../UI/UserInterface.py" line="1832" /> + <location filename="../UI/UserInterface.py" line="7080" /> + <location filename="../UI/UserInterface.py" line="1827" /> + <location filename="../UI/UserInterface.py" line="1824" /> <source>Load session</source> <translation>Sitzung laden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1833" /> + <location filename="../UI/UserInterface.py" line="1825" /> <source>Load session...</source> <translation>Sitzung laden...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836" /> + <location filename="../UI/UserInterface.py" line="1828" /> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation><b>Sitzung laden...</b><p>Dies lädt eine zuvor gesicherte Sitzung. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1845" /> + <location filename="../UI/UserInterface.py" line="1837" /> <source>New Window</source> <translation>Neues Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1847" /> + <location filename="../UI/UserInterface.py" line="1839" /> <source>New &Window</source> <translation>Neues &Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848" /> + <location filename="../UI/UserInterface.py" line="1840" /> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1850" /> + <location filename="../UI/UserInterface.py" line="1842" /> <source>Open a new eric instance</source> <translation>Öffnet eine neue eric Instanz</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1852" /> + <location filename="../UI/UserInterface.py" line="1844" /> <source><b>New Window</b><p>This opens a new instance of the eric IDE.</p></source> <translation><b>Neues Fenster</b><p>Dies öffnet eine neue Instanz der eric IDE.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1866" /> - <location filename="../UI/UserInterface.py" line="1864" /> + <location filename="../UI/UserInterface.py" line="1858" /> + <location filename="../UI/UserInterface.py" line="1856" /> <source>Edit Profile</source> <translation>Editieren-Profil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1869" /> + <location filename="../UI/UserInterface.py" line="1861" /> <source>Activate the edit view profile</source> <translation>Aktiviert das Editieren-Ansichtsprofil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871" /> + <location filename="../UI/UserInterface.py" line="1863" /> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Editieren-Profil</b><p>Aktiviert das „Editieren-Ansichtsprofil“. Fenster, die in diesem Profil angezeigt werden sollen, können im „Ansichtenprofile konfigurieren“-Dialog ausgewählt werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1883" /> - <location filename="../UI/UserInterface.py" line="1881" /> + <location filename="../UI/UserInterface.py" line="1875" /> + <location filename="../UI/UserInterface.py" line="1873" /> <source>Debug Profile</source> <translation>Debuggen-Profil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1887" /> + <location filename="../UI/UserInterface.py" line="1879" /> <source>Activate the debug view profile</source> <translation>Aktiviert das Debuggen-Ansichtsprofil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1888" /> + <location filename="../UI/UserInterface.py" line="1880" /> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Debuggen-Profil</b><p>Aktiviert das „Debuggen Ansichtsprofil“. Fenster, die in diesem Profil angezeigt werden sollen, können im „Ansichtenprofile konfigurieren“-Dialog ausgewählt werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899" /> + <location filename="../UI/UserInterface.py" line="1891" /> <source>&Project-Viewer</source> <translation>&Projektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1900" /> + <location filename="../UI/UserInterface.py" line="1892" /> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1903" /> + <location filename="../UI/UserInterface.py" line="1895" /> <source>Switch the input focus to the Project-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Projektanzeigerfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1905" /> + <location filename="../UI/UserInterface.py" line="1897" /> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation><b>Projektanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Projektanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1916" /> + <location filename="../UI/UserInterface.py" line="1908" /> <source>&Multiproject-Viewer</source> <translation>&Mehrfachprojektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1917" /> + <location filename="../UI/UserInterface.py" line="1909" /> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920" /> + <location filename="../UI/UserInterface.py" line="1912" /> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922" /> + <location filename="../UI/UserInterface.py" line="1914" /> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation><b>Mehrfachprojektanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1934" /> + <location filename="../UI/UserInterface.py" line="1926" /> <source>&Debug-Viewer</source> <translation>&Debuganzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935" /> + <location filename="../UI/UserInterface.py" line="1927" /> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1938" /> + <location filename="../UI/UserInterface.py" line="1930" /> <source>Switch the input focus to the Debug-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Debuganzeigefenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1940" /> + <location filename="../UI/UserInterface.py" line="1932" /> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation><b>Debuganzeige aktivieren</b><p>Dies schaltet den Eingabefokus auf das Debuganzeigefenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1952" /> + <location filename="../UI/UserInterface.py" line="1944" /> <source>&Shell</source> <translation>&Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1953" /> + <location filename="../UI/UserInterface.py" line="1945" /> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1956" /> + <location filename="../UI/UserInterface.py" line="1948" /> <source>Switch the input focus to the Shell window.</source> <translation>Schalte den Eingabefokus auf das Shell-Fenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1958" /> + <location filename="../UI/UserInterface.py" line="1950" /> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation><b>Shell aktivieren</b><p>Dies schaltet den Eingabefokus auf das Shell-Fenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1969" /> + <location filename="../UI/UserInterface.py" line="1961" /> <source>&File-Browser</source> <translation>Datei&browser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1970" /> + <location filename="../UI/UserInterface.py" line="1962" /> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1973" /> + <location filename="../UI/UserInterface.py" line="1965" /> <source>Switch the input focus to the File-Browser window.</source> <translation>Schalte den Eingabefokus auf das Dateibrowserfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1975" /> + <location filename="../UI/UserInterface.py" line="1967" /> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation><b>Dateibrowser aktivieren</b><p>Dies schaltet den Eingabefokus auf das Dateibrowserfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1986" /> + <location filename="../UI/UserInterface.py" line="1978" /> <source>Lo&g-Viewer</source> <translation>&Ausgabefenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1987" /> + <location filename="../UI/UserInterface.py" line="1979" /> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1990" /> + <location filename="../UI/UserInterface.py" line="1982" /> <source>Switch the input focus to the Log-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Ausgabefenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1992" /> + <location filename="../UI/UserInterface.py" line="1984" /> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation><b>Ausgabefenster aktivieren</b><p>Dies schaltet den Eingabefokus auf das Ausgabefenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004" /> + <location filename="../UI/UserInterface.py" line="1996" /> <source>&Task-Viewer</source> <translation>&Aufgabenanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2005" /> + <location filename="../UI/UserInterface.py" line="1997" /> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2008" /> + <location filename="../UI/UserInterface.py" line="2000" /> <source>Switch the input focus to the Task-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Aufgabenanzeigefenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2010" /> + <location filename="../UI/UserInterface.py" line="2002" /> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation><b>Aufgabenanzeige aktivieren</b><p>Dies schaltet den Eingabefokus auf das Aufgabenanzeigefenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2023" /> + <location filename="../UI/UserInterface.py" line="2015" /> <source>Templ&ate-Viewer</source> <translation>&Vorlagen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2024" /> + <location filename="../UI/UserInterface.py" line="2016" /> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2027" /> + <location filename="../UI/UserInterface.py" line="2019" /> <source>Switch the input focus to the Template-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Vorlagenfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2029" /> + <location filename="../UI/UserInterface.py" line="2021" /> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation><b>Vorlagen aktivieren</b><p>Dies schaltet den Eingabefokus auf das Vorlagenfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2042" /> + <location filename="../UI/UserInterface.py" line="2034" /> <source>&Left Toolbox</source> <translation>&Linke Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2043" /> + <location filename="../UI/UserInterface.py" line="2035" /> <source>Toggle the Left Toolbox window</source> <translation>Schalte das Fenster der linken Werkzeugbox um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2044" /> + <location filename="../UI/UserInterface.py" line="2036" /> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der linken Werkzeugbox um</b><p>Falls das Fenster der linken Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2057" /> + <location filename="../UI/UserInterface.py" line="2049" /> <source>&Right Toolbox</source> <translation>&Rechte Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2059" /> + <location filename="../UI/UserInterface.py" line="2051" /> <source>Toggle the Right Toolbox window</source> <translation>Schalte das Fenster der rechten Werkzeugbox um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2060" /> + <location filename="../UI/UserInterface.py" line="2052" /> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der rechten Werkzeugbox um</b><p>Falls das Fenster der rechten Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2073" /> + <location filename="../UI/UserInterface.py" line="2065" /> <source>&Horizontal Toolbox</source> <translation>&Horizontale Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2075" /> + <location filename="../UI/UserInterface.py" line="2067" /> <source>Toggle the Horizontal Toolbox window</source> <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2077" /> + <location filename="../UI/UserInterface.py" line="2069" /> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der Horizontalen Werkzeugbox um</b><p>Falls das Fenster der Horizontalen Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2089" /> + <location filename="../UI/UserInterface.py" line="2081" /> <source>Left Sidebar</source> <translation>Linke Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2090" /> + <location filename="../UI/UserInterface.py" line="2082" /> <source>&Left Sidebar</source> <translation>&Linke Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2092" /> + <location filename="../UI/UserInterface.py" line="2084" /> <source>Toggle the left sidebar window</source> <translation>Schalte das Fenster der linken Seitenleiste um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2093" /> + <location filename="../UI/UserInterface.py" line="2085" /> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der linken Seitenleiste um</b><p>Falls das Fenster der linken Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2105" /> + <location filename="../UI/UserInterface.py" line="2097" /> <source>Right Sidebar</source> <translation>Rechte Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2106" /> + <location filename="../UI/UserInterface.py" line="2098" /> <source>&Right Sidebar</source> <translation>&Rechte Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2108" /> + <location filename="../UI/UserInterface.py" line="2100" /> <source>Toggle the right sidebar window</source> <translation>Schalte das Fenster der rechten Seitenleiste um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110" /> + <location filename="../UI/UserInterface.py" line="2102" /> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der rechten Seitenleiste um</b><p>Falls das Fenster der rechten Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2122" /> + <location filename="../UI/UserInterface.py" line="2114" /> <source>Bottom Sidebar</source> <translation>Untere Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2123" /> + <location filename="../UI/UserInterface.py" line="2115" /> <source>&Bottom Sidebar</source> <translation>&Untere Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2125" /> + <location filename="../UI/UserInterface.py" line="2117" /> <source>Toggle the bottom sidebar window</source> <translation>Schalte das Fenster der unteren Seitenleiste um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2127" /> + <location filename="../UI/UserInterface.py" line="2119" /> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der unteren Seitenleiste um</b><p>Falls das Fenster der unteren Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139" /> + <location filename="../UI/UserInterface.py" line="2131" /> <source>Cooperation-Viewer</source> <translation>Zusammenarbeit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2140" /> + <location filename="../UI/UserInterface.py" line="2132" /> <source>Co&operation-Viewer</source> <translation>&Zusammenarbeit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2141" /> + <location filename="../UI/UserInterface.py" line="2133" /> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144" /> + <location filename="../UI/UserInterface.py" line="2136" /> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Fenster zur Zusammenarbeit um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146" /> + <location filename="../UI/UserInterface.py" line="2138" /> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation><b>Zusammenarbeitsfenster aktivieren</b><p>Dies schaltet den Eingabefokus auf das Fenster zur Zusammenarbeit um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2159" /> + <location filename="../UI/UserInterface.py" line="2151" /> <source>&IRC</source> <translation>&IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160" /> + <location filename="../UI/UserInterface.py" line="2152" /> <source>Ctrl+Alt+Shift+I</source> <translation>Ctrl+Alt+Shift+I</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2163" /> + <location filename="../UI/UserInterface.py" line="2155" /> <source>Switch the input focus to the IRC window.</source> <translation>Schalte den Eingabefokus auf das IRC-Fenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2165" /> + <location filename="../UI/UserInterface.py" line="2157" /> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation><b>IRC aktivieren</b><p>Dies schaltet den Eingabefokus auf das IRC-Fenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176" /> + <location filename="../UI/UserInterface.py" line="2168" /> <source>Symbols-Viewer</source> <translation>Symbolanzeiger</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2177" /> + <location filename="../UI/UserInterface.py" line="2169" /> <source>S&ymbols-Viewer</source> <translation>S&ymbolanzeiger</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2178" /> + <location filename="../UI/UserInterface.py" line="2170" /> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2181" /> + <location filename="../UI/UserInterface.py" line="2173" /> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Symbolanzeigerfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183" /> + <location filename="../UI/UserInterface.py" line="2175" /> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation><b>Symbolanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Symbolanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2195" /> + <location filename="../UI/UserInterface.py" line="2187" /> <source>Numbers-Viewer</source> <translation>Zahlenanzeiger</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196" /> + <location filename="../UI/UserInterface.py" line="2188" /> <source>Num&bers-Viewer</source> <translation>Za&hlenanzeiger</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2197" /> + <location filename="../UI/UserInterface.py" line="2189" /> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2200" /> + <location filename="../UI/UserInterface.py" line="2192" /> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Zahlenanzeigerfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202" /> + <location filename="../UI/UserInterface.py" line="2194" /> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation><b>Zahlenanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Zahlenanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2216" /> + <location filename="../UI/UserInterface.py" line="2208" /> <source>Ctrl+Alt+Shift+D</source> <translation>Ctrl+Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2219" /> + <location filename="../UI/UserInterface.py" line="2211" /> <source>Switch the input focus to the Code Documentation Viewer window.</source> <translation>Schalte den Eingabefokus auf die Codedokumentationsanzeige um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2222" /> + <location filename="../UI/UserInterface.py" line="2214" /> <source><b>Code Documentation Viewer</b><p>This switches the input focus to the Code Documentation Viewer window.</p></source> <translation><b>Codedokumentationsanzeige</b><p>Dies schaltet den Eingabefokus auf die Codedokumentationsanzeige um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2236" /> + <location filename="../UI/UserInterface.py" line="2228" /> <source>Ctrl+Alt+Shift+P</source> <translation>Ctrl+Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239" /> + <location filename="../UI/UserInterface.py" line="2231" /> <source>Switch the input focus to the PyPI window.</source> <translation>Schalte den Eingabefokus auf das PyPI-Fenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2241" /> + <location filename="../UI/UserInterface.py" line="2233" /> <source><b>PyPI</b><p>This switches the input focus to the PyPI window.</p></source> <translation><b>PyPI</b><p>Dies schaltet den Eingabefokus auf das PyPI-Fenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2254" /> + <location filename="../UI/UserInterface.py" line="2246" /> <source>Ctrl+Alt+Shift+C</source> <translation>Ctrl+Alt+Shift+C</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2257" /> + <location filename="../UI/UserInterface.py" line="2249" /> <source>Switch the input focus to the Conda window.</source> <translation>Schalte den Eingabefokus auf das Conda-Fenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259" /> + <location filename="../UI/UserInterface.py" line="2251" /> <source><b>Conda</b><p>This switches the input focus to the Conda window.</p></source> <translation><b>Conda</b><p>Dies schaltet den Eingabefokus auf das Conda-Fenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2272" /> + <location filename="../UI/UserInterface.py" line="2264" /> <source>Ctrl+Alt+Shift+M</source> <translation>Ctrl+Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2275" /> + <location filename="../UI/UserInterface.py" line="2267" /> <source>Switch the input focus to the MicroPython window.</source> <translation>Schalte den Eingabefokus auf das MicroPython-Fenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2277" /> + <location filename="../UI/UserInterface.py" line="2269" /> <source><b>MicroPython</b><p>This switches the input focus to the MicroPython window.</p></source> <translation><b>MicroPython</b><p>Dies schaltet den Eingabefokus auf das MicroPython-Fenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290" /> + <location filename="../UI/UserInterface.py" line="2282" /> <source>Ctrl+Alt+Shift+R</source> <translation>Ctrl+Alt+Shift+R</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293" /> + <location filename="../UI/UserInterface.py" line="2285" /> <source>Switch the input focus to the Plugin Repository window.</source> <translation>Schalte den Eingabefokus auf das Plugin Repository Fenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295" /> + <location filename="../UI/UserInterface.py" line="2287" /> <source><b>Plugin Repository</b><p>This switches the input focus to the Plugin Repository window.</p></source> <translation><b>Plugin-Repository</b><p>Dies schaltet den Eingabefokus auf das Plugin Repository Fenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308" /> + <location filename="../UI/UserInterface.py" line="2300" /> <source>Ctrl+Alt+V</source> <translation>Ctrl+Alt+V</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311" /> + <location filename="../UI/UserInterface.py" line="2303" /> <source>Switch the input focus to the Virtual Environments Manager window.</source> <translation>Schalte den Eingabefokus auf den Manager für Virtuelle Umgebungen um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2314" /> + <location filename="../UI/UserInterface.py" line="2306" /> <source><b>Virtual Environments</b><p>This switches the input focus to the Virtual Environments Manager window.</p></source> <translation><b>Virtuelle Umgebungen</b><p>Dies schaltet den Eingabefokus auf den Manager für Virtuelle Umgebungen um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327" /> + <location filename="../UI/UserInterface.py" line="2319" /> <source>Ctrl+Alt+Shift+F</source> <translation>Ctrl+Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2330" /> + <location filename="../UI/UserInterface.py" line="2322" /> <source>Switch the input focus to the Find/Replace In Files window.</source> <translation>Schalte den Eingabefokus auf das 'Suchen/Ersetzen in Dateien' Fenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2332" /> + <location filename="../UI/UserInterface.py" line="2324" /> <source><b>Find/Replace In Files</b><p>This switches the input focus to the Find/Replace In Files window.</p></source> <translation><b>Suchen/Ersetzen in Dateien<b><p>Dies schalte den Eingabefokus auf das 'Suchen/Ersetzen in Dateien' Fenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345" /> + <location filename="../UI/UserInterface.py" line="2337" /> <source>Ctrl+Alt+Shift+L</source> <translation>Ctrl+Alt+Shift+L</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348" /> + <location filename="../UI/UserInterface.py" line="2340" /> <source>Switch the input focus to the Find File window.</source> <translation>Schalte den Eingabefokus auf das 'Datei Suchen' Fenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2350" /> + <location filename="../UI/UserInterface.py" line="2342" /> <source><b>Find File</b><p>This switches the input focus to the Find File window.</p></source> <translation><b>Datei Suchen</b><p>Dies schaltet den Eingabefokus auf das 'Datei Suchen' Fenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362" /> - <location filename="../UI/UserInterface.py" line="2361" /> + <location filename="../UI/UserInterface.py" line="2354" /> + <location filename="../UI/UserInterface.py" line="2353" /> <source>VCS Status List</source> <translation>VCS Statusliste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2363" /> + <location filename="../UI/UserInterface.py" line="2355" /> <source>Alt+Shift+V</source> <translation>Alt+Shift+V</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366" /> + <location filename="../UI/UserInterface.py" line="2358" /> <source>Switch the input focus to the VCS Status List window.</source> <translation>Schalte den Eingabefokus auf die VCS Statusliste um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368" /> + <location filename="../UI/UserInterface.py" line="2360" /> <source><b>VCS Status List</b><p>This switches the input focus to the VCS Status List window.</p></source> <translation><b>VCS Statusliste</b><p>Dies schaltet den Eingabefokus auf die VCS Statusliste um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2381" /> + <location filename="../UI/UserInterface.py" line="2373" /> <source>Alt+Shift+H</source> <translation>Alt+Shift+H</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384" /> + <location filename="../UI/UserInterface.py" line="2376" /> <source>Switch the input focus to the embedded Help Viewer window.</source> <translation>Schalte den Eingabefokus auf die integrierte Hilfeanzeige.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386" /> + <location filename="../UI/UserInterface.py" line="2378" /> <source><b>Help Viewer</b><p>This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation><b>Hilfeanzeiger</b><p>Dies schaltet den Eingabefokus auf die integrierte Hilfeanzeige. Sie zeigt HTML Hilfedateien und Hilfedateien von Qt-Hilfesammlungen an.</p><p>Falls sie mit einem selektierten Wort aufgerufen wird, so wird diese Wort in der Qt-Hilfesammlung gesucht.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2399" /> + <location filename="../UI/UserInterface.py" line="2391" /> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2401" /> + <location filename="../UI/UserInterface.py" line="2393" /> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2402" /> + <location filename="../UI/UserInterface.py" line="2394" /> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404" /> + <location filename="../UI/UserInterface.py" line="2396" /> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2405" /> + <location filename="../UI/UserInterface.py" line="2397" /> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2417" /> + <location filename="../UI/UserInterface.py" line="2409" /> <source>Helpviewer</source> <translation>Hilfe</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419" /> + <location filename="../UI/UserInterface.py" line="2411" /> <source>&Helpviewer...</source> <translation>&Hilfe...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2420" /> + <location filename="../UI/UserInterface.py" line="2412" /> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2422" /> + <location filename="../UI/UserInterface.py" line="2414" /> <source>Open the helpviewer window</source> <translation>Öffnet das Hilfe-Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2424" /> + <location filename="../UI/UserInterface.py" line="2416" /> <source><b>Helpviewer</b><p>Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation><b>Hilfe-Fenster</b><p>Zeige den eric Web Browser an. Dieses Fenster zeigt Hilfedateien im HTML-Format und Qt-Hilfesammlungen an. In ihm kann über Hyperlinks navigiert, Lesezeichen gesetzt und neben anderen Funktionen die dargestellte Seite ausgedruckt werden. Er kann auch zum Surfen im Internet benutzt werden.</p><p>Wenn es mit einem selektierten Wort aufgerufen wird, so wird dieses Wort in der Qt-Hilfesammlung gesucht.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2443" /> + <location filename="../UI/UserInterface.py" line="2435" /> <source>Show Versions</source> <translation>Zeige Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2444" /> + <location filename="../UI/UserInterface.py" line="2436" /> <source>Show &Versions</source> <translation>Zeige &Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446" /> + <location filename="../UI/UserInterface.py" line="2438" /> <source>Display version information</source> <translation>Zeigt Versionsinformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2448" /> + <location filename="../UI/UserInterface.py" line="2440" /> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Zeige Versionen</b><p>Zeigt Versionsinformationen an.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2458" /> - <location filename="../UI/UserInterface.py" line="2456" /> - <source>Check for Updates</source> - <translation>Auf Aktualisierungen prüfen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2457" /> - <source>Check for &Updates...</source> - <translation>Auf &Aktualisierungen prüfen...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2459" /> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric.</p></source> - <translation><b>Auf Aktualisierungen prüfen...</b> -<p>Dies prüft im Internet auf Updates von eric.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2467" /> - <source>Show downloadable versions</source> - <translation>Zeige verfügbare Versionen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2468" /> - <source>Show &downloadable versions...</source> - <translation>&Zeige verfügbare Versionen...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2471" /> - <source>Show the versions available for download</source> - <translation>Zeige die verfügbaren eric-Versionen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2472" /> - <source><b>Show downloadable versions...</b><p>Shows the eric versions available for download from the internet.</p></source> - <translation><b>Zeige verfügbare Versionen...</b><p>Zeigt die eric Versionen, die vom Internet heruntergeladen werden können.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2485" /> - <location filename="../UI/UserInterface.py" line="2482" /> + <location filename="../UI/UserInterface.py" line="2451" /> + <location filename="../UI/UserInterface.py" line="2448" /> <source>Show Error Log</source> <translation>Zeige Fehlerbericht</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2483" /> + <location filename="../UI/UserInterface.py" line="2449" /> <source>Show Error &Log...</source> <translation>Zeige Fehler&bericht...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2452" /> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation><b>Zeige Fehlerbericht...</b><p>Dies öffnet einen Dialog zur Anzeige des aktuellsten Fehlerberichtes.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2460" /> + <source>Show Install Info</source> + <translation>Installationsinformation</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2461" /> + <source>Show Install &Info...</source> + <translation>&Installationsinformation...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2463" /> + <source>Show Installation Information</source> + <translation>Installationsinformation</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2465" /> + <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> + <translation><b>Installationsinformation</b><p>Öffnet einen Dialog zur Anzeige von Informationen über den Installationsprozess.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4083" /> + <location filename="../UI/UserInterface.py" line="2474" /> + <source>Report Bug</source> + <translation>Fehler berichten</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2475" /> + <source>Report &Bug...</source> + <translation>&Fehler berichten...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2477" /> + <source>Report a bug</source> + <translation>Einen Fehler berichten</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2478" /> + <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <translation><b>Fehler berichten...</b><p>Öffnet einen Dialog zum Senden eines Fehlerberichtes.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2486" /> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation><b>Zeige Fehlerbericht...</b><p>Dies öffnet einen Dialog zur Anzeige des aktuellsten Fehlerberichtes.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2494" /> - <source>Show Install Info</source> - <translation>Installationsinformation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2495" /> - <source>Show Install &Info...</source> - <translation>&Installationsinformation...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2497" /> - <source>Show Installation Information</source> - <translation>Installationsinformation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2499" /> - <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> - <translation><b>Installationsinformation</b><p>Öffnet einen Dialog zur Anzeige von Informationen über den Installationsprozess.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4120" /> - <location filename="../UI/UserInterface.py" line="2508" /> - <source>Report Bug</source> - <translation>Fehler berichten</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2509" /> - <source>Report &Bug...</source> - <translation>&Fehler berichten...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2511" /> - <source>Report a bug</source> - <translation>Einen Fehler berichten</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512" /> - <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> - <translation><b>Fehler berichten...</b><p>Öffnet einen Dialog zum Senden eines Fehlerberichtes.</p></translation> + <source>Request Feature</source> + <translation>Neue Funktion anfragen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2487" /> + <source>Request &Feature...</source> + <translation>Neue &Funktion anfragen...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2489" /> + <source>Send a feature request</source> + <translation>Sende eine Anfrage für eine neue Funktion</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2491" /> + <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> + <translation><b>Neue Funktion anfragen...</b><p>Öffnet einen Dialog, um eine Anfrage für eine neue Funktion zu senden.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606" /> + <location filename="../UI/UserInterface.py" line="3583" /> + <location filename="../UI/UserInterface.py" line="2501" /> + <source>Unittest</source> + <translation>Modultests</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2503" /> + <source>&Unittest...</source> + <translation>&Modultests...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2505" /> + <source>Start unittest dialog</source> + <translation>Starte den Modultest Dialog</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506" /> + <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <translation><b>Modultests</b><p>Führe Modultests durch. Der Dialog bietet die Möglichkeit eine Zusammenstellung von Modultests auszuwählen und auszuführen.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2515" /> + <source>Unittest Restart</source> + <translation>Modultest neu starten</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2517" /> + <source>&Restart Unittest...</source> + <translation>Modultest &neu starten...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2519" /> + <source>Restart last unittest</source> + <translation>Modultest neu starten</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2520" /> - <source>Request Feature</source> - <translation>Neue Funktion anfragen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2521" /> - <source>Request &Feature...</source> - <translation>Neue &Funktion anfragen...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2523" /> - <source>Send a feature request</source> - <translation>Sende eine Anfrage für eine neue Funktion</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2525" /> - <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> - <translation><b>Neue Funktion anfragen...</b><p>Öffnet einen Dialog, um eine Anfrage für eine neue Funktion zu senden.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3643" /> - <location filename="../UI/UserInterface.py" line="3620" /> + <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> + <translation><b>Modultest neu starten</b><p>Den letzten durchgeführten Modultest neu starten.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2529" /> + <source>Unittest Rerun Failed</source> + <translation>Fehlerhafte Modultests wiederholen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2531" /> + <source>Rerun Failed Tests...</source> + <translation>Fehlerhafte Tests wiederholen...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2533" /> + <source>Rerun failed tests of the last run</source> + <translation>Fehlerhafte Tests des letzten Laufes wiederholen</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2535" /> - <source>Unittest</source> - <translation>Modultests</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2537" /> - <source>&Unittest...</source> - <translation>&Modultests...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2539" /> - <source>Start unittest dialog</source> - <translation>Starte den Modultest Dialog</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2540" /> - <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> - <translation><b>Modultests</b><p>Führe Modultests durch. Der Dialog bietet die Möglichkeit eine Zusammenstellung von Modultests auszuwählen und auszuführen.</p></translation> + <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> + <translation><b>Fehlerhafte Tests wiederholen</b><p>Alle Tests wiederholen, die während des letzten Modultestlaufes fehlgeschlagen sind.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2545" /> + <source>Unittest Script</source> + <translation>Modultest (Skript)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2547" /> + <source>Unittest &Script...</source> + <translation>Modultest (&Skript)...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2549" /> - <source>Unittest Restart</source> - <translation>Modultest neu starten</translation> + <source>Run unittest with current script</source> + <translation>Modultest für aktuelles Skript ausführen</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2551" /> - <source>&Restart Unittest...</source> - <translation>Modultest &neu starten...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2553" /> - <source>Restart last unittest</source> - <translation>Modultest neu starten</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2554" /> - <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> - <translation><b>Modultest neu starten</b><p>Den letzten durchgeführten Modultest neu starten.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2563" /> - <source>Unittest Rerun Failed</source> - <translation>Fehlerhafte Modultests wiederholen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2565" /> - <source>Rerun Failed Tests...</source> - <translation>Fehlerhafte Tests wiederholen...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2567" /> - <source>Rerun failed tests of the last run</source> - <translation>Fehlerhafte Tests des letzten Laufes wiederholen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2569" /> - <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> - <translation><b>Fehlerhafte Tests wiederholen</b><p>Alle Tests wiederholen, die während des letzten Modultestlaufes fehlgeschlagen sind.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2579" /> - <source>Unittest Script</source> - <translation>Modultest (Skript)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2581" /> - <source>Unittest &Script...</source> - <translation>Modultest (&Skript)...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2583" /> - <source>Run unittest with current script</source> - <translation>Modultest für aktuelles Skript ausführen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2585" /> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Modultest (Skript)</b><p>Modultest für aktuelles Skript ausführen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2594" /> + <location filename="../UI/UserInterface.py" line="2560" /> <source>Unittest Project</source> <translation>Modultest (Projekt)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596" /> + <location filename="../UI/UserInterface.py" line="2562" /> <source>Unittest &Project...</source> <translation>Modultest (&Projekt)...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2598" /> + <location filename="../UI/UserInterface.py" line="2564" /> <source>Run unittest with current project</source> <translation>Modultest für aktuellesProjekt ausführen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600" /> + <location filename="../UI/UserInterface.py" line="2566" /> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Modultest (Projekt)</b><p>Modultest für aktuelles Projekt ausführen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2621" /> + <location filename="../UI/UserInterface.py" line="2587" /> <source>Qt-Designer</source> <translation>Qt Designer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2623" /> + <location filename="../UI/UserInterface.py" line="2589" /> <source>Qt-&Designer...</source> <translation>Qt &Designer...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2625" /> + <location filename="../UI/UserInterface.py" line="2591" /> <source>Start Qt-Designer</source> <translation>Starte Qt Designer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2626" /> + <location filename="../UI/UserInterface.py" line="2592" /> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation><b>Qt Designer</b><p>Starte Qt Designer.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2613" /> + <source>Qt-Linguist</source> + <translation>Qt Linguist</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2615" /> + <source>Qt-&Linguist...</source> + <translation>Qt &Linguist...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2617" /> + <source>Start Qt-Linguist</source> + <translation>Starte Qt Linguist</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2618" /> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation><b>Qt Linguist</b><p>Starte Qt Linguist (Übersetzungsprogramm).</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2628" /> + <source>UI Previewer</source> + <translation>UI-Vorschau</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2630" /> + <source>&UI Previewer...</source> + <translation>&UI-Vorschau...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2632" /> + <source>Start the UI Previewer</source> + <translation>Starte die UI-Vorschau</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2633" /> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation><b>UI-Vorschau</b><p>Starte die UI-Vorschau.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2641" /> + <source>Translations Previewer</source> + <translation>Übersetzungsvorschau</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2643" /> + <source>&Translations Previewer...</source> + <translation>&Übersetzungsvorschau...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2645" /> + <source>Start the Translations Previewer</source> + <translation>Die Übersetzungsvorschau starten</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2647" /> - <source>Qt-Linguist</source> - <translation>Qt Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2649" /> - <source>Qt-&Linguist...</source> - <translation>Qt &Linguist...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2651" /> - <source>Start Qt-Linguist</source> - <translation>Starte Qt Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2652" /> - <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> - <translation><b>Qt Linguist</b><p>Starte Qt Linguist (Übersetzungsprogramm).</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2662" /> - <source>UI Previewer</source> - <translation>UI-Vorschau</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2664" /> - <source>&UI Previewer...</source> - <translation>&UI-Vorschau...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2666" /> - <source>Start the UI Previewer</source> - <translation>Starte die UI-Vorschau</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2667" /> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation><b>UI-Vorschau</b><p>Starte die UI-Vorschau.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2675" /> - <source>Translations Previewer</source> - <translation>Übersetzungsvorschau</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2677" /> - <source>&Translations Previewer...</source> - <translation>&Übersetzungsvorschau...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2679" /> - <source>Start the Translations Previewer</source> - <translation>Die Übersetzungsvorschau starten</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2681" /> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Übersetzungsvorschau</b><p>Dies startet das Programm zur Vorschau von Übersetzungen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2689" /> + <location filename="../UI/UserInterface.py" line="2655" /> <source>Compare Files</source> <translation>Dateien vergleichen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691" /> + <location filename="../UI/UserInterface.py" line="2657" /> <source>&Compare Files...</source> <translation>Dateien &vergleichen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2706" /> - <location filename="../UI/UserInterface.py" line="2693" /> + <location filename="../UI/UserInterface.py" line="2672" /> + <location filename="../UI/UserInterface.py" line="2659" /> <source>Compare two files</source> <translation>Zwei Dateien vergleichen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2694" /> + <location filename="../UI/UserInterface.py" line="2660" /> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Dateien vergleichen</b><p>Öffnet einen Dialog zum Vergleich zweier Dateien.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2702" /> + <location filename="../UI/UserInterface.py" line="2668" /> <source>Compare Files side by side</source> <translation>Dateien Seite an Seite vergleichen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2704" /> + <location filename="../UI/UserInterface.py" line="2670" /> <source>Compare &Files side by side...</source> <translation>Dateien &Seite an Seite vergleichen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2707" /> + <location filename="../UI/UserInterface.py" line="2673" /> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Dateien Seite an Seite vergleichen</b><p>Öffnet einen Dialog zum Vergleich zweier Dateien und zur Anzeige des Ergebnisse Seite an Seite.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2716" /> + <location filename="../UI/UserInterface.py" line="2682" /> <source>SQL Browser</source> <translation>SQL-Browser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2718" /> + <location filename="../UI/UserInterface.py" line="2684" /> <source>SQL &Browser...</source> <translation>SQL-&Browser...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2720" /> + <location filename="../UI/UserInterface.py" line="2686" /> <source>Browse a SQL database</source> <translation>Erforsche eine SQL-Datenbank</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2721" /> + <location filename="../UI/UserInterface.py" line="2687" /> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL-Browser</b><p>Erforsche eine SQL-Datenbank.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2733" /> - <location filename="../UI/UserInterface.py" line="2729" /> + <location filename="../UI/UserInterface.py" line="2699" /> + <location filename="../UI/UserInterface.py" line="2695" /> <source>Mini Editor</source> <translation>Mini-Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2731" /> + <location filename="../UI/UserInterface.py" line="2697" /> <source>Mini &Editor...</source> <translation>Mini-&Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2734" /> + <location filename="../UI/UserInterface.py" line="2700" /> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini-Editor</b><p>Öffnet einen Dialog mit einem vereinfachten Editor.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2742" /> + <location filename="../UI/UserInterface.py" line="2708" /> <source>Hex Editor</source> <translation>Hex-Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2744" /> + <location filename="../UI/UserInterface.py" line="2710" /> <source>&Hex Editor...</source> <translation>&Hex Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2746" /> + <location filename="../UI/UserInterface.py" line="2712" /> <source>Start the eric Hex Editor</source> <translation>Starte den eric Hex-Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2748" /> + <location filename="../UI/UserInterface.py" line="2714" /> <source><b>Hex Editor</b><p>Starts the eric Hex Editor for viewing or editing binary files.</p></source> <translation><b>Hex-Editor</b><p>Startet den eric Hex-Editor zum Ansehen oder Bearbeiten von Binärdateien.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2723" /> + <source>eric Web Browser</source> + <translation>eric Web Browser</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2725" /> + <source>eric &Web Browser...</source> + <translation>eric &Web Browser...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2727" /> + <source>Start the eric Web Browser</source> + <translation>Startet den eric Web Browser</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2729" /> + <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> + <translation><b>eric Web Browser</b><p>Durchforste das Internet mit dem eric Web Browser.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2737" /> + <source>Icon Editor</source> + <translation>Icon-Editor</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2739" /> + <source>&Icon Editor...</source> + <translation>&Icon-Editor...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2741" /> + <source>Start the eric Icon Editor</source> + <translation>Starte den eric Icon-Editor</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2743" /> + <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> + <translation><b>Icon-Editor</b><p>Startet den eric Icon-Editor zum Editieren einfacher Icons.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2751" /> + <source>Snapshot</source> + <translation>Bildschirmfoto</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2753" /> + <source>&Snapshot...</source> + <translation>&Bildschirmfoto...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2755" /> + <source>Take snapshots of a screen region</source> + <translation>Bildschirmfoto aufnehmen</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757" /> - <source>eric Web Browser</source> - <translation>eric Web Browser</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2759" /> - <source>eric &Web Browser...</source> - <translation>eric &Web Browser...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2761" /> - <source>Start the eric Web Browser</source> - <translation>Startet den eric Web Browser</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2763" /> - <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> - <translation><b>eric Web Browser</b><p>Durchforste das Internet mit dem eric Web Browser.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2771" /> - <source>Icon Editor</source> - <translation>Icon-Editor</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2773" /> - <source>&Icon Editor...</source> - <translation>&Icon-Editor...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2775" /> - <source>Start the eric Icon Editor</source> - <translation>Starte den eric Icon-Editor</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2777" /> - <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> - <translation><b>Icon-Editor</b><p>Startet den eric Icon-Editor zum Editieren einfacher Icons.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2785" /> - <source>Snapshot</source> - <translation>Bildschirmfoto</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2787" /> - <source>&Snapshot...</source> - <translation>&Bildschirmfoto...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2789" /> - <source>Take snapshots of a screen region</source> - <translation>Bildschirmfoto aufnehmen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2791" /> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation><b>Bildschirmfoto</b><p>Dies öffnet einen Dialog, um ein Bildschirmfoto aufzunehmen.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2766" /> + <source>Preferences</source> + <translation>Einstellungen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768" /> + <source>&Preferences...</source> + <translation>&Einstellungen...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2770" /> + <source>Set the prefered configuration</source> + <translation>Konfiguriert die Einstellungen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2772" /> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation><b>Einstellungen</b><p>Konfiguriert die einstellbaren Parameter der Applikation nach Ihren Wünschen.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782" /> + <source>Export Preferences</source> + <translation>Einstellungen exportieren</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2784" /> + <source>E&xport Preferences...</source> + <translation>Einstellungen e&xportieren...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2786" /> + <source>Export the current configuration</source> + <translation>Exportiert die aktuelle Konfiguration</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2788" /> + <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <translation><b>Einstellungen exportieren</b><p>Exportiert die aktuelle Konfiguration in eine Datei.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2796" /> + <source>Import Preferences</source> + <translation>Einstellungen importieren</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2798" /> + <source>I&mport Preferences...</source> + <translation>Einstellungen i&mportieren...</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2800" /> - <source>Preferences</source> - <translation>Einstellungen</translation> + <source>Import a previously exported configuration</source> + <translation>Importiert eine zuvor exportierte Konfiguration</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2802" /> - <source>&Preferences...</source> - <translation>&Einstellungen...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2804" /> - <source>Set the prefered configuration</source> - <translation>Konfiguriert die Einstellungen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2806" /> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> - <translation><b>Einstellungen</b><p>Konfiguriert die einstellbaren Parameter der Applikation nach Ihren Wünschen.</p></translation> + <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> + <translation><b>Einstellungen importieren</b><p>Importiert eine zuvor exportierte Konfiguration.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2810" /> + <source>Export Theme</source> + <translation>Schema exportieren</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2812" /> + <source>Export Theme...</source> + <translation>Schema exportieren...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2814" /> + <source>Export the current theme</source> + <translation>Exportiert das aktuelle Schema</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2816" /> - <source>Export Preferences</source> - <translation>Einstellungen exportieren</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2818" /> - <source>E&xport Preferences...</source> - <translation>Einstellungen e&xportieren...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2820" /> - <source>Export the current configuration</source> - <translation>Exportiert die aktuelle Konfiguration</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2822" /> - <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> - <translation><b>Einstellungen exportieren</b><p>Exportiert die aktuelle Konfiguration in eine Datei.</p></translation> + <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> + <translation><b>Schema exportieren</b><p>Exportiert das aktuelle Schema in eine Datei.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2824" /> + <source>Import Theme</source> + <translation>Schema importieren</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2826" /> + <source>Import Theme...</source> + <translation>Schema importieren...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2828" /> + <source>Import a previously exported theme</source> + <translation>Importiert ein vorher exportiertes Schema</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2830" /> - <source>Import Preferences</source> - <translation>Einstellungen importieren</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2832" /> - <source>I&mport Preferences...</source> - <translation>Einstellungen i&mportieren...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2834" /> - <source>Import a previously exported configuration</source> - <translation>Importiert eine zuvor exportierte Konfiguration</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2836" /> - <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> - <translation><b>Einstellungen importieren</b><p>Importiert eine zuvor exportierte Konfiguration.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2844" /> - <source>Export Theme</source> - <translation>Schema exportieren</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2846" /> - <source>Export Theme...</source> - <translation>Schema exportieren...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2848" /> - <source>Export the current theme</source> - <translation>Exportiert das aktuelle Schema</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2850" /> - <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> - <translation><b>Schema exportieren</b><p>Exportiert das aktuelle Schema in eine Datei.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2858" /> - <source>Import Theme</source> - <translation>Schema importieren</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2860" /> - <source>Import Theme...</source> - <translation>Schema importieren...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2862" /> - <source>Import a previously exported theme</source> - <translation>Importiert ein vorher exportiertes Schema</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2864" /> <source><b>Import Theme</b><p>Import a previously exported theme.</p></source> <translation><b>Schema importieren</b><p>Importiert ein vorher exportiertes Schema.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2872" /> + <location filename="../UI/UserInterface.py" line="2838" /> <source>Reload APIs</source> <translation>APIs neu laden</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2839" /> + <source>Reload &APIs</source> + <translation>APIs &neu laden</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2841" /> + <source>Reload the API information</source> + <translation>Die API-Informationen neu laden</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2843" /> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation><b>APIs neu laden</b><p>Lädt die API-Informationen neu.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2855" /> + <location filename="../UI/UserInterface.py" line="2851" /> + <source>Show external tools</source> + <translation>Zeige externe Werkzeuge</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2853" /> + <source>Show external &tools</source> + <translation>Zeige externe &Werkzeuge</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857" /> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <translation><b>Zeige externe Werkzeuge</b><p>Öffnet einen Dialog, der die Pfade und Versionen der von eric genutzten externen Werkzeuge anzeigt.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2867" /> + <source>View Profiles</source> + <translation>Ansichtenprofile</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2869" /> + <source>&View Profiles...</source> + <translation>&Ansichtenprofile...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2871" /> + <source>Configure view profiles</source> + <translation>Ansichtenprofile konfigurieren</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2873" /> - <source>Reload &APIs</source> - <translation>APIs &neu laden</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2875" /> - <source>Reload the API information</source> - <translation>Die API-Informationen neu laden</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2877" /> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> - <translation><b>APIs neu laden</b><p>Lädt die API-Informationen neu.</p></translation> + <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <translation><b>Ansichtenprofile</b><p>Ansichtenprofile konfigurieren. Mit diesem Dialog kann die Sichtbarkeit der verschiedenen Fenster für die vorbestimmten Ansichtenprofile eingestellt werden.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2884" /> + <source>Toolbars</source> + <translation>Werkzeugleisten</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2886" /> + <source>Tool&bars...</source> + <translation>Werkzeug&leisten...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2888" /> + <source>Configure toolbars</source> + <translation>Werkzeugleisten einrichten</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2889" /> - <location filename="../UI/UserInterface.py" line="2885" /> - <source>Show external tools</source> - <translation>Zeige externe Werkzeuge</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887" /> - <source>Show external &tools</source> - <translation>Zeige externe &Werkzeuge</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2891" /> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> - <translation><b>Zeige externe Werkzeuge</b><p>Öffnet einen Dialog, der die Pfade und Versionen der von eric genutzten externen Werkzeuge anzeigt.</p></translation> + <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> + <translation><b>Werkzeugleisten</b><p>Werkzeugleisten konfigurieren. Mit diesem Dialog können die auf den Werkzeugleisten gezeigten Aktionen geändert und neue Werkzeugleisten definiert werden.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2899" /> + <source>Keyboard Shortcuts</source> + <translation>Tastaturkurzbefehle</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2901" /> - <source>View Profiles</source> - <translation>Ansichtenprofile</translation> + <source>Keyboard &Shortcuts...</source> + <translation>&Tastaturkurzbefehle...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2903" /> - <source>&View Profiles...</source> - <translation>&Ansichtenprofile...</translation> + <source>Set the keyboard shortcuts</source> + <translation>Setze die Tastaturkurzbefehle</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2905" /> - <source>Configure view profiles</source> - <translation>Ansichtenprofile konfigurieren</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2907" /> - <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> - <translation><b>Ansichtenprofile</b><p>Ansichtenprofile konfigurieren. Mit diesem Dialog kann die Sichtbarkeit der verschiedenen Fenster für die vorbestimmten Ansichtenprofile eingestellt werden.</p></translation> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation><b>Tastaturkurzbefehle</b><p>Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756" /> + <location filename="../UI/UserInterface.py" line="6738" /> + <location filename="../UI/UserInterface.py" line="2914" /> + <source>Export Keyboard Shortcuts</source> + <translation>Tastaturkurzbefehle exportieren</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2916" /> + <source>&Export Keyboard Shortcuts...</source> + <translation>Tastaturkurzbefehle &exportieren...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2918" /> - <source>Toolbars</source> - <translation>Werkzeugleisten</translation> + <source>Export the keyboard shortcuts</source> + <translation>Exportiert die Tastaturkurzbefehle</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2920" /> - <source>Tool&bars...</source> - <translation>Werkzeug&leisten...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2922" /> - <source>Configure toolbars</source> - <translation>Werkzeugleisten einrichten</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2923" /> - <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> - <translation><b>Werkzeugleisten</b><p>Werkzeugleisten konfigurieren. Mit diesem Dialog können die auf den Werkzeugleisten gezeigten Aktionen geändert und neue Werkzeugleisten definiert werden.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2933" /> - <source>Keyboard Shortcuts</source> - <translation>Tastaturkurzbefehle</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2935" /> - <source>Keyboard &Shortcuts...</source> - <translation>&Tastaturkurzbefehle...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2937" /> - <source>Set the keyboard shortcuts</source> - <translation>Setze die Tastaturkurzbefehle</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2939" /> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation><b>Tastaturkurzbefehle</b><p>Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6698" /> - <location filename="../UI/UserInterface.py" line="6680" /> - <location filename="../UI/UserInterface.py" line="2948" /> - <source>Export Keyboard Shortcuts</source> - <translation>Tastaturkurzbefehle exportieren</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2950" /> - <source>&Export Keyboard Shortcuts...</source> - <translation>Tastaturkurzbefehle &exportieren...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2952" /> - <source>Export the keyboard shortcuts</source> - <translation>Exportiert die Tastaturkurzbefehle</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2954" /> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Tastaturkurzbefehle exportieren</b><p>Exportiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6715" /> - <location filename="../UI/UserInterface.py" line="2962" /> + <location filename="../UI/UserInterface.py" line="6773" /> + <location filename="../UI/UserInterface.py" line="2928" /> <source>Import Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle importieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2964" /> + <location filename="../UI/UserInterface.py" line="2930" /> <source>&Import Keyboard Shortcuts...</source> <translation>Tastaturkurzbefehle &importieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2966" /> + <location filename="../UI/UserInterface.py" line="2932" /> <source>Import the keyboard shortcuts</source> <translation>Importiert die Tastaturkurzbefehle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2968" /> + <location filename="../UI/UserInterface.py" line="2934" /> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Tastaturkurzbefehle importieren</b><p>Importiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2977" /> + <location filename="../UI/UserInterface.py" line="2943" /> <source>Manage SSL Certificates</source> <translation>SSL-Zertifikate verwalten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2979" /> + <location filename="../UI/UserInterface.py" line="2945" /> <source>Manage SSL Certificates...</source> <translation>SSL-Zertifikate verwalten...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2947" /> + <source>Manage the saved SSL certificates</source> + <translation>Verwalten der gespeicherten SSL-Zertifikate</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2949" /> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation><b>SSL-Zertifikate verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter SSL-Zertifikate.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2959" /> + <source>Edit Message Filters</source> + <translation>Meldungsfilter bearbeiten</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2961" /> + <source>Edit Message Filters...</source> + <translation>Meldungsfilter bearbeiten...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2963" /> + <source>Edit the message filters used to suppress unwanted messages</source> + <translation>Bearbeite die Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2965" /> + <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> + <translation><b>Meldungsfilter bearbeiten</b><p>Dies öffnet einen Dialog zur Bearbeitung der Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2981" /> - <source>Manage the saved SSL certificates</source> - <translation>Verwalten der gespeicherten SSL-Zertifikate</translation> + <location filename="../UI/UserInterface.py" line="2978" /> + <location filename="../UI/UserInterface.py" line="2976" /> + <source>Clear private data</source> + <translation>Private Daten löschen</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2983" /> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation><b>SSL-Zertifikate verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter SSL-Zertifikate.</p></translation> - </message> - <message> + <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> + <translation><b>Private Daten löschen</b><p>Löscht private Daten wie die Listen der zuletzt geöffneten Dateien, Projekte oder Mehrfachprojekte.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2994" /> <location filename="../UI/UserInterface.py" line="2993" /> - <source>Edit Message Filters</source> - <translation>Meldungsfilter bearbeiten</translation> + <source>Activate current editor</source> + <translation>Aktiviere aktuellen Editor</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2995" /> - <source>Edit Message Filters...</source> - <translation>Meldungsfilter bearbeiten...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2997" /> - <source>Edit the message filters used to suppress unwanted messages</source> - <translation>Bearbeite die Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2999" /> - <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> - <translation><b>Meldungsfilter bearbeiten</b><p>Dies öffnet einen Dialog zur Bearbeitung der Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3015" /> - <location filename="../UI/UserInterface.py" line="3012" /> - <location filename="../UI/UserInterface.py" line="3010" /> - <source>Clear private data</source> - <translation>Private Daten löschen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3017" /> - <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> - <translation><b>Private Daten löschen</b><p>Löscht private Daten wie die Listen der zuletzt geöffneten Dateien, Projekte oder Mehrfachprojekte.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3028" /> - <location filename="../UI/UserInterface.py" line="3027" /> - <source>Activate current editor</source> - <translation>Aktiviere aktuellen Editor</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3029" /> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3038" /> - <location filename="../UI/UserInterface.py" line="3037" /> + <location filename="../UI/UserInterface.py" line="3004" /> + <location filename="../UI/UserInterface.py" line="3003" /> <source>Show next</source> <translation>Zeige nächste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3039" /> + <location filename="../UI/UserInterface.py" line="3005" /> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="3013" /> + <location filename="../UI/UserInterface.py" line="3012" /> + <source>Show previous</source> + <translation>Zeige vorherige</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3014" /> + <source>Shift+Ctrl+Alt+Tab</source> + <translation>Shift+Ctrl+Alt+Tab</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3022" /> + <location filename="../UI/UserInterface.py" line="3021" /> + <source>Switch between tabs</source> + <translation>Zwischen Tabs umschalten</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3023" /> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3030" /> + <source>Plugin Infos</source> + <translation>Plugininformationen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3032" /> + <source>&Plugin Infos...</source> + <translation>&Plugininformationen...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3033" /> + <source>Show Plugin Infos</source> + <translation>Zeigt Plugininformationen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3034" /> + <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="3047" /> - <location filename="../UI/UserInterface.py" line="3046" /> - <source>Show previous</source> - <translation>Zeige vorherige</translation> + <location filename="../UI/UserInterface.py" line="3043" /> + <source>Install Plugins</source> + <translation>Plugins installieren</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3045" /> + <source>&Install Plugins...</source> + <translation>Plugins &installieren...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3048" /> - <source>Shift+Ctrl+Alt+Tab</source> - <translation>Shift+Ctrl+Alt+Tab</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3056" /> - <location filename="../UI/UserInterface.py" line="3055" /> - <source>Switch between tabs</source> - <translation>Zwischen Tabs umschalten</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3057" /> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3064" /> - <source>Plugin Infos</source> - <translation>Plugininformationen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3066" /> - <source>&Plugin Infos...</source> - <translation>&Plugininformationen...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3067" /> - <source>Show Plugin Infos</source> - <translation>Zeigt Plugininformationen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3068" /> - <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="3081" /> - <location filename="../UI/UserInterface.py" line="3077" /> - <source>Install Plugins</source> - <translation>Plugins installieren</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3079" /> - <source>&Install Plugins...</source> - <translation>Plugins &installieren...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3082" /> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Plugins installieren...</b><p>Dies öffnet einen Dialog zur Installation oder Update von Plugins.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3094" /> - <location filename="../UI/UserInterface.py" line="3090" /> + <location filename="../UI/UserInterface.py" line="3060" /> + <location filename="../UI/UserInterface.py" line="3056" /> <source>Uninstall Plugin</source> <translation>Plugin deinstallieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3092" /> + <location filename="../UI/UserInterface.py" line="3058" /> <source>&Uninstall Plugin...</source> <translation>Plugin &deinstallieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3095" /> + <location filename="../UI/UserInterface.py" line="3061" /> <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="3105" /> + <location filename="../UI/UserInterface.py" line="3071" /> <source>Plugin &Repository...</source> <translation>Plugin-&Repository...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3107" /> + <location filename="../UI/UserInterface.py" line="3073" /> <source>Show Plugins available for download</source> <translation>Zeige zum Download verfügbare Plugins an</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3109" /> + <location filename="../UI/UserInterface.py" line="3075" /> <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="3101" /> + <location filename="../UI/UserInterface.py" line="3100" /> + <source>Qt5 Documentation</source> + <translation>Qt5 Dokumentation</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3103" /> + <source>Open Qt5 Documentation</source> + <translation>Öffne die Qt5 Dokumentation</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3104" /> + <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation><b>Qt5-Dokumentation</b><p>Zeige die Qt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3116" /> + <location filename="../UI/UserInterface.py" line="3115" /> + <source>Qt6 Documentation</source> + <translation>Qt6 Dokumentation</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3118" /> + <source>Open Qt6 Documentation</source> + <translation>Öffne die Qt6 Dokumentation</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3119" /> + <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation><b>Qt6-Dokumentation</b><p>Zeige die Qt6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3131" /> + <location filename="../UI/UserInterface.py" line="3130" /> + <source>PyQt5 Documentation</source> + <translation>PyQt5-Dokumentation</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3133" /> + <source>Open PyQt5 Documentation</source> + <translation>Öffne die PyQt5-Dokumentation</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="3135" /> - <location filename="../UI/UserInterface.py" line="3134" /> - <source>Qt5 Documentation</source> - <translation>Qt5 Dokumentation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3137" /> - <source>Open Qt5 Documentation</source> - <translation>Öffne die Qt5 Dokumentation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3138" /> - <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation><b>Qt5-Dokumentation</b><p>Zeige die Qt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.</p></translation> + <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation><b>PyQt5-Dokumentation</b><p>Zeige die PyQt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3148" /> + <location filename="../UI/UserInterface.py" line="3147" /> + <source>PyQt6 Documentation</source> + <translation>PyQt6-Dokumentation</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3150" /> - <location filename="../UI/UserInterface.py" line="3149" /> - <source>Qt6 Documentation</source> - <translation>Qt6 Dokumentation</translation> + <source>Open PyQt6 Documentation</source> + <translation>Öffne die PyQt6-Dokumentation</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3152" /> - <source>Open Qt6 Documentation</source> - <translation>Öffne die Qt6 Dokumentation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3153" /> - <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation><b>Qt6-Dokumentation</b><p>Zeige die Qt6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3165" /> - <location filename="../UI/UserInterface.py" line="3164" /> - <source>PyQt5 Documentation</source> - <translation>PyQt5-Dokumentation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3167" /> - <source>Open PyQt5 Documentation</source> - <translation>Öffne die PyQt5-Dokumentation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3169" /> - <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation><b>PyQt5-Dokumentation</b><p>Zeige die PyQt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3182" /> - <location filename="../UI/UserInterface.py" line="3181" /> - <source>PyQt6 Documentation</source> - <translation>PyQt6-Dokumentation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3184" /> - <source>Open PyQt6 Documentation</source> - <translation>Öffne die PyQt6-Dokumentation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3186" /> <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>PyQt6-Dokumentation</b><p>Zeige die PyQt6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3204" /> - <location filename="../UI/UserInterface.py" line="3203" /> + <location filename="../UI/UserInterface.py" line="3170" /> + <location filename="../UI/UserInterface.py" line="3169" /> <source>Python 3 Documentation</source> <translation>Python 3-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3206" /> + <location filename="../UI/UserInterface.py" line="3172" /> <source>Open Python 3 Documentation</source> <translation>Öffne die Python 3-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3208" /> + <location filename="../UI/UserInterface.py" line="3174" /> <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="3226" /> - <location filename="../UI/UserInterface.py" line="3225" /> + <location filename="../UI/UserInterface.py" line="3192" /> + <location filename="../UI/UserInterface.py" line="3191" /> <source>eric API Documentation</source> <translation>eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3228" /> + <location filename="../UI/UserInterface.py" line="3194" /> <source>Open eric API Documentation</source> <translation>Öffne die eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3230" /> + <location filename="../UI/UserInterface.py" line="3196" /> <source><b>eric API Documentation</b><p>Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric 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 eric Installationverzeichnis.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3247" /> - <location filename="../UI/UserInterface.py" line="3246" /> + <location filename="../UI/UserInterface.py" line="3213" /> + <location filename="../UI/UserInterface.py" line="3212" /> <source>PySide2 Documentation</source> <translation>PySide2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3249" /> + <location filename="../UI/UserInterface.py" line="3215" /> <source>Open PySide2 Documentation</source> <translation>Öffne die PySide2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3251" /> + <location filename="../UI/UserInterface.py" line="3217" /> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>PySide2-Dokumentation</b><p>Zeige die PySide2-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3267" /> - <location filename="../UI/UserInterface.py" line="3266" /> + <location filename="../UI/UserInterface.py" line="3233" /> + <location filename="../UI/UserInterface.py" line="3232" /> <source>PySide6 Documentation</source> <translation>PySide6-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3269" /> + <location filename="../UI/UserInterface.py" line="3235" /> <source>Open PySide6 Documentation</source> <translation>Öffne die PySide6-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3271" /> + <location filename="../UI/UserInterface.py" line="3237" /> <source><b>PySide6 Documentation</b><p>Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>PySide6-Dokumentation</b><p>Zeige die PySide6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3373" /> + <location filename="../UI/UserInterface.py" line="3339" /> <source>E&xtras</source> <translation>E&xtras</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3383" /> + <location filename="../UI/UserInterface.py" line="3349" /> <source>Wi&zards</source> <translation>&Assistenten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3402" /> + <location filename="../UI/UserInterface.py" line="3368" /> <source>P&lugins</source> <translation>Plugi&ns</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3412" /> + <location filename="../UI/UserInterface.py" line="3378" /> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3421" /> + <location filename="../UI/UserInterface.py" line="3387" /> <source>&Unittest</source> <translation>&Modultests</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3438" /> + <location filename="../UI/UserInterface.py" line="3404" /> <source>Select Tool Group</source> <translation>Werkzeuggruppe wählen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3449" /> + <location filename="../UI/UserInterface.py" line="3415" /> <source>Se&ttings</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482" /> + <location filename="../UI/UserInterface.py" line="3448" /> <source>&Window</source> <translation>&Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3491" /> + <location filename="../UI/UserInterface.py" line="3457" /> <source>&Windows</source> <translation>&Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3496" /> + <location filename="../UI/UserInterface.py" line="3462" /> <source>Central Park</source> <translation>Mittelbereich</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3500" /> + <location filename="../UI/UserInterface.py" line="3466" /> <source>Left Side</source> <translation>Linke Seite</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3517" /> + <location filename="../UI/UserInterface.py" line="3483" /> <source>Right Side</source> <translation>Rechte Seite</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3541" /> + <location filename="../UI/UserInterface.py" line="3507" /> <source>Bottom Side</source> <translation>Unterer Rand</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3549" /> + <location filename="../UI/UserInterface.py" line="3515" /> <source>Plug-ins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3556" /> + <location filename="../UI/UserInterface.py" line="3522" /> <source>&Toolbars</source> <translation>&Werkzeugleisten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3569" /> + <location filename="../UI/UserInterface.py" line="3535" /> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3642" /> - <location filename="../UI/UserInterface.py" line="3619" /> + <location filename="../UI/UserInterface.py" line="3605" /> + <location filename="../UI/UserInterface.py" line="3582" /> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3644" /> - <location filename="../UI/UserInterface.py" line="3623" /> + <location filename="../UI/UserInterface.py" line="3607" /> + <location filename="../UI/UserInterface.py" line="3586" /> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5541" /> - <location filename="../UI/UserInterface.py" line="3645" /> - <location filename="../UI/UserInterface.py" line="3624" /> + <location filename="../UI/UserInterface.py" line="5600" /> + <location filename="../UI/UserInterface.py" line="3608" /> + <location filename="../UI/UserInterface.py" line="3587" /> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3646" /> - <location filename="../UI/UserInterface.py" line="3625" /> + <location filename="../UI/UserInterface.py" line="3609" /> + <location filename="../UI/UserInterface.py" line="3588" /> <source>Profiles</source> <translation>Profile</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3647" /> - <location filename="../UI/UserInterface.py" line="3626" /> + <location filename="../UI/UserInterface.py" line="3610" /> + <location filename="../UI/UserInterface.py" line="3589" /> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811" /> + <location filename="../UI/UserInterface.py" line="3774" /> <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="3818" /> + <location filename="../UI/UserInterface.py" line="3781" /> <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="3825" /> + <location filename="../UI/UserInterface.py" line="3788" /> <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="3832" /> + <location filename="../UI/UserInterface.py" line="3795" /> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt an, ob die aktuelle Datei geschrieben werden kann.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3839" /> + <location filename="../UI/UserInterface.py" line="3802" /> <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="3846" /> + <location filename="../UI/UserInterface.py" line="3809" /> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Cursorposition des aktuellen Editors an.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3857" /> + <location filename="../UI/UserInterface.py" line="3820" /> <source><p>This part of the status bar allows zooming the current editor or shell.</p></source> <translation><p>Dieser Teil der Statusleiste erlaubt das Zoomen des aktuellen Editors oder der Shell.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3922" /> - <location filename="../UI/UserInterface.py" line="3882" /> + <location filename="../UI/UserInterface.py" line="3885" /> + <location filename="../UI/UserInterface.py" line="3845" /> <source>External Tools/{0}</source> <translation>Externe Werkzeuge/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4028" /> + <location filename="../UI/UserInterface.py" line="3991" /> <source><h2>Version Numbers</h2><table></source> <translation><h2>Versionsnummern</h2><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4082" /> + <location filename="../UI/UserInterface.py" line="4045" /> <source>Desktop</source> <translation>Arbeitsumgebung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4085" /> + <location filename="../UI/UserInterface.py" line="4048" /> <source>Session Type</source> <translation>Sitzungstyp</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7778" /> - <location filename="../UI/UserInterface.py" line="4087" /> + <location filename="../UI/UserInterface.py" line="4050" /> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4121" /> + <location filename="../UI/UserInterface.py" line="4084" /> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>E-Mail-Adresse oder Mailserver-Adresse sind leer. Bitte konfiguriere die E-Mail-Einstellungen im Einstellungsdialog.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4432" /> + <location filename="../UI/UserInterface.py" line="4395" /> <source>Restart application</source> <translation>Anwendung neu starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4433" /> + <location filename="../UI/UserInterface.py" line="4396" /> <source>The application needs to be restarted. Do it now?</source> <translation>Die Anwendung muss neu gestartet werden. Jetzt durchführen?</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="4420" /> + <source>Upgrade PyQt</source> + <translation>PyQt aktualisieren</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4421" /> + <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation>eric muss geschlossen werden, um die PyQt Pakete zu aktualisieren. Es wird neu gestartet, sobald die Aktualisierung abgeschlossen ist. Dies kann eine gewisse Zeit dauern. + +Soll die Aktualisierung jetzt durchgeführt werden?</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="4467" /> + <location filename="../UI/UserInterface.py" line="4443" /> + <source>Upgrade Eric</source> + <translation>Eric aktualisieren</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4444" /> + <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation>eric muss geschlossen werden, um aktualisiert zu werden. Es wird neu gestartet, sobald die Aktualisierung abgeschlossen ist. Dies kann eine gewisse Zeit dauern. + +Soll die Aktualisierung jetzt durchgeführt werden?</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4468" /> + <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time. + + Shall the upgrade be done now?</source> + <translation>eric muss geschlossen werden, um eric und die PyQt Pakete zu aktualisieren. Es wird neu gestartet, sobald die Aktualisierung abgeschlossen ist. Dies kann eine gewisse Zeit dauern. + +Soll die Aktualisierung jetzt durchgeführt werden?</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4526" /> <source>&Builtin Tools</source> <translation>&Eingebaute Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4484" /> + <location filename="../UI/UserInterface.py" line="4543" /> <source>&Plugin Tools</source> <translation>&Pluginwerkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4487" /> + <location filename="../UI/UserInterface.py" line="4546" /> <source>&User Tools</source> <translation>&Benutzerwerkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4513" /> + <location filename="../UI/UserInterface.py" line="4572" /> <source>Configure Tool Groups ...</source> <translation>Konfiguriere Werkzeuggruppen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517" /> + <location filename="../UI/UserInterface.py" line="4576" /> <source>Configure current Tool Group ...</source> <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4558" /> - <location filename="../UI/UserInterface.py" line="4538" /> + <location filename="../UI/UserInterface.py" line="4617" /> + <location filename="../UI/UserInterface.py" line="4597" /> <source>No User Tools Configured</source> <translation>Keine Benutzerwerkzeuge konfiguriert</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4632" /> + <location filename="../UI/UserInterface.py" line="4691" /> <source>&Show all</source> <translation>Alle an&zeigen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4634" /> + <location filename="../UI/UserInterface.py" line="4693" /> <source>&Hide all</source> <translation>Alle &ausblenden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5669" /> - <location filename="../UI/UserInterface.py" line="5659" /> - <location filename="../UI/UserInterface.py" line="5612" /> - <location filename="../UI/UserInterface.py" line="5603" /> - <location filename="../UI/UserInterface.py" line="5442" /> - <location filename="../UI/UserInterface.py" line="5433" /> - <location filename="../UI/UserInterface.py" line="5372" /> - <location filename="../UI/UserInterface.py" line="5363" /> + <location filename="../UI/UserInterface.py" line="5728" /> + <location filename="../UI/UserInterface.py" line="5718" /> + <location filename="../UI/UserInterface.py" line="5671" /> + <location filename="../UI/UserInterface.py" line="5662" /> + <location filename="../UI/UserInterface.py" line="5501" /> + <location filename="../UI/UserInterface.py" line="5492" /> + <location filename="../UI/UserInterface.py" line="5431" /> + <location filename="../UI/UserInterface.py" line="5422" /> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5670" /> - <location filename="../UI/UserInterface.py" line="5660" /> - <location filename="../UI/UserInterface.py" line="5613" /> - <location filename="../UI/UserInterface.py" line="5604" /> - <location filename="../UI/UserInterface.py" line="5443" /> - <location filename="../UI/UserInterface.py" line="5434" /> - <location filename="../UI/UserInterface.py" line="5373" /> - <location filename="../UI/UserInterface.py" line="5364" /> + <location filename="../UI/UserInterface.py" line="5729" /> + <location filename="../UI/UserInterface.py" line="5719" /> + <location filename="../UI/UserInterface.py" line="5672" /> + <location filename="../UI/UserInterface.py" line="5663" /> + <location filename="../UI/UserInterface.py" line="5502" /> + <location filename="../UI/UserInterface.py" line="5493" /> + <location filename="../UI/UserInterface.py" line="5432" /> + <location filename="../UI/UserInterface.py" line="5423" /> <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="5877" /> - <location filename="../UI/UserInterface.py" line="5790" /> - <location filename="../UI/UserInterface.py" line="5705" /> - <location filename="../UI/UserInterface.py" line="5682" /> - <location filename="../UI/UserInterface.py" line="5625" /> - <location filename="../UI/UserInterface.py" line="5575" /> - <location filename="../UI/UserInterface.py" line="5555" /> - <location filename="../UI/UserInterface.py" line="5517" /> - <location filename="../UI/UserInterface.py" line="5508" /> - <location filename="../UI/UserInterface.py" line="5473" /> - <location filename="../UI/UserInterface.py" line="5464" /> - <location filename="../UI/UserInterface.py" line="5403" /> - <location filename="../UI/UserInterface.py" line="5394" /> + <location filename="../UI/UserInterface.py" line="5936" /> + <location filename="../UI/UserInterface.py" line="5849" /> + <location filename="../UI/UserInterface.py" line="5764" /> + <location filename="../UI/UserInterface.py" line="5741" /> + <location filename="../UI/UserInterface.py" line="5684" /> + <location filename="../UI/UserInterface.py" line="5634" /> + <location filename="../UI/UserInterface.py" line="5614" /> + <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5567" /> + <location filename="../UI/UserInterface.py" line="5532" /> + <location filename="../UI/UserInterface.py" line="5523" /> + <location filename="../UI/UserInterface.py" line="5462" /> + <location filename="../UI/UserInterface.py" line="5453" /> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5395" /> + <location filename="../UI/UserInterface.py" line="5454" /> <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="5404" /> + <location filename="../UI/UserInterface.py" line="5463" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Das Qt-Designer Programm konnte nicht gefunden werden.<br>Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5465" /> + <location filename="../UI/UserInterface.py" line="5524" /> <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="5474" /> + <location filename="../UI/UserInterface.py" line="5533" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Das Qt-Linguist Programm konnte nicht gefunden werden.<br>Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509" /> + <location filename="../UI/UserInterface.py" line="5568" /> <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="5518" /> + <location filename="../UI/UserInterface.py" line="5577" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Das Qt-Assistant Programm konnte nicht gefunden werden.<br>Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5542" /> + <location filename="../UI/UserInterface.py" line="5601" /> <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="5556" /> + <location filename="../UI/UserInterface.py" line="5615" /> <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="5576" /> + <location filename="../UI/UserInterface.py" line="5635" /> <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> <message> - <location filename="../UI/UserInterface.py" line="5626" /> + <location filename="../UI/UserInterface.py" line="5685" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die UI-Vorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5683" /> + <location filename="../UI/UserInterface.py" line="5742" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Übersetzungsvorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5706" /> + <location filename="../UI/UserInterface.py" line="5765" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der SQL-Browser konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5791" /> + <location filename="../UI/UserInterface.py" line="5850" /> <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="5822" /> - <location filename="../UI/UserInterface.py" line="5813" /> + <location filename="../UI/UserInterface.py" line="5881" /> + <location filename="../UI/UserInterface.py" line="5872" /> <source>External Tools</source> <translation>Externe Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5814" /> + <location filename="../UI/UserInterface.py" line="5873" /> <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="5823" /> + <location filename="../UI/UserInterface.py" line="5882" /> <source>No toolgroup entry '{0}' found.</source> <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5859" /> + <location filename="../UI/UserInterface.py" line="5918" /> <source>Starting process '{0} {1}'. </source> <translation>Starte Prozess „{0} {1}“. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5878" /> + <location filename="../UI/UserInterface.py" line="5937" /> <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="5953" /> + <location filename="../UI/UserInterface.py" line="6012" /> <source>Process '{0}' has exited. </source> <translation>Prozess „{0}“ ist beendet. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6225" /> - <location filename="../UI/UserInterface.py" line="6167" /> - <location filename="../UI/UserInterface.py" line="6126" /> - <location filename="../UI/UserInterface.py" line="6058" /> - <location filename="../UI/UserInterface.py" line="5996" /> + <location filename="../UI/UserInterface.py" line="6284" /> + <location filename="../UI/UserInterface.py" line="6226" /> + <location filename="../UI/UserInterface.py" line="6185" /> + <location filename="../UI/UserInterface.py" line="6117" /> + <location filename="../UI/UserInterface.py" line="6055" /> <source>Documentation Missing</source> <translation>Dokumentation fehlt</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6226" /> - <location filename="../UI/UserInterface.py" line="6168" /> - <location filename="../UI/UserInterface.py" line="6127" /> - <location filename="../UI/UserInterface.py" line="6059" /> - <location filename="../UI/UserInterface.py" line="5997" /> + <location filename="../UI/UserInterface.py" line="6285" /> + <location filename="../UI/UserInterface.py" line="6227" /> + <location filename="../UI/UserInterface.py" line="6186" /> + <location filename="../UI/UserInterface.py" line="6118" /> + <location filename="../UI/UserInterface.py" line="6056" /> <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="6208" /> - <location filename="../UI/UserInterface.py" line="6099" /> + <location filename="../UI/UserInterface.py" line="6267" /> + <location filename="../UI/UserInterface.py" line="6158" /> <source>Documentation</source> <translation>Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6100" /> + <location filename="../UI/UserInterface.py" line="6159" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation><p>Der PyQt{0}-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6209" /> + <location filename="../UI/UserInterface.py" line="6268" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><p>Der PySide{0}-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387" /> - <location filename="../UI/UserInterface.py" line="6323" /> + <location filename="../UI/UserInterface.py" line="6446" /> + <location filename="../UI/UserInterface.py" line="6382" /> <source>Start Web Browser</source> <translation>Web Browser starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6324" /> + <location filename="../UI/UserInterface.py" line="6383" /> <source>The eric web browser could not be started.</source> <translation>Der eric Web Browser konnte nicht gestartet werden.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6388" /> + <location filename="../UI/UserInterface.py" line="6447" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation><p>Der eric Web Browser ist nicht gestartet.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6430" /> + <location filename="../UI/UserInterface.py" line="6489" /> <source>Open Browser</source> <translation>Browser starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6431" /> + <location filename="../UI/UserInterface.py" line="6490" /> <source>Could not start a web browser</source> <translation>Der System Web Browser konnte nicht gestartet werden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6682" /> + <location filename="../UI/UserInterface.py" line="6740" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation>Tastaturkurzbefehlsdatei (*.ekj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6699" /> + <location filename="../UI/UserInterface.py" line="6757" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation><p>Die Tastaturkurzbefehlsdatei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6717" /> + <location filename="../UI/UserInterface.py" line="6775" /> <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source> <translation>Tastaturkurzbefehlsdatei (*.ekj);;XML Tastaturkurzbefehlsdatei (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6909" /> + <location filename="../UI/UserInterface.py" line="6967" /> <source>Read Tasks</source> <translation>Aufgaben lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6910" /> + <location filename="../UI/UserInterface.py" line="6968" /> <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="6957" /> + <location filename="../UI/UserInterface.py" line="7015" /> <source>Read Session</source> <translation>Sitzung lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6985" /> - <location filename="../UI/UserInterface.py" line="6958" /> + <location filename="../UI/UserInterface.py" line="7043" /> + <location filename="../UI/UserInterface.py" line="7016" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6984" /> + <location filename="../UI/UserInterface.py" line="7042" /> <source>Read session</source> <translation>Sitzung lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7000" /> + <location filename="../UI/UserInterface.py" line="7058" /> <source>Save Session</source> <translation>Sitzung speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7002" /> + <location filename="../UI/UserInterface.py" line="7060" /> <source>eric Session Files (*.esj)</source> <translation>eric Sitzungsdateien (*.esj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="7082" /> <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source> <translation>eric Sitzungsdateien (*.esj);;eric XML Sitzungsdateien (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7072" /> + <location filename="../UI/UserInterface.py" line="7130" /> <source>Crash Session found!</source> <translation>Absturzsitzung gefunden!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7073" /> + <location filename="../UI/UserInterface.py" line="7131" /> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Eine Sitzungsdatei einer abgestürzten Sitzung wurde gefunden. Soll diese Sitzung wiederhergestellt werden?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7374" /> + <location filename="../UI/UserInterface.py" line="7432" /> <source>Drop Error</source> <translation>Drop-Fehler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7375" /> + <location filename="../UI/UserInterface.py" line="7433" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <source>&Cancel</source> - <translation>&Abbrechen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7554" /> - <source>%v/%m</source> - <translation>%v/%m</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7556" /> - <source>Version Check</source> - <translation>Versionsprüfung</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7561" /> - <source>Trying host {0}</source> - <translation>Prüfe Host {0}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7630" /> - <location filename="../UI/UserInterface.py" line="7623" /> - <location filename="../UI/UserInterface.py" line="7574" /> - <source>Error getting versions information</source> - <translation>Fehler beim Herunterladen der Versionsinformationen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7575" /> - <source>The versions information cannot not be downloaded because the Internet is <b>not reachable</b>. Please try again later.</source> - <translation>Die Versionsinformationen konnten nicht heruntergeladen werden, da das Internet <b>nicht erreichbar</b> ist. Bitte versuchen Sie es später erneut.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7624" /> - <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="7631" /> - <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> - <translation>Die Versionsinformationen konnten seit 7 Tagen nicht heruntergeladen werden. Bitte gehen Sie online und versuchen Sie es erneut.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7722" /> - <location filename="../UI/UserInterface.py" line="7688" /> - <source>Update available</source> + <location filename="../UI/UserInterface.py" line="7597" /> + <source>Upgrade available</source> <translation>Aktualisierung verfügbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7723" /> - <location filename="../UI/UserInterface.py" line="7689" /> - <source>The update to <b>{0}</b> of eric is available at <b>{1}</b>. Would you like to get it?</source> - <translation>Eine Aktualisierung auf <b>{0}</b> von eric ist unter <b>{1}</b> verfügbar. Soll sie geladen werden?</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7710" /> - <location filename="../UI/UserInterface.py" line="7700" /> - <source>Update Check</source> - <translation>Aktualisierungsprüfung</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7701" /> - <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source> - <translation>Es wird ein Snapshot-Release von eric verwendet. Eine neueres, stabiles Release könnte verfügbar sein.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7711" /> - <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> - <translation>Eric wurde direkt von vom Quelltext installiert. Eine Aktualitätsprüfung ist daher nicht möglich.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7734" /> - <source>eric is up to date</source> - <translation>eric ist aktuell</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7735" /> - <source>You are using the latest version of eric</source> - <translation>Es wird die aktuellste Version von eric verwendet</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7741" /> - <source>Error during updates check</source> - <translation>Fehler während der Aktualisierungsprüfung</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7742" /> - <source>Could not perform updates check.</source> - <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7763" /> - <source><h3>Available versions</h3><table></source> - <translation><h3>Verfügbare Versionen</h3><table></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7829" /> - <location filename="../UI/UserInterface.py" line="7818" /> + <location filename="../UI/UserInterface.py" line="7598" /> + <source>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</source> + <translation>Eine neuere Version des <b>eric-ide</b> Paketes is auf <a href="{0}/eric-ide/">PyPI</a> verfügbar.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7642" /> + <location filename="../UI/UserInterface.py" line="7631" /> <source>First time usage</source> <translation>Erstmalige Nutzung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7819" /> + <location filename="../UI/UserInterface.py" line="7632" /> <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source> <translation>eric7 wurde noch nicht konfiguriert, aber es wurde eine eric6 Konfiguration gefunden. Soll diese importiert werden?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7830" /> + <location filename="../UI/UserInterface.py" line="7643" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation>eric wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7850" /> + <location filename="../UI/UserInterface.py" line="7663" /> <source>Select Workspace Directory</source> <translation>Wähle Arbeitsverzeichnis</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8027" /> + <location filename="../UI/UserInterface.py" line="7840" /> <source>Unsaved Data Detected</source> <translation>Nicht gespeicherte Daten gefunden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8028" /> + <location filename="../UI/UserInterface.py" line="7841" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation>Einige Editoren haben nicht gespeicherte Inhalte. Sollen diese gespeichert werden?</translation> </message> @@ -84100,6 +84288,49 @@ </message> </context> <context> + <name>VersionsDialog</name> + <message> + <location filename="../UI/VersionsDialog.py" line="49" /> + <source>Check for Upgrades...</source> + <translation>Aktualisierung prüfen...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="92" /> + <source>No upgrades available.</source> + <translation>Keine Aktualisierungen verfügbar.</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="96" /> + <source>Upgrade eric7...</source> + <translation>eric7 aktualisieren...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="100" /> + <source><p>An upgrade of <b>eric7</b> is available.</p></source> + <translation><p>Eine Aktualisierung für <b>eric7</b> ist verfügbar.</p></translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="105" /> + <source>Upgrade PyQt6...</source> + <translation>PyQt6 aktualisieren...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="109" /> + <source><p>An upgrade of <b>PyQt6</b> is available.</p></source> + <translation><p>Eine Aktualisierung für <b>PyQt6</b> ist verfügbar.</p></translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="114" /> + <source>Upgrade Both...</source> + <translation>Beide aktualisieren...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="128" /> + <source>Check for Upgrades</source> + <translation>Aktualisierung prüfen</translation> + </message> + </context> + <context> <name>ViewManager</name> <message> <location filename="../HexEdit/HexEditMainWindow.py" line="518" /> @@ -88811,7 +89042,7 @@ <context> <name>VirtualenvInterpreterSelectionDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="45" /> + <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="47" /> <source>Python Interpreter</source> <translation>Python Interpreter</translation> </message> @@ -88839,54 +89070,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="232" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="243" /> <source>Add Virtual Environment</source> <translation>Virtuelle Umgebung hinzufügen</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="233" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="244" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation>Eine virtuelle Umgebung mit Namen <b>{0}</b> existiert bereits. Soll sie ersetzt werden?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="295" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="306" /> <source>Change Virtual Environment</source> <translation>Virtuelle Umgebung ändern</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="346" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="296" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="307" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation>Eine virtuelle Umgebung mit Namen <b>{0}</b> existiert nicht. Abbruch!</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="345" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> <source>Rename Virtual Environment</source> <translation>Virtuelle Umgebung umbenennen</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="433" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="369" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="444" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="380" /> <source>{0} - {1}</source> <translation>{0} – {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="377" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> <source>Delete Virtual Environments</source> <translation>Virtuelle Umgebung löschen</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="378" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Do you really want to delete these virtual environments?</source> <translation>Sollen diese virtuellen Umgebungen wirklich gelöscht werden?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="441" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="452" /> <source>Remove Virtual Environments</source> <translation>Virtuelle Umgebung entfernen</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="453" /> <source>Do you really want to remove these virtual environments?</source> <translation>Sollen diese virtuellen Umgebungen wirklich entfernt werden?</translation> </message> @@ -89815,22 +90046,22 @@ <context> <name>WebBrowserPage</name> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="195" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="189" /> <source>Suspicuous URL detected</source> <translation>Fragwürdige URL entdeckt</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="196" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="190" /> <source><p>The URL <b>{0}</b> was found in the Safe Browsing database.</p>{1}</source> <translation><p>Die URL <b>{0}</b> wurde in der Safe Browsing Datenbank gefunden.</p>{1}</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="663" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="657" /> <source>SSL Info</source> <translation>SSL Info</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="664" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="658" /> <source>This site does not contain SSL information.</source> <translation>Diese Seite enthält keine SSL Information.</translation> </message> @@ -91169,12 +91400,12 @@ <translation>Web Seite speichern</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2282" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2287" /> <source>Quota Request</source> <translation>Speicherplatzanfrage</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2288" /> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation><p>Der Website <b>{0}</b> gestatten, <b>{1}</b> permanenten Speicherplatz zu verwenden?</p></translation> </message>
--- a/eric7/i18n/eric7_empty.ts Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/i18n/eric7_empty.ts Sat Apr 02 11:23:11 2022 +0200 @@ -1474,6 +1474,26 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader Delay:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Enter the time the upgrader process should wait for eric to exit</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source> s</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> <source>Reporting</source> <translation type="unfinished" /> </message> @@ -44895,7 +44915,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="473" /> + <location filename="../Preferences/__init__.py" line="471" /> <location filename="../QScintilla/Lexers/__init__.py" line="415" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished" /> @@ -45148,7 +45168,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="475" /> + <location filename="../Preferences/__init__.py" line="473" /> <location filename="../QScintilla/Lexers/__init__.py" line="585" /> <source>Python3 Files (*.py)</source> <translation type="unfinished" /> @@ -51011,119 +51031,113 @@ <context> <name>Pip</name> <message> - <location filename="../PipInterface/Pip.py" line="109" /> + <location filename="../PipInterface/Pip.py" line="123" /> <source>python exited with an error ({0}).</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="116" /> + <location filename="../PipInterface/Pip.py" line="130" /> <source>python did not finish within 30 seconds.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="119" /> + <location filename="../PipInterface/Pip.py" line="133" /> <source>python could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="179" /> + <location filename="../PipInterface/Pip.py" line="193" /> <source><project></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="208" /> + <location filename="../PipInterface/Pip.py" line="222" /> <source>Interpreter for Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="209" /> + <location filename="../PipInterface/Pip.py" line="223" /> <source>No interpreter configured for the selected virtual environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="244" /> + <location filename="../PipInterface/Pip.py" line="258" /> <source>Install PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="286" /> + <location filename="../PipInterface/Pip.py" line="300" /> <source>Repair PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="359" /> - <location filename="../PipInterface/Pip.py" line="311" /> + <location filename="../PipInterface/Pip.py" line="383" /> <source>Upgrade Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="312" /> - <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/Pip.py" line="399" /> + <location filename="../PipInterface/Pip.py" line="423" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="428" /> + <location filename="../PipInterface/Pip.py" line="452" /> <source>Install Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="491" /> - <location filename="../PipInterface/Pip.py" line="460" /> - <location filename="../PipInterface/Pip.py" line="451" /> + <location filename="../PipInterface/Pip.py" line="515" /> + <location filename="../PipInterface/Pip.py" line="484" /> + <location filename="../PipInterface/Pip.py" line="475" /> <source>Uninstall Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="492" /> - <location filename="../PipInterface/Pip.py" line="452" /> + <location filename="../PipInterface/Pip.py" line="516" /> + <location filename="../PipInterface/Pip.py" line="476" /> <source>Do you really want to uninstall these packages?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="503" /> + <location filename="../PipInterface/Pip.py" line="527" /> <source>Uninstall Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="721" /> + <location filename="../PipInterface/Pip.py" line="844" /> <source>Cache Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="746" /> - <location filename="../PipInterface/Pip.py" line="738" /> + <location filename="../PipInterface/Pip.py" line="869" /> + <location filename="../PipInterface/Pip.py" line="861" /> <source>List Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="739" /> + <location filename="../PipInterface/Pip.py" line="862" /> <source>Enter a file pattern (empty for all):</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="770" /> - <location filename="../PipInterface/Pip.py" line="764" /> + <location filename="../PipInterface/Pip.py" line="893" /> + <location filename="../PipInterface/Pip.py" line="887" /> <source>Remove Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="765" /> + <location filename="../PipInterface/Pip.py" line="888" /> <source>Enter a file pattern:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="793" /> - <location filename="../PipInterface/Pip.py" line="788" /> + <location filename="../PipInterface/Pip.py" line="916" /> + <location filename="../PipInterface/Pip.py" line="911" /> <source>Purge Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="789" /> + <location filename="../PipInterface/Pip.py" line="912" /> <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source> <translation type="unfinished" /> </message> @@ -51242,18 +51256,18 @@ <location filename="../PipInterface/PipFreezeDialog.py" line="230" /> <location filename="../PipInterface/PipFreezeDialog.py" line="210" /> <location filename="../PipInterface/PipFreezeDialog.py" line="198" /> - <location filename="../PipInterface/PipFreezeDialog.py" line="118" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="122" /> <source>Generate Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="119" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="123" /> <source>The requirements were changed. Do you want to overwrite these changes?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="160" /> - <source>No output generated by 'pip freeze'.</source> + <location filename="../PipInterface/PipFreezeDialog.py" line="158" /> + <source>No package specifiers generated by 'pip freeze'.</source> <translation type="unfinished" /> </message> <message> @@ -51283,6 +51297,16 @@ </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>Select to show requirements for packages installed to the user-site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Requirements File:</source> <translation type="unfinished" /> </message> @@ -51343,6 +51367,65 @@ </message> </context> <context> + <name>PipLicensesDialog</name> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package Licenses</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Local packages only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Version</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>License</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="61" /> + <source>Licenses of "{0}"</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="65" /> + <source>No environment specified.</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PipPackageDetailsDialog</name> <message> <location filename="../PipInterface/PipPackageDetailsDialog.py" line="46" /> @@ -51595,11 +51678,17 @@ <name>PipPackagesWidget</name> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Toggle to show or hide the dependency tree view</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only locally-installed packages</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Local packages only</source> <translation type="unfinished" /> </message> @@ -51620,11 +51709,23 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>User-Site only</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Perform vulnerability checks based on "Safety DB".</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Vulnerability Check</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Package</source> @@ -51632,12 +51733,18 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Installed Version</source> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Installed</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Available Version</source> + <source>Available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Affected</source> <translation type="unfinished" /> </message> <message> @@ -51683,6 +51790,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Press to show details for the selected entry</source> <translation type="unfinished" /> </message> @@ -51693,11 +51801,6 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Press to start the search</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Enter the search term for the package name</source> <translation type="unfinished" /> </message> @@ -51708,6 +51811,16 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to start the search</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to search for more packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Version</source> <translation type="unfinished" /> </message> @@ -51732,220 +51845,307 @@ <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="169" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>View Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package requires other packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Requires</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package is required by others</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required By</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to refresh the dependency tree</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="185" /> <source>pip Menu</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="195" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="230" /> <source>Name:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="196" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="231" /> <source>Version:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="197" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="232" /> <source>Location:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="198" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="233" /> <source>Requires:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="199" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="234" /> <source>Summary:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="200" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="235" /> <source>Homepage:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="201" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="236" /> <source>Author:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="202" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="237" /> <source>Author Email:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="203" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="238" /> <source>License:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="204" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="239" /> <source>Metadata Version:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="205" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="240" /> <source>Installer:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="206" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="241" /> <source>Classifiers:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="207" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="242" /> <source>Entry Points:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="208" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="243" /> <source>Files:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="375" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="427" /> <source>Getting installed packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="390" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="443" /> <source>Getting outdated packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="975" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="812" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="790" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1141" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="972" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="961" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="930" /> <source>Search PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="791" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="931" /> <source><p>Received an error while searching for <b>{0}</b>.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../PipInterface/PipPackagesWidget.py" line="805" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="946" /> <source>%n package(s) found.</source> <translation type="unfinished"> <numerusform /> </translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="807" /> - <source>Showing first 20 packages found.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="815" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="813" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="950" /> + <source>Showing first {0} packages found.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="966" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="962" /> <source><p>There were no results for <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="976" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="973" /> + <source><p>There were no more results for <b>{0}</b>.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1142" /> <source><p>No package details info for <b>{0}</b> available.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="990" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1156" /> <source>Install Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="993" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1159" /> <source>Install Pip to User-Site</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="996" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1162" /> <source>Repair Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1116" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1000" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1299" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1166" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1003" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1169" /> <source>Install Local Package</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1007" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1173" /> <source>Install Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1010" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1176" /> <source>Re-Install Selected Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1013" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1179" /> <source>Uninstall Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1016" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1182" /> <source>Generate Requirements...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1020" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1186" /> + <source>Show Licenses...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1190" /> + <source>Check Vulnerabilities</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1194" /> + <source>Update Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1198" /> <source>Show Cache Info...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1023" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1201" /> <source>Show Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1026" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1204" /> <source>Remove Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1029" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1207" /> <source>Purge Cache...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1034" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1212" /> <source>Edit User Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1037" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1215" /> <source>Edit Environment Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1042" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1220" /> <source>Configure...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1237" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1224" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1213" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1421" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1408" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1397" /> <source>Edit Configuration</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1238" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1225" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1214" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1422" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1409" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1398" /> <source>No valid configuration path determined. Aborting</source> <translation type="unfinished" /> </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1576" /> + <source>{0} {1}</source> + <comment>package name, package version</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1598" /> + <source>Affected Version:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1601" /> + <source>Advisory:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1716" /> + <source>any</source> + <translation type="unfinished" /> + </message> </context> <context> <name>PipPage</name> @@ -51955,6 +52155,11 @@ <translation type="unfinished" /> </message> <message> + <location filename="../Preferences/ConfigurationPages/PipPage.py" line="34" /> + <source><b>Note:</b> Leave empty to use the default Safety DB URL ({0}).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source><b>Configure pip</b></source> <translation type="unfinished" /> @@ -51971,6 +52176,36 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Vulnerability Checks</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Safety DB URL:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the base URL for the Safety DB mirror to be used</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Cache Validity:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source> hours</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source>Environment</source> <translation type="unfinished" /> </message> @@ -51986,6 +52221,19 @@ </message> </context> <context> + <name>PipVulnerabilityChecker</name> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="219" /> + <source>Fetching Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="220" /> + <source><p>The vulnerability database <b>{0}</b> could not be loaded from <b>{1}</b>.</p><p>The vulnerability check is not available.</p></source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PixmapDiagram</name> <message> <location filename="../Graphics/PixmapDiagram.py" line="164" /> @@ -52395,32 +52643,32 @@ <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="445" /> + <location filename="../PluginManager/PluginManager.py" line="449" /> <source>Module failed to load. Error: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="622" /> + <location filename="../PluginManager/PluginManager.py" line="626" /> <source>Incompatible plugin activation method.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1204" /> + <location filename="../PluginManager/PluginManager.py" line="1208" /> <source>Plugin Manager Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1205" /> + <location filename="../PluginManager/PluginManager.py" line="1209" /> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1271" /> + <location filename="../PluginManager/PluginManager.py" line="1275" /> <source>Error downloading file</source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1272" /> + <location filename="../PluginManager/PluginManager.py" line="1276" /> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> @@ -52577,6 +52825,21 @@ <source>Edit URL</source> <translation type="unfinished" /> </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Startup Behavior</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Select, to check for missing plugin dependencies at startup and install them</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Automatic dependencies installation</source> + <translation type="unfinished" /> + </message> </context> <context> <name>PluginRepositoryDialog</name> @@ -53244,18 +53507,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1654" /> + <location filename="../Preferences/__init__.py" line="1658" /> <source>Export Preferences</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1682" /> - <location filename="../Preferences/__init__.py" line="1656" /> + <location filename="../Preferences/__init__.py" line="1686" /> + <location filename="../Preferences/__init__.py" line="1660" /> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> + <location filename="../Preferences/__init__.py" line="1684" /> <source>Import Preferences</source> <translation type="unfinished" /> </message> @@ -78203,7 +78466,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Tools/TrayStarter.py" line="582" /> + <location filename="../Tools/TrayStarter.py" line="600" /> + <source>Desktop</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="603" /> + <source>Session Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="605" /> <source></table></source> <translation type="unfinished" /> </message> @@ -79750,2629 +80023,2539 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="256" /> + <location filename="../UI/UserInterface.py" line="253" /> <source>Initializing Basic Services...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="297" /> + <location filename="../UI/UserInterface.py" line="294" /> <source>Initializing Plugin Manager...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="304" /> + <location filename="../UI/UserInterface.py" line="301" /> <source>Generating Main User Interface...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="346" /> + <location filename="../UI/UserInterface.py" line="343" /> <source>Setting up connections...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="593" /> + <location filename="../UI/UserInterface.py" line="590" /> <source>Initializing Tools...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="603" /> + <location filename="../UI/UserInterface.py" line="600" /> <source>Registering Objects...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="644" /> + <location filename="../UI/UserInterface.py" line="636" /> <source>Initializing Actions...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="646" /> + <location filename="../UI/UserInterface.py" line="638" /> <source>Initializing Menus...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="648" /> + <location filename="../UI/UserInterface.py" line="640" /> <source>Initializing Toolbars...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="650" /> + <location filename="../UI/UserInterface.py" line="642" /> <source>Initializing Statusbar...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="678" /> + <location filename="../UI/UserInterface.py" line="670" /> <source>Initializing Single Application Server...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="676" /> + <source>Initializing Plugins...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="679" /> + <source>Activating Plugins...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="681" /> + <source>Generating Plugins Toolbars...</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="684" /> - <source>Initializing Plugins...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="687" /> - <source>Activating Plugins...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="689" /> - <source>Generating Plugins Toolbars...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="692" /> <source>Cleaning Plugins Download Area...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="703" /> + <location filename="../UI/UserInterface.py" line="695" /> <source>Restoring Toolbarmanager...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="712" /> + <location filename="../UI/UserInterface.py" line="704" /> <source>Setting View Profile...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="725" /> + <location filename="../UI/UserInterface.py" line="717" /> <source>Reading Tasks...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="730" /> + <location filename="../UI/UserInterface.py" line="722" /> <source>Reading Templates...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="735" /> + <location filename="../UI/UserInterface.py" line="727" /> <source>Starting Debugger...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2041" /> - <location filename="../UI/UserInterface.py" line="1065" /> + <location filename="../UI/UserInterface.py" line="2033" /> + <location filename="../UI/UserInterface.py" line="1057" /> <source>Left Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2072" /> - <location filename="../UI/UserInterface.py" line="1073" /> + <location filename="../UI/UserInterface.py" line="2064" /> + <location filename="../UI/UserInterface.py" line="1065" /> <source>Horizontal Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2056" /> - <location filename="../UI/UserInterface.py" line="1081" /> + <location filename="../UI/UserInterface.py" line="2048" /> + <location filename="../UI/UserInterface.py" line="1073" /> <source>Right Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1915" /> - <location filename="../UI/UserInterface.py" line="1237" /> - <location filename="../UI/UserInterface.py" line="1089" /> + <location filename="../UI/UserInterface.py" line="1907" /> + <location filename="../UI/UserInterface.py" line="1229" /> + <location filename="../UI/UserInterface.py" line="1081" /> <source>Multiproject-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1898" /> - <location filename="../UI/UserInterface.py" line="1242" /> + <location filename="../UI/UserInterface.py" line="1890" /> + <location filename="../UI/UserInterface.py" line="1234" /> + <location filename="../UI/UserInterface.py" line="1085" /> + <source>Project-Viewer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2318" /> + <location filename="../UI/UserInterface.py" line="2317" /> + <location filename="../UI/UserInterface.py" line="1239" /> + <location filename="../UI/UserInterface.py" line="1089" /> + <source>Find/Replace In Files</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2336" /> + <location filename="../UI/UserInterface.py" line="2335" /> + <location filename="../UI/UserInterface.py" line="1244" /> <location filename="../UI/UserInterface.py" line="1093" /> - <source>Project-Viewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2326" /> - <location filename="../UI/UserInterface.py" line="2325" /> - <location filename="../UI/UserInterface.py" line="1247" /> + <source>Find File</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1249" /> <location filename="../UI/UserInterface.py" line="1097" /> - <source>Find/Replace In Files</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2344" /> - <location filename="../UI/UserInterface.py" line="2343" /> - <location filename="../UI/UserInterface.py" line="1252" /> - <location filename="../UI/UserInterface.py" line="1101" /> - <source>Find File</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1257" /> - <location filename="../UI/UserInterface.py" line="1105" /> <source>VCS Status</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2022" /> - <location filename="../UI/UserInterface.py" line="1263" /> - <location filename="../UI/UserInterface.py" line="1110" /> + <location filename="../UI/UserInterface.py" line="2014" /> + <location filename="../UI/UserInterface.py" line="1255" /> + <location filename="../UI/UserInterface.py" line="1102" /> <source>Template-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1968" /> - <location filename="../UI/UserInterface.py" line="1269" /> - <location filename="../UI/UserInterface.py" line="1115" /> + <location filename="../UI/UserInterface.py" line="1960" /> + <location filename="../UI/UserInterface.py" line="1261" /> + <location filename="../UI/UserInterface.py" line="1107" /> <source>File-Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1275" /> - <location filename="../UI/UserInterface.py" line="1120" /> + <location filename="../UI/UserInterface.py" line="1267" /> + <location filename="../UI/UserInterface.py" line="1112" /> <source>Symbols</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1933" /> - <location filename="../UI/UserInterface.py" line="1295" /> - <location filename="../UI/UserInterface.py" line="1290" /> - <location filename="../UI/UserInterface.py" line="1128" /> + <location filename="../UI/UserInterface.py" line="1925" /> + <location filename="../UI/UserInterface.py" line="1287" /> + <location filename="../UI/UserInterface.py" line="1282" /> + <location filename="../UI/UserInterface.py" line="1120" /> <source>Debug-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2215" /> - <location filename="../UI/UserInterface.py" line="2214" /> - <location filename="../UI/UserInterface.py" line="1301" /> - <location filename="../UI/UserInterface.py" line="1133" /> + <location filename="../UI/UserInterface.py" line="2207" /> + <location filename="../UI/UserInterface.py" line="2206" /> + <location filename="../UI/UserInterface.py" line="1293" /> + <location filename="../UI/UserInterface.py" line="1125" /> <source>Code Documentation Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2380" /> - <location filename="../UI/UserInterface.py" line="2379" /> - <location filename="../UI/UserInterface.py" line="1307" /> - <location filename="../UI/UserInterface.py" line="1138" /> + <location filename="../UI/UserInterface.py" line="2372" /> + <location filename="../UI/UserInterface.py" line="2371" /> + <location filename="../UI/UserInterface.py" line="1299" /> + <location filename="../UI/UserInterface.py" line="1130" /> <source>Help Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3103" /> - <location filename="../UI/UserInterface.py" line="2289" /> - <location filename="../UI/UserInterface.py" line="2288" /> - <location filename="../UI/UserInterface.py" line="1312" /> - <location filename="../UI/UserInterface.py" line="1142" /> + <location filename="../UI/UserInterface.py" line="3069" /> + <location filename="../UI/UserInterface.py" line="2281" /> + <location filename="../UI/UserInterface.py" line="2280" /> + <location filename="../UI/UserInterface.py" line="1304" /> + <location filename="../UI/UserInterface.py" line="1134" /> <source>Plugin Repository</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2307" /> - <location filename="../UI/UserInterface.py" line="2306" /> - <location filename="../UI/UserInterface.py" line="1317" /> - <location filename="../UI/UserInterface.py" line="1146" /> + <location filename="../UI/UserInterface.py" line="2299" /> + <location filename="../UI/UserInterface.py" line="2298" /> + <location filename="../UI/UserInterface.py" line="1309" /> + <location filename="../UI/UserInterface.py" line="1138" /> <source>Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2235" /> - <location filename="../UI/UserInterface.py" line="2234" /> - <location filename="../UI/UserInterface.py" line="1322" /> - <location filename="../UI/UserInterface.py" line="1151" /> + <location filename="../UI/UserInterface.py" line="2227" /> + <location filename="../UI/UserInterface.py" line="2226" /> + <location filename="../UI/UserInterface.py" line="1314" /> + <location filename="../UI/UserInterface.py" line="1143" /> <source>PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2253" /> - <location filename="../UI/UserInterface.py" line="2252" /> - <location filename="../UI/UserInterface.py" line="1327" /> - <location filename="../UI/UserInterface.py" line="1156" /> + <location filename="../UI/UserInterface.py" line="2245" /> + <location filename="../UI/UserInterface.py" line="2244" /> + <location filename="../UI/UserInterface.py" line="1319" /> + <location filename="../UI/UserInterface.py" line="1148" /> <source>Conda</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1332" /> - <location filename="../UI/UserInterface.py" line="1161" /> + <location filename="../UI/UserInterface.py" line="1324" /> + <location filename="../UI/UserInterface.py" line="1153" /> <source>Cooperation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2158" /> - <location filename="../UI/UserInterface.py" line="1337" /> - <location filename="../UI/UserInterface.py" line="1166" /> + <location filename="../UI/UserInterface.py" line="2150" /> + <location filename="../UI/UserInterface.py" line="1329" /> + <location filename="../UI/UserInterface.py" line="1158" /> <source>IRC</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2271" /> - <location filename="../UI/UserInterface.py" line="2270" /> + <location filename="../UI/UserInterface.py" line="2263" /> + <location filename="../UI/UserInterface.py" line="2262" /> + <location filename="../UI/UserInterface.py" line="1335" /> + <location filename="../UI/UserInterface.py" line="1163" /> + <source>MicroPython</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1943" /> <location filename="../UI/UserInterface.py" line="1343" /> <location filename="../UI/UserInterface.py" line="1171" /> - <source>MicroPython</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1951" /> + <source>Shell</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1995" /> + <location filename="../UI/UserInterface.py" line="1347" /> + <location filename="../UI/UserInterface.py" line="1175" /> + <source>Task-Viewer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1977" /> <location filename="../UI/UserInterface.py" line="1351" /> <location filename="../UI/UserInterface.py" line="1179" /> - <source>Shell</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2003" /> - <location filename="../UI/UserInterface.py" line="1355" /> - <location filename="../UI/UserInterface.py" line="1183" /> - <source>Task-Viewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1985" /> - <location filename="../UI/UserInterface.py" line="1359" /> - <location filename="../UI/UserInterface.py" line="1187" /> <source>Log-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1364" /> - <location filename="../UI/UserInterface.py" line="1192" /> + <location filename="../UI/UserInterface.py" line="1356" /> + <location filename="../UI/UserInterface.py" line="1184" /> <source>Numbers</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1752" /> + <location filename="../UI/UserInterface.py" line="1744" /> <source>{0} - Passive Mode</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1759" /> - <location filename="../UI/UserInterface.py" line="1755" /> + <location filename="../UI/UserInterface.py" line="1751" /> + <location filename="../UI/UserInterface.py" line="1747" /> <source>{0} - {1} - Passive Mode</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1763" /> + <location filename="../UI/UserInterface.py" line="1755" /> <source>{0} - {1} - {2} - Passive Mode</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1786" /> + <location filename="../UI/UserInterface.py" line="1778" /> <source>Quit</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1788" /> + <location filename="../UI/UserInterface.py" line="1780" /> <source>&Quit</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1789" /> + <location filename="../UI/UserInterface.py" line="1781" /> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1791" /> + <location filename="../UI/UserInterface.py" line="1783" /> <source>Quit the IDE</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1792" /> + <location filename="../UI/UserInterface.py" line="1784" /> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1805" /> - <location filename="../UI/UserInterface.py" line="1803" /> + <location filename="../UI/UserInterface.py" line="1797" /> + <location filename="../UI/UserInterface.py" line="1795" /> <source>Restart</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1806" /> + <location filename="../UI/UserInterface.py" line="1798" /> <source>Ctrl+Shift+Q</source> <comment>File|Quit</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1808" /> + <location filename="../UI/UserInterface.py" line="1800" /> <source>Restart the IDE</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1809" /> + <location filename="../UI/UserInterface.py" line="1801" /> <source><b>Restart the IDE</b><p>This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1822" /> - <location filename="../UI/UserInterface.py" line="1819" /> + <location filename="../UI/UserInterface.py" line="1814" /> + <location filename="../UI/UserInterface.py" line="1811" /> <source>Save session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1820" /> + <location filename="../UI/UserInterface.py" line="1812" /> <source>Save session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1823" /> + <location filename="../UI/UserInterface.py" line="1815" /> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7022" /> - <location filename="../UI/UserInterface.py" line="1835" /> - <location filename="../UI/UserInterface.py" line="1832" /> + <location filename="../UI/UserInterface.py" line="7080" /> + <location filename="../UI/UserInterface.py" line="1827" /> + <location filename="../UI/UserInterface.py" line="1824" /> <source>Load session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1833" /> + <location filename="../UI/UserInterface.py" line="1825" /> <source>Load session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1836" /> + <location filename="../UI/UserInterface.py" line="1828" /> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1845" /> + <location filename="../UI/UserInterface.py" line="1837" /> <source>New Window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1847" /> + <location filename="../UI/UserInterface.py" line="1839" /> <source>New &Window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1848" /> + <location filename="../UI/UserInterface.py" line="1840" /> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1850" /> + <location filename="../UI/UserInterface.py" line="1842" /> <source>Open a new eric instance</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1852" /> + <location filename="../UI/UserInterface.py" line="1844" /> <source><b>New Window</b><p>This opens a new instance of the eric IDE.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1866" /> - <location filename="../UI/UserInterface.py" line="1864" /> + <location filename="../UI/UserInterface.py" line="1858" /> + <location filename="../UI/UserInterface.py" line="1856" /> <source>Edit Profile</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1869" /> + <location filename="../UI/UserInterface.py" line="1861" /> <source>Activate the edit view profile</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1871" /> + <location filename="../UI/UserInterface.py" line="1863" /> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1883" /> - <location filename="../UI/UserInterface.py" line="1881" /> + <location filename="../UI/UserInterface.py" line="1875" /> + <location filename="../UI/UserInterface.py" line="1873" /> <source>Debug Profile</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1887" /> + <location filename="../UI/UserInterface.py" line="1879" /> <source>Activate the debug view profile</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1888" /> + <location filename="../UI/UserInterface.py" line="1880" /> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1899" /> + <location filename="../UI/UserInterface.py" line="1891" /> <source>&Project-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1900" /> + <location filename="../UI/UserInterface.py" line="1892" /> <source>Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1903" /> + <location filename="../UI/UserInterface.py" line="1895" /> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1905" /> + <location filename="../UI/UserInterface.py" line="1897" /> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1916" /> + <location filename="../UI/UserInterface.py" line="1908" /> <source>&Multiproject-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1917" /> + <location filename="../UI/UserInterface.py" line="1909" /> <source>Alt+Shift+M</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1920" /> + <location filename="../UI/UserInterface.py" line="1912" /> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1922" /> + <location filename="../UI/UserInterface.py" line="1914" /> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1934" /> + <location filename="../UI/UserInterface.py" line="1926" /> <source>&Debug-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1935" /> + <location filename="../UI/UserInterface.py" line="1927" /> <source>Alt+Shift+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1938" /> + <location filename="../UI/UserInterface.py" line="1930" /> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1940" /> + <location filename="../UI/UserInterface.py" line="1932" /> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1952" /> + <location filename="../UI/UserInterface.py" line="1944" /> <source>&Shell</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1953" /> + <location filename="../UI/UserInterface.py" line="1945" /> <source>Alt+Shift+S</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1956" /> + <location filename="../UI/UserInterface.py" line="1948" /> <source>Switch the input focus to the Shell window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1958" /> + <location filename="../UI/UserInterface.py" line="1950" /> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1969" /> + <location filename="../UI/UserInterface.py" line="1961" /> <source>&File-Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1970" /> + <location filename="../UI/UserInterface.py" line="1962" /> <source>Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1973" /> + <location filename="../UI/UserInterface.py" line="1965" /> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1975" /> + <location filename="../UI/UserInterface.py" line="1967" /> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1986" /> + <location filename="../UI/UserInterface.py" line="1978" /> <source>Lo&g-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1987" /> + <location filename="../UI/UserInterface.py" line="1979" /> <source>Alt+Shift+G</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1990" /> + <location filename="../UI/UserInterface.py" line="1982" /> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1992" /> + <location filename="../UI/UserInterface.py" line="1984" /> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2004" /> + <location filename="../UI/UserInterface.py" line="1996" /> <source>&Task-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2005" /> + <location filename="../UI/UserInterface.py" line="1997" /> <source>Alt+Shift+T</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2008" /> + <location filename="../UI/UserInterface.py" line="2000" /> <source>Switch the input focus to the Task-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2010" /> + <location filename="../UI/UserInterface.py" line="2002" /> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2023" /> + <location filename="../UI/UserInterface.py" line="2015" /> <source>Templ&ate-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2024" /> + <location filename="../UI/UserInterface.py" line="2016" /> <source>Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2027" /> + <location filename="../UI/UserInterface.py" line="2019" /> <source>Switch the input focus to the Template-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2029" /> + <location filename="../UI/UserInterface.py" line="2021" /> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2042" /> + <location filename="../UI/UserInterface.py" line="2034" /> <source>&Left Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2043" /> + <location filename="../UI/UserInterface.py" line="2035" /> <source>Toggle the Left Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2044" /> + <location filename="../UI/UserInterface.py" line="2036" /> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2057" /> + <location filename="../UI/UserInterface.py" line="2049" /> <source>&Right Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2059" /> + <location filename="../UI/UserInterface.py" line="2051" /> <source>Toggle the Right Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2060" /> + <location filename="../UI/UserInterface.py" line="2052" /> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2073" /> + <location filename="../UI/UserInterface.py" line="2065" /> <source>&Horizontal Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2075" /> + <location filename="../UI/UserInterface.py" line="2067" /> <source>Toggle the Horizontal Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2077" /> + <location filename="../UI/UserInterface.py" line="2069" /> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2089" /> + <location filename="../UI/UserInterface.py" line="2081" /> <source>Left Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2090" /> + <location filename="../UI/UserInterface.py" line="2082" /> <source>&Left Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2092" /> + <location filename="../UI/UserInterface.py" line="2084" /> <source>Toggle the left sidebar window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2093" /> + <location filename="../UI/UserInterface.py" line="2085" /> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2105" /> + <location filename="../UI/UserInterface.py" line="2097" /> <source>Right Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2106" /> + <location filename="../UI/UserInterface.py" line="2098" /> <source>&Right Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2108" /> + <location filename="../UI/UserInterface.py" line="2100" /> <source>Toggle the right sidebar window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2110" /> + <location filename="../UI/UserInterface.py" line="2102" /> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2122" /> + <location filename="../UI/UserInterface.py" line="2114" /> <source>Bottom Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2123" /> + <location filename="../UI/UserInterface.py" line="2115" /> <source>&Bottom Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2125" /> + <location filename="../UI/UserInterface.py" line="2117" /> <source>Toggle the bottom sidebar window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2127" /> + <location filename="../UI/UserInterface.py" line="2119" /> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2139" /> + <location filename="../UI/UserInterface.py" line="2131" /> <source>Cooperation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2140" /> + <location filename="../UI/UserInterface.py" line="2132" /> <source>Co&operation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2141" /> + <location filename="../UI/UserInterface.py" line="2133" /> <source>Alt+Shift+O</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2144" /> + <location filename="../UI/UserInterface.py" line="2136" /> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2146" /> + <location filename="../UI/UserInterface.py" line="2138" /> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2159" /> + <location filename="../UI/UserInterface.py" line="2151" /> <source>&IRC</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2160" /> + <location filename="../UI/UserInterface.py" line="2152" /> <source>Ctrl+Alt+Shift+I</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2163" /> + <location filename="../UI/UserInterface.py" line="2155" /> <source>Switch the input focus to the IRC window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2165" /> + <location filename="../UI/UserInterface.py" line="2157" /> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2176" /> + <location filename="../UI/UserInterface.py" line="2168" /> <source>Symbols-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2177" /> + <location filename="../UI/UserInterface.py" line="2169" /> <source>S&ymbols-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2178" /> + <location filename="../UI/UserInterface.py" line="2170" /> <source>Alt+Shift+Y</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2181" /> + <location filename="../UI/UserInterface.py" line="2173" /> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2183" /> + <location filename="../UI/UserInterface.py" line="2175" /> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2195" /> + <location filename="../UI/UserInterface.py" line="2187" /> <source>Numbers-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2196" /> + <location filename="../UI/UserInterface.py" line="2188" /> <source>Num&bers-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2197" /> + <location filename="../UI/UserInterface.py" line="2189" /> <source>Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2200" /> + <location filename="../UI/UserInterface.py" line="2192" /> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2202" /> + <location filename="../UI/UserInterface.py" line="2194" /> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2216" /> + <location filename="../UI/UserInterface.py" line="2208" /> <source>Ctrl+Alt+Shift+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2219" /> + <location filename="../UI/UserInterface.py" line="2211" /> <source>Switch the input focus to the Code Documentation Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2222" /> + <location filename="../UI/UserInterface.py" line="2214" /> <source><b>Code Documentation Viewer</b><p>This switches the input focus to the Code Documentation Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2236" /> + <location filename="../UI/UserInterface.py" line="2228" /> <source>Ctrl+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2239" /> + <location filename="../UI/UserInterface.py" line="2231" /> <source>Switch the input focus to the PyPI window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2241" /> + <location filename="../UI/UserInterface.py" line="2233" /> <source><b>PyPI</b><p>This switches the input focus to the PyPI window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2254" /> + <location filename="../UI/UserInterface.py" line="2246" /> <source>Ctrl+Alt+Shift+C</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2257" /> + <location filename="../UI/UserInterface.py" line="2249" /> <source>Switch the input focus to the Conda window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2259" /> + <location filename="../UI/UserInterface.py" line="2251" /> <source><b>Conda</b><p>This switches the input focus to the Conda window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2272" /> + <location filename="../UI/UserInterface.py" line="2264" /> <source>Ctrl+Alt+Shift+M</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2275" /> + <location filename="../UI/UserInterface.py" line="2267" /> <source>Switch the input focus to the MicroPython window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2277" /> + <location filename="../UI/UserInterface.py" line="2269" /> <source><b>MicroPython</b><p>This switches the input focus to the MicroPython window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2290" /> + <location filename="../UI/UserInterface.py" line="2282" /> <source>Ctrl+Alt+Shift+R</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2293" /> + <location filename="../UI/UserInterface.py" line="2285" /> <source>Switch the input focus to the Plugin Repository window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2295" /> + <location filename="../UI/UserInterface.py" line="2287" /> <source><b>Plugin Repository</b><p>This switches the input focus to the Plugin Repository window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2308" /> + <location filename="../UI/UserInterface.py" line="2300" /> <source>Ctrl+Alt+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2311" /> + <location filename="../UI/UserInterface.py" line="2303" /> <source>Switch the input focus to the Virtual Environments Manager window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2314" /> + <location filename="../UI/UserInterface.py" line="2306" /> <source><b>Virtual Environments</b><p>This switches the input focus to the Virtual Environments Manager window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2327" /> + <location filename="../UI/UserInterface.py" line="2319" /> <source>Ctrl+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2330" /> + <location filename="../UI/UserInterface.py" line="2322" /> <source>Switch the input focus to the Find/Replace In Files window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2332" /> + <location filename="../UI/UserInterface.py" line="2324" /> <source><b>Find/Replace In Files</b><p>This switches the input focus to the Find/Replace In Files window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2345" /> + <location filename="../UI/UserInterface.py" line="2337" /> <source>Ctrl+Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2348" /> + <location filename="../UI/UserInterface.py" line="2340" /> <source>Switch the input focus to the Find File window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2350" /> + <location filename="../UI/UserInterface.py" line="2342" /> <source><b>Find File</b><p>This switches the input focus to the Find File window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2362" /> - <location filename="../UI/UserInterface.py" line="2361" /> + <location filename="../UI/UserInterface.py" line="2354" /> + <location filename="../UI/UserInterface.py" line="2353" /> <source>VCS Status List</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2363" /> + <location filename="../UI/UserInterface.py" line="2355" /> <source>Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2366" /> + <location filename="../UI/UserInterface.py" line="2358" /> <source>Switch the input focus to the VCS Status List window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2368" /> + <location filename="../UI/UserInterface.py" line="2360" /> <source><b>VCS Status List</b><p>This switches the input focus to the VCS Status List window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2381" /> + <location filename="../UI/UserInterface.py" line="2373" /> <source>Alt+Shift+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2384" /> + <location filename="../UI/UserInterface.py" line="2376" /> <source>Switch the input focus to the embedded Help Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2386" /> + <location filename="../UI/UserInterface.py" line="2378" /> <source><b>Help Viewer</b><p>This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2399" /> + <location filename="../UI/UserInterface.py" line="2391" /> <source>What's This?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2401" /> + <location filename="../UI/UserInterface.py" line="2393" /> <source>&What's This?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2402" /> + <location filename="../UI/UserInterface.py" line="2394" /> <source>Shift+F1</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2404" /> + <location filename="../UI/UserInterface.py" line="2396" /> <source>Context sensitive help</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2405" /> + <location filename="../UI/UserInterface.py" line="2397" /> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2417" /> + <location filename="../UI/UserInterface.py" line="2409" /> <source>Helpviewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2419" /> + <location filename="../UI/UserInterface.py" line="2411" /> <source>&Helpviewer...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2420" /> + <location filename="../UI/UserInterface.py" line="2412" /> <source>F1</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2422" /> + <location filename="../UI/UserInterface.py" line="2414" /> <source>Open the helpviewer window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2424" /> + <location filename="../UI/UserInterface.py" line="2416" /> <source><b>Helpviewer</b><p>Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2443" /> + <location filename="../UI/UserInterface.py" line="2435" /> <source>Show Versions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2444" /> + <location filename="../UI/UserInterface.py" line="2436" /> <source>Show &Versions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2446" /> + <location filename="../UI/UserInterface.py" line="2438" /> <source>Display version information</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2448" /> + <location filename="../UI/UserInterface.py" line="2440" /> <source><b>Show Versions</b><p>Display version information.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2458" /> - <location filename="../UI/UserInterface.py" line="2456" /> - <source>Check for Updates</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2457" /> - <source>Check for &Updates...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2459" /> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2467" /> - <source>Show downloadable versions</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2468" /> - <source>Show &downloadable versions...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2471" /> - <source>Show the versions available for download</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2472" /> - <source><b>Show downloadable versions...</b><p>Shows the eric versions available for download from the internet.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2485" /> - <location filename="../UI/UserInterface.py" line="2482" /> + <location filename="../UI/UserInterface.py" line="2451" /> + <location filename="../UI/UserInterface.py" line="2448" /> <source>Show Error Log</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2483" /> + <location filename="../UI/UserInterface.py" line="2449" /> <source>Show Error &Log...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2452" /> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2460" /> + <source>Show Install Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2461" /> + <source>Show Install &Info...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2463" /> + <source>Show Installation Information</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2465" /> + <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4083" /> + <location filename="../UI/UserInterface.py" line="2474" /> + <source>Report Bug</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2475" /> + <source>Report &Bug...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2477" /> + <source>Report a bug</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2478" /> + <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2486" /> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2494" /> - <source>Show Install Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2495" /> - <source>Show Install &Info...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2497" /> - <source>Show Installation Information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2499" /> - <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4120" /> - <location filename="../UI/UserInterface.py" line="2508" /> - <source>Report Bug</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2509" /> - <source>Report &Bug...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2511" /> - <source>Report a bug</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512" /> - <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <source>Request Feature</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2487" /> + <source>Request &Feature...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2489" /> + <source>Send a feature request</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2491" /> + <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606" /> + <location filename="../UI/UserInterface.py" line="3583" /> + <location filename="../UI/UserInterface.py" line="2501" /> + <source>Unittest</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2503" /> + <source>&Unittest...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2505" /> + <source>Start unittest dialog</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506" /> + <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2515" /> + <source>Unittest Restart</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2517" /> + <source>&Restart Unittest...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2519" /> + <source>Restart last unittest</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2520" /> - <source>Request Feature</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2521" /> - <source>Request &Feature...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2523" /> - <source>Send a feature request</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2525" /> - <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3643" /> - <location filename="../UI/UserInterface.py" line="3620" /> + <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2529" /> + <source>Unittest Rerun Failed</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2531" /> + <source>Rerun Failed Tests...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2533" /> + <source>Rerun failed tests of the last run</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2535" /> - <source>Unittest</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2537" /> - <source>&Unittest...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2539" /> - <source>Start unittest dialog</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2540" /> - <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2545" /> + <source>Unittest Script</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2547" /> + <source>Unittest &Script...</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2549" /> - <source>Unittest Restart</source> + <source>Run unittest with current script</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2551" /> - <source>&Restart Unittest...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2553" /> - <source>Restart last unittest</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2554" /> - <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2563" /> - <source>Unittest Rerun Failed</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2565" /> - <source>Rerun Failed Tests...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2567" /> - <source>Rerun failed tests of the last run</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2569" /> - <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2579" /> - <source>Unittest Script</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2581" /> - <source>Unittest &Script...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2583" /> - <source>Run unittest with current script</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2585" /> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2594" /> + <location filename="../UI/UserInterface.py" line="2560" /> <source>Unittest Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2596" /> + <location filename="../UI/UserInterface.py" line="2562" /> <source>Unittest &Project...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2598" /> + <location filename="../UI/UserInterface.py" line="2564" /> <source>Run unittest with current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2600" /> + <location filename="../UI/UserInterface.py" line="2566" /> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2621" /> + <location filename="../UI/UserInterface.py" line="2587" /> <source>Qt-Designer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2623" /> + <location filename="../UI/UserInterface.py" line="2589" /> <source>Qt-&Designer...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2625" /> + <location filename="../UI/UserInterface.py" line="2591" /> <source>Start Qt-Designer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2626" /> + <location filename="../UI/UserInterface.py" line="2592" /> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2613" /> + <source>Qt-Linguist</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2615" /> + <source>Qt-&Linguist...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2617" /> + <source>Start Qt-Linguist</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2618" /> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2628" /> + <source>UI Previewer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2630" /> + <source>&UI Previewer...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2632" /> + <source>Start the UI Previewer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2633" /> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2641" /> + <source>Translations Previewer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2643" /> + <source>&Translations Previewer...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2645" /> + <source>Start the Translations Previewer</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2647" /> - <source>Qt-Linguist</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2649" /> - <source>Qt-&Linguist...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2651" /> - <source>Start Qt-Linguist</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2652" /> - <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2662" /> - <source>UI Previewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2664" /> - <source>&UI Previewer...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2666" /> - <source>Start the UI Previewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2667" /> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2675" /> - <source>Translations Previewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2677" /> - <source>&Translations Previewer...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2679" /> - <source>Start the Translations Previewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2681" /> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2689" /> + <location filename="../UI/UserInterface.py" line="2655" /> <source>Compare Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2691" /> + <location filename="../UI/UserInterface.py" line="2657" /> <source>&Compare Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2706" /> - <location filename="../UI/UserInterface.py" line="2693" /> + <location filename="../UI/UserInterface.py" line="2672" /> + <location filename="../UI/UserInterface.py" line="2659" /> <source>Compare two files</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2694" /> + <location filename="../UI/UserInterface.py" line="2660" /> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2702" /> + <location filename="../UI/UserInterface.py" line="2668" /> <source>Compare Files side by side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2704" /> + <location filename="../UI/UserInterface.py" line="2670" /> <source>Compare &Files side by side...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2707" /> + <location filename="../UI/UserInterface.py" line="2673" /> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2716" /> + <location filename="../UI/UserInterface.py" line="2682" /> <source>SQL Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2718" /> + <location filename="../UI/UserInterface.py" line="2684" /> <source>SQL &Browser...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2720" /> + <location filename="../UI/UserInterface.py" line="2686" /> <source>Browse a SQL database</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2721" /> + <location filename="../UI/UserInterface.py" line="2687" /> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2733" /> - <location filename="../UI/UserInterface.py" line="2729" /> + <location filename="../UI/UserInterface.py" line="2699" /> + <location filename="../UI/UserInterface.py" line="2695" /> <source>Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2731" /> + <location filename="../UI/UserInterface.py" line="2697" /> <source>Mini &Editor...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2734" /> + <location filename="../UI/UserInterface.py" line="2700" /> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2742" /> + <location filename="../UI/UserInterface.py" line="2708" /> <source>Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2744" /> + <location filename="../UI/UserInterface.py" line="2710" /> <source>&Hex Editor...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2746" /> + <location filename="../UI/UserInterface.py" line="2712" /> <source>Start the eric Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2748" /> + <location filename="../UI/UserInterface.py" line="2714" /> <source><b>Hex Editor</b><p>Starts the eric Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2723" /> + <source>eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2725" /> + <source>eric &Web Browser...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2727" /> + <source>Start the eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2729" /> + <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2737" /> + <source>Icon Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2739" /> + <source>&Icon Editor...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2741" /> + <source>Start the eric Icon Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2743" /> + <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2751" /> + <source>Snapshot</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2753" /> + <source>&Snapshot...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2755" /> + <source>Take snapshots of a screen region</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757" /> - <source>eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2759" /> - <source>eric &Web Browser...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2761" /> - <source>Start the eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2763" /> - <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2771" /> - <source>Icon Editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2773" /> - <source>&Icon Editor...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2775" /> - <source>Start the eric Icon Editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2777" /> - <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2785" /> - <source>Snapshot</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2787" /> - <source>&Snapshot...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2789" /> - <source>Take snapshots of a screen region</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2791" /> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2766" /> + <source>Preferences</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768" /> + <source>&Preferences...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2770" /> + <source>Set the prefered configuration</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2772" /> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782" /> + <source>Export Preferences</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2784" /> + <source>E&xport Preferences...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2786" /> + <source>Export the current configuration</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2788" /> + <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2796" /> + <source>Import Preferences</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2798" /> + <source>I&mport Preferences...</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2800" /> - <source>Preferences</source> + <source>Import a previously exported configuration</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2802" /> - <source>&Preferences...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2804" /> - <source>Set the prefered configuration</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2806" /> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2810" /> + <source>Export Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2812" /> + <source>Export Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2814" /> + <source>Export the current theme</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2816" /> - <source>Export Preferences</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2818" /> - <source>E&xport Preferences...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2820" /> - <source>Export the current configuration</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2822" /> - <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2824" /> + <source>Import Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2826" /> + <source>Import Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2828" /> + <source>Import a previously exported theme</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2830" /> - <source>Import Preferences</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2832" /> - <source>I&mport Preferences...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2834" /> - <source>Import a previously exported configuration</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2836" /> - <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2844" /> - <source>Export Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2846" /> - <source>Export Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2848" /> - <source>Export the current theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2850" /> - <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2858" /> - <source>Import Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2860" /> - <source>Import Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2862" /> - <source>Import a previously exported theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2864" /> <source><b>Import Theme</b><p>Import a previously exported theme.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2872" /> + <location filename="../UI/UserInterface.py" line="2838" /> <source>Reload APIs</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2839" /> + <source>Reload &APIs</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2841" /> + <source>Reload the API information</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2843" /> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2855" /> + <location filename="../UI/UserInterface.py" line="2851" /> + <source>Show external tools</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2853" /> + <source>Show external &tools</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857" /> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2867" /> + <source>View Profiles</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2869" /> + <source>&View Profiles...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2871" /> + <source>Configure view profiles</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2873" /> - <source>Reload &APIs</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2875" /> - <source>Reload the API information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2877" /> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2884" /> + <source>Toolbars</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2886" /> + <source>Tool&bars...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2888" /> + <source>Configure toolbars</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2889" /> - <location filename="../UI/UserInterface.py" line="2885" /> - <source>Show external tools</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887" /> - <source>Show external &tools</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2891" /> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2899" /> + <source>Keyboard Shortcuts</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2901" /> - <source>View Profiles</source> + <source>Keyboard &Shortcuts...</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2903" /> - <source>&View Profiles...</source> + <source>Set the keyboard shortcuts</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2905" /> - <source>Configure view profiles</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2907" /> - <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756" /> + <location filename="../UI/UserInterface.py" line="6738" /> + <location filename="../UI/UserInterface.py" line="2914" /> + <source>Export Keyboard Shortcuts</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2916" /> + <source>&Export Keyboard Shortcuts...</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2918" /> - <source>Toolbars</source> + <source>Export the keyboard shortcuts</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2920" /> - <source>Tool&bars...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2922" /> - <source>Configure toolbars</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2923" /> - <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2933" /> - <source>Keyboard Shortcuts</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2935" /> - <source>Keyboard &Shortcuts...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2937" /> - <source>Set the keyboard shortcuts</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2939" /> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6698" /> - <location filename="../UI/UserInterface.py" line="6680" /> - <location filename="../UI/UserInterface.py" line="2948" /> - <source>Export Keyboard Shortcuts</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2950" /> - <source>&Export Keyboard Shortcuts...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2952" /> - <source>Export the keyboard shortcuts</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2954" /> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6715" /> - <location filename="../UI/UserInterface.py" line="2962" /> + <location filename="../UI/UserInterface.py" line="6773" /> + <location filename="../UI/UserInterface.py" line="2928" /> <source>Import Keyboard Shortcuts</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2964" /> + <location filename="../UI/UserInterface.py" line="2930" /> <source>&Import Keyboard Shortcuts...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2966" /> + <location filename="../UI/UserInterface.py" line="2932" /> <source>Import the keyboard shortcuts</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2968" /> + <location filename="../UI/UserInterface.py" line="2934" /> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2977" /> + <location filename="../UI/UserInterface.py" line="2943" /> <source>Manage SSL Certificates</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2979" /> + <location filename="../UI/UserInterface.py" line="2945" /> <source>Manage SSL Certificates...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2947" /> + <source>Manage the saved SSL certificates</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2949" /> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2959" /> + <source>Edit Message Filters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2961" /> + <source>Edit Message Filters...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2963" /> + <source>Edit the message filters used to suppress unwanted messages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2965" /> + <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2981" /> - <source>Manage the saved SSL certificates</source> + <location filename="../UI/UserInterface.py" line="2978" /> + <location filename="../UI/UserInterface.py" line="2976" /> + <source>Clear private data</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2983" /> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation type="unfinished" /> - </message> - <message> + <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" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2994" /> <location filename="../UI/UserInterface.py" line="2993" /> - <source>Edit Message Filters</source> + <source>Activate current editor</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2995" /> - <source>Edit Message Filters...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2997" /> - <source>Edit the message filters used to suppress unwanted messages</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2999" /> - <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3015" /> + <source>Alt+Shift+E</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3004" /> + <location filename="../UI/UserInterface.py" line="3003" /> + <source>Show next</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3005" /> + <source>Ctrl+Alt+Tab</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3013" /> <location filename="../UI/UserInterface.py" line="3012" /> - <location filename="../UI/UserInterface.py" line="3010" /> - <source>Clear private data</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3017" /> - <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" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3028" /> - <location filename="../UI/UserInterface.py" line="3027" /> - <source>Activate current editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3029" /> - <source>Alt+Shift+E</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3038" /> - <location filename="../UI/UserInterface.py" line="3037" /> - <source>Show next</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3039" /> - <source>Ctrl+Alt+Tab</source> + <source>Show previous</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3014" /> + <source>Shift+Ctrl+Alt+Tab</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3022" /> + <location filename="../UI/UserInterface.py" line="3021" /> + <source>Switch between tabs</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3023" /> + <source>Ctrl+1</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3030" /> + <source>Plugin Infos</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3032" /> + <source>&Plugin Infos...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3033" /> + <source>Show Plugin Infos</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3034" /> + <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="3047" /> - <location filename="../UI/UserInterface.py" line="3046" /> - <source>Show previous</source> + <location filename="../UI/UserInterface.py" line="3043" /> + <source>Install Plugins</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3045" /> + <source>&Install Plugins...</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="3048" /> - <source>Shift+Ctrl+Alt+Tab</source> - <translation type="unfinished" /> - </message> - <message> + <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3060" /> <location filename="../UI/UserInterface.py" line="3056" /> - <location filename="../UI/UserInterface.py" line="3055" /> - <source>Switch between tabs</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3057" /> - <source>Ctrl+1</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3064" /> - <source>Plugin Infos</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3066" /> - <source>&Plugin Infos...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3067" /> - <source>Show Plugin Infos</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3068" /> - <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3081" /> - <location filename="../UI/UserInterface.py" line="3077" /> - <source>Install Plugins</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3079" /> - <source>&Install Plugins...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3082" /> - <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3094" /> - <location filename="../UI/UserInterface.py" line="3090" /> <source>Uninstall Plugin</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3092" /> + <location filename="../UI/UserInterface.py" line="3058" /> <source>&Uninstall Plugin...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3095" /> + <location filename="../UI/UserInterface.py" line="3061" /> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3105" /> + <location filename="../UI/UserInterface.py" line="3071" /> <source>Plugin &Repository...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3107" /> + <location filename="../UI/UserInterface.py" line="3073" /> <source>Show Plugins available for download</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3109" /> + <location filename="../UI/UserInterface.py" line="3075" /> <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" /> </message> <message> + <location filename="../UI/UserInterface.py" line="3101" /> + <location filename="../UI/UserInterface.py" line="3100" /> + <source>Qt5 Documentation</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3103" /> + <source>Open Qt5 Documentation</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3104" /> + <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3116" /> + <location filename="../UI/UserInterface.py" line="3115" /> + <source>Qt6 Documentation</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3118" /> + <source>Open Qt6 Documentation</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3119" /> + <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3131" /> + <location filename="../UI/UserInterface.py" line="3130" /> + <source>PyQt5 Documentation</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3133" /> + <source>Open PyQt5 Documentation</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="3135" /> - <location filename="../UI/UserInterface.py" line="3134" /> - <source>Qt5 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3137" /> - <source>Open Qt5 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3138" /> - <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3148" /> + <location filename="../UI/UserInterface.py" line="3147" /> + <source>PyQt6 Documentation</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="3150" /> - <location filename="../UI/UserInterface.py" line="3149" /> - <source>Qt6 Documentation</source> + <source>Open PyQt6 Documentation</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="3152" /> - <source>Open Qt6 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3153" /> - <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3165" /> - <location filename="../UI/UserInterface.py" line="3164" /> - <source>PyQt5 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3167" /> - <source>Open PyQt5 Documentation</source> - <translation type="unfinished" /> - </message> - <message> + <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3170" /> <location filename="../UI/UserInterface.py" line="3169" /> - <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3182" /> - <location filename="../UI/UserInterface.py" line="3181" /> - <source>PyQt6 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3184" /> - <source>Open PyQt6 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3186" /> - <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3204" /> - <location filename="../UI/UserInterface.py" line="3203" /> <source>Python 3 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3206" /> + <location filename="../UI/UserInterface.py" line="3172" /> <source>Open Python 3 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3208" /> + <location filename="../UI/UserInterface.py" line="3174" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3226" /> - <location filename="../UI/UserInterface.py" line="3225" /> + <location filename="../UI/UserInterface.py" line="3192" /> + <location filename="../UI/UserInterface.py" line="3191" /> <source>eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3228" /> + <location filename="../UI/UserInterface.py" line="3194" /> <source>Open eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3230" /> + <location filename="../UI/UserInterface.py" line="3196" /> <source><b>eric API Documentation</b><p>Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3247" /> - <location filename="../UI/UserInterface.py" line="3246" /> + <location filename="../UI/UserInterface.py" line="3213" /> + <location filename="../UI/UserInterface.py" line="3212" /> <source>PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3249" /> + <location filename="../UI/UserInterface.py" line="3215" /> <source>Open PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3251" /> + <location filename="../UI/UserInterface.py" line="3217" /> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3267" /> - <location filename="../UI/UserInterface.py" line="3266" /> + <location filename="../UI/UserInterface.py" line="3233" /> + <location filename="../UI/UserInterface.py" line="3232" /> <source>PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3269" /> + <location filename="../UI/UserInterface.py" line="3235" /> <source>Open PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3271" /> + <location filename="../UI/UserInterface.py" line="3237" /> <source><b>PySide6 Documentation</b><p>Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3373" /> + <location filename="../UI/UserInterface.py" line="3339" /> <source>E&xtras</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3383" /> + <location filename="../UI/UserInterface.py" line="3349" /> <source>Wi&zards</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3402" /> + <location filename="../UI/UserInterface.py" line="3368" /> <source>P&lugins</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3412" /> + <location filename="../UI/UserInterface.py" line="3378" /> <source>Configure...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3421" /> + <location filename="../UI/UserInterface.py" line="3387" /> <source>&Unittest</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3438" /> + <location filename="../UI/UserInterface.py" line="3404" /> <source>Select Tool Group</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3449" /> + <location filename="../UI/UserInterface.py" line="3415" /> <source>Se&ttings</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3482" /> + <location filename="../UI/UserInterface.py" line="3448" /> <source>&Window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3491" /> + <location filename="../UI/UserInterface.py" line="3457" /> <source>&Windows</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3496" /> + <location filename="../UI/UserInterface.py" line="3462" /> <source>Central Park</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3500" /> + <location filename="../UI/UserInterface.py" line="3466" /> <source>Left Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3517" /> + <location filename="../UI/UserInterface.py" line="3483" /> <source>Right Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3541" /> + <location filename="../UI/UserInterface.py" line="3507" /> <source>Bottom Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3549" /> + <location filename="../UI/UserInterface.py" line="3515" /> <source>Plug-ins</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3556" /> + <location filename="../UI/UserInterface.py" line="3522" /> <source>&Toolbars</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3569" /> + <location filename="../UI/UserInterface.py" line="3535" /> <source>&Help</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3642" /> - <location filename="../UI/UserInterface.py" line="3619" /> + <location filename="../UI/UserInterface.py" line="3605" /> + <location filename="../UI/UserInterface.py" line="3582" /> <source>Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3644" /> - <location filename="../UI/UserInterface.py" line="3623" /> + <location filename="../UI/UserInterface.py" line="3607" /> + <location filename="../UI/UserInterface.py" line="3586" /> <source>Settings</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5541" /> - <location filename="../UI/UserInterface.py" line="3645" /> - <location filename="../UI/UserInterface.py" line="3624" /> + <location filename="../UI/UserInterface.py" line="5600" /> + <location filename="../UI/UserInterface.py" line="3608" /> + <location filename="../UI/UserInterface.py" line="3587" /> <source>Help</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3646" /> - <location filename="../UI/UserInterface.py" line="3625" /> + <location filename="../UI/UserInterface.py" line="3609" /> + <location filename="../UI/UserInterface.py" line="3588" /> <source>Profiles</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3647" /> - <location filename="../UI/UserInterface.py" line="3626" /> + <location filename="../UI/UserInterface.py" line="3610" /> + <location filename="../UI/UserInterface.py" line="3589" /> <source>Plugins</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3811" /> + <location filename="../UI/UserInterface.py" line="3774" /> <source><p>This part of the status bar displays the current editors language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3818" /> + <location filename="../UI/UserInterface.py" line="3781" /> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3825" /> + <location filename="../UI/UserInterface.py" line="3788" /> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3832" /> + <location filename="../UI/UserInterface.py" line="3795" /> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3839" /> + <location filename="../UI/UserInterface.py" line="3802" /> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3846" /> + <location filename="../UI/UserInterface.py" line="3809" /> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3857" /> + <location filename="../UI/UserInterface.py" line="3820" /> <source><p>This part of the status bar allows zooming the current editor or shell.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3922" /> - <location filename="../UI/UserInterface.py" line="3882" /> + <location filename="../UI/UserInterface.py" line="3885" /> + <location filename="../UI/UserInterface.py" line="3845" /> <source>External Tools/{0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4028" /> + <location filename="../UI/UserInterface.py" line="3991" /> <source><h2>Version Numbers</h2><table></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4082" /> + <location filename="../UI/UserInterface.py" line="4045" /> <source>Desktop</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4085" /> + <location filename="../UI/UserInterface.py" line="4048" /> <source>Session Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7778" /> - <location filename="../UI/UserInterface.py" line="4087" /> + <location filename="../UI/UserInterface.py" line="4050" /> <source></table></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4121" /> + <location filename="../UI/UserInterface.py" line="4084" /> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4432" /> + <location filename="../UI/UserInterface.py" line="4395" /> <source>Restart application</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4433" /> + <location filename="../UI/UserInterface.py" line="4396" /> <source>The application needs to be restarted. Do it now?</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="4420" /> + <source>Upgrade PyQt</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4421" /> + <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="4467" /> + <location filename="../UI/UserInterface.py" line="4443" /> + <source>Upgrade Eric</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4444" /> + <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4468" /> + <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time. + + Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4526" /> <source>&Builtin Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4484" /> + <location filename="../UI/UserInterface.py" line="4543" /> <source>&Plugin Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4487" /> + <location filename="../UI/UserInterface.py" line="4546" /> <source>&User Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4513" /> + <location filename="../UI/UserInterface.py" line="4572" /> <source>Configure Tool Groups ...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4517" /> + <location filename="../UI/UserInterface.py" line="4576" /> <source>Configure current Tool Group ...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4558" /> - <location filename="../UI/UserInterface.py" line="4538" /> + <location filename="../UI/UserInterface.py" line="4617" /> + <location filename="../UI/UserInterface.py" line="4597" /> <source>No User Tools Configured</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4632" /> + <location filename="../UI/UserInterface.py" line="4691" /> <source>&Show all</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4634" /> + <location filename="../UI/UserInterface.py" line="4693" /> <source>&Hide all</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5669" /> - <location filename="../UI/UserInterface.py" line="5659" /> - <location filename="../UI/UserInterface.py" line="5612" /> - <location filename="../UI/UserInterface.py" line="5603" /> - <location filename="../UI/UserInterface.py" line="5442" /> - <location filename="../UI/UserInterface.py" line="5433" /> - <location filename="../UI/UserInterface.py" line="5372" /> - <location filename="../UI/UserInterface.py" line="5363" /> + <location filename="../UI/UserInterface.py" line="5728" /> + <location filename="../UI/UserInterface.py" line="5718" /> + <location filename="../UI/UserInterface.py" line="5671" /> + <location filename="../UI/UserInterface.py" line="5662" /> + <location filename="../UI/UserInterface.py" line="5501" /> + <location filename="../UI/UserInterface.py" line="5492" /> + <location filename="../UI/UserInterface.py" line="5431" /> + <location filename="../UI/UserInterface.py" line="5422" /> <source>Problem</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5670" /> - <location filename="../UI/UserInterface.py" line="5660" /> - <location filename="../UI/UserInterface.py" line="5613" /> - <location filename="../UI/UserInterface.py" line="5604" /> - <location filename="../UI/UserInterface.py" line="5443" /> - <location filename="../UI/UserInterface.py" line="5434" /> - <location filename="../UI/UserInterface.py" line="5373" /> - <location filename="../UI/UserInterface.py" line="5364" /> + <location filename="../UI/UserInterface.py" line="5729" /> + <location filename="../UI/UserInterface.py" line="5719" /> + <location filename="../UI/UserInterface.py" line="5672" /> + <location filename="../UI/UserInterface.py" line="5663" /> + <location filename="../UI/UserInterface.py" line="5502" /> + <location filename="../UI/UserInterface.py" line="5493" /> + <location filename="../UI/UserInterface.py" line="5432" /> + <location filename="../UI/UserInterface.py" line="5423" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5877" /> - <location filename="../UI/UserInterface.py" line="5790" /> - <location filename="../UI/UserInterface.py" line="5705" /> - <location filename="../UI/UserInterface.py" line="5682" /> - <location filename="../UI/UserInterface.py" line="5625" /> - <location filename="../UI/UserInterface.py" line="5575" /> - <location filename="../UI/UserInterface.py" line="5555" /> - <location filename="../UI/UserInterface.py" line="5517" /> - <location filename="../UI/UserInterface.py" line="5508" /> - <location filename="../UI/UserInterface.py" line="5473" /> - <location filename="../UI/UserInterface.py" line="5464" /> - <location filename="../UI/UserInterface.py" line="5403" /> - <location filename="../UI/UserInterface.py" line="5394" /> + <location filename="../UI/UserInterface.py" line="5936" /> + <location filename="../UI/UserInterface.py" line="5849" /> + <location filename="../UI/UserInterface.py" line="5764" /> + <location filename="../UI/UserInterface.py" line="5741" /> + <location filename="../UI/UserInterface.py" line="5684" /> + <location filename="../UI/UserInterface.py" line="5634" /> + <location filename="../UI/UserInterface.py" line="5614" /> + <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5567" /> + <location filename="../UI/UserInterface.py" line="5532" /> + <location filename="../UI/UserInterface.py" line="5523" /> + <location filename="../UI/UserInterface.py" line="5462" /> + <location filename="../UI/UserInterface.py" line="5453" /> <source>Process Generation Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5395" /> + <location filename="../UI/UserInterface.py" line="5454" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5404" /> + <location filename="../UI/UserInterface.py" line="5463" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5465" /> + <location filename="../UI/UserInterface.py" line="5524" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5474" /> + <location filename="../UI/UserInterface.py" line="5533" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5509" /> + <location filename="../UI/UserInterface.py" line="5568" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5518" /> + <location filename="../UI/UserInterface.py" line="5577" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5542" /> + <location filename="../UI/UserInterface.py" line="5601" /> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5556" /> + <location filename="../UI/UserInterface.py" line="5615" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5635" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5626" /> + <location filename="../UI/UserInterface.py" line="5685" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5683" /> + <location filename="../UI/UserInterface.py" line="5742" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5706" /> + <location filename="../UI/UserInterface.py" line="5765" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5791" /> + <location filename="../UI/UserInterface.py" line="5850" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5822" /> - <location filename="../UI/UserInterface.py" line="5813" /> + <location filename="../UI/UserInterface.py" line="5881" /> + <location filename="../UI/UserInterface.py" line="5872" /> <source>External Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5814" /> + <location filename="../UI/UserInterface.py" line="5873" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5823" /> + <location filename="../UI/UserInterface.py" line="5882" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5859" /> + <location filename="../UI/UserInterface.py" line="5918" /> <source>Starting process '{0} {1}'. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5878" /> + <location filename="../UI/UserInterface.py" line="5937" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5953" /> + <location filename="../UI/UserInterface.py" line="6012" /> <source>Process '{0}' has exited. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6225" /> - <location filename="../UI/UserInterface.py" line="6167" /> - <location filename="../UI/UserInterface.py" line="6126" /> - <location filename="../UI/UserInterface.py" line="6058" /> - <location filename="../UI/UserInterface.py" line="5996" /> + <location filename="../UI/UserInterface.py" line="6284" /> + <location filename="../UI/UserInterface.py" line="6226" /> + <location filename="../UI/UserInterface.py" line="6185" /> + <location filename="../UI/UserInterface.py" line="6117" /> + <location filename="../UI/UserInterface.py" line="6055" /> <source>Documentation Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6226" /> - <location filename="../UI/UserInterface.py" line="6168" /> - <location filename="../UI/UserInterface.py" line="6127" /> - <location filename="../UI/UserInterface.py" line="6059" /> - <location filename="../UI/UserInterface.py" line="5997" /> + <location filename="../UI/UserInterface.py" line="6285" /> + <location filename="../UI/UserInterface.py" line="6227" /> + <location filename="../UI/UserInterface.py" line="6186" /> + <location filename="../UI/UserInterface.py" line="6118" /> + <location filename="../UI/UserInterface.py" line="6056" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6208" /> - <location filename="../UI/UserInterface.py" line="6099" /> + <location filename="../UI/UserInterface.py" line="6267" /> + <location filename="../UI/UserInterface.py" line="6158" /> <source>Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6100" /> + <location filename="../UI/UserInterface.py" line="6159" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6209" /> + <location filename="../UI/UserInterface.py" line="6268" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6387" /> - <location filename="../UI/UserInterface.py" line="6323" /> + <location filename="../UI/UserInterface.py" line="6446" /> + <location filename="../UI/UserInterface.py" line="6382" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6324" /> + <location filename="../UI/UserInterface.py" line="6383" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6388" /> + <location filename="../UI/UserInterface.py" line="6447" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6430" /> + <location filename="../UI/UserInterface.py" line="6489" /> <source>Open Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6431" /> + <location filename="../UI/UserInterface.py" line="6490" /> <source>Could not start a web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6682" /> + <location filename="../UI/UserInterface.py" line="6740" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6699" /> + <location filename="../UI/UserInterface.py" line="6757" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6717" /> + <location filename="../UI/UserInterface.py" line="6775" /> <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6909" /> + <location filename="../UI/UserInterface.py" line="6967" /> <source>Read Tasks</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6910" /> + <location filename="../UI/UserInterface.py" line="6968" /> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6957" /> + <location filename="../UI/UserInterface.py" line="7015" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6985" /> - <location filename="../UI/UserInterface.py" line="6958" /> + <location filename="../UI/UserInterface.py" line="7043" /> + <location filename="../UI/UserInterface.py" line="7016" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6984" /> + <location filename="../UI/UserInterface.py" line="7042" /> <source>Read session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7000" /> + <location filename="../UI/UserInterface.py" line="7058" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7002" /> + <location filename="../UI/UserInterface.py" line="7060" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="7082" /> <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7072" /> + <location filename="../UI/UserInterface.py" line="7130" /> <source>Crash Session found!</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7073" /> + <location filename="../UI/UserInterface.py" line="7131" /> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7374" /> + <location filename="../UI/UserInterface.py" line="7432" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7375" /> + <location filename="../UI/UserInterface.py" line="7433" /> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <source>&Cancel</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7554" /> - <source>%v/%m</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7556" /> - <source>Version Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7561" /> - <source>Trying host {0}</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7630" /> - <location filename="../UI/UserInterface.py" line="7623" /> - <location filename="../UI/UserInterface.py" line="7574" /> - <source>Error getting versions information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7575" /> - <source>The versions information cannot not be downloaded because the Internet is <b>not reachable</b>. Please try again later.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7624" /> - <source>The versions information could not be downloaded. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> + <location filename="../UI/UserInterface.py" line="7597" /> + <source>Upgrade available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7598" /> + <source>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7642" /> <location filename="../UI/UserInterface.py" line="7631" /> - <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7722" /> - <location filename="../UI/UserInterface.py" line="7688" /> - <source>Update available</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7723" /> - <location filename="../UI/UserInterface.py" line="7689" /> - <source>The update to <b>{0}</b> of eric is available at <b>{1}</b>. Would you like to get it?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7710" /> - <location filename="../UI/UserInterface.py" line="7700" /> - <source>Update Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7701" /> - <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7711" /> - <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7734" /> - <source>eric is up to date</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7735" /> - <source>You are using the latest version of eric</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7741" /> - <source>Error during updates check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7742" /> - <source>Could not perform updates check.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7763" /> - <source><h3>Available versions</h3><table></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7829" /> - <location filename="../UI/UserInterface.py" line="7818" /> <source>First time usage</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7819" /> + <location filename="../UI/UserInterface.py" line="7632" /> <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7830" /> + <location filename="../UI/UserInterface.py" line="7643" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7850" /> + <location filename="../UI/UserInterface.py" line="7663" /> <source>Select Workspace Directory</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8027" /> + <location filename="../UI/UserInterface.py" line="7840" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8028" /> + <location filename="../UI/UserInterface.py" line="7841" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> @@ -83495,6 +83678,49 @@ </message> </context> <context> + <name>VersionsDialog</name> + <message> + <location filename="../UI/VersionsDialog.py" line="49" /> + <source>Check for Upgrades...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="92" /> + <source>No upgrades available.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="96" /> + <source>Upgrade eric7...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="100" /> + <source><p>An upgrade of <b>eric7</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="105" /> + <source>Upgrade PyQt6...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="109" /> + <source><p>An upgrade of <b>PyQt6</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="114" /> + <source>Upgrade Both...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="128" /> + <source>Check for Upgrades</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>ViewManager</name> <message> <location filename="../HexEdit/HexEditMainWindow.py" line="518" /> @@ -88183,7 +88409,7 @@ <context> <name>VirtualenvInterpreterSelectionDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="45" /> + <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="47" /> <source>Python Interpreter</source> <translation type="unfinished" /> </message> @@ -88211,54 +88437,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="232" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="243" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="233" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="244" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="295" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="306" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="346" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="296" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="307" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="345" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="433" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="369" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="444" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="380" /> <source>{0} - {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="377" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="378" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="441" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="452" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="453" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -89185,22 +89411,22 @@ <context> <name>WebBrowserPage</name> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="195" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="189" /> <source>Suspicuous URL detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="196" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="190" /> <source><p>The URL <b>{0}</b> was found in the Safe Browsing database.</p>{1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="663" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="657" /> <source>SSL Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="664" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="658" /> <source>This site does not contain SSL information.</source> <translation type="unfinished" /> </message> @@ -90519,12 +90745,12 @@ <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2282" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2287" /> <source>Quota Request</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2288" /> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished" /> </message>
--- a/eric7/i18n/eric7_en.ts Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/i18n/eric7_en.ts Sat Apr 02 11:23:11 2022 +0200 @@ -1474,6 +1474,26 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader Delay:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Enter the time the upgrader process should wait for eric to exit</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source> s</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> <source>Reporting</source> <translation type="unfinished" /> </message> @@ -44936,7 +44956,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="473" /> + <location filename="../Preferences/__init__.py" line="471" /> <location filename="../QScintilla/Lexers/__init__.py" line="415" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished" /> @@ -45189,7 +45209,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="475" /> + <location filename="../Preferences/__init__.py" line="473" /> <location filename="../QScintilla/Lexers/__init__.py" line="585" /> <source>Python3 Files (*.py)</source> <translation type="unfinished" /> @@ -51056,119 +51076,113 @@ <context> <name>Pip</name> <message> - <location filename="../PipInterface/Pip.py" line="109" /> + <location filename="../PipInterface/Pip.py" line="123" /> <source>python exited with an error ({0}).</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="116" /> + <location filename="../PipInterface/Pip.py" line="130" /> <source>python did not finish within 30 seconds.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="119" /> + <location filename="../PipInterface/Pip.py" line="133" /> <source>python could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="179" /> + <location filename="../PipInterface/Pip.py" line="193" /> <source><project></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="208" /> + <location filename="../PipInterface/Pip.py" line="222" /> <source>Interpreter for Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="209" /> + <location filename="../PipInterface/Pip.py" line="223" /> <source>No interpreter configured for the selected virtual environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="244" /> + <location filename="../PipInterface/Pip.py" line="258" /> <source>Install PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="286" /> + <location filename="../PipInterface/Pip.py" line="300" /> <source>Repair PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="359" /> - <location filename="../PipInterface/Pip.py" line="311" /> + <location filename="../PipInterface/Pip.py" line="383" /> <source>Upgrade Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="312" /> - <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/Pip.py" line="399" /> + <location filename="../PipInterface/Pip.py" line="423" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="428" /> + <location filename="../PipInterface/Pip.py" line="452" /> <source>Install Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="491" /> - <location filename="../PipInterface/Pip.py" line="460" /> - <location filename="../PipInterface/Pip.py" line="451" /> + <location filename="../PipInterface/Pip.py" line="515" /> + <location filename="../PipInterface/Pip.py" line="484" /> + <location filename="../PipInterface/Pip.py" line="475" /> <source>Uninstall Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="492" /> - <location filename="../PipInterface/Pip.py" line="452" /> + <location filename="../PipInterface/Pip.py" line="516" /> + <location filename="../PipInterface/Pip.py" line="476" /> <source>Do you really want to uninstall these packages?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="503" /> + <location filename="../PipInterface/Pip.py" line="527" /> <source>Uninstall Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="721" /> + <location filename="../PipInterface/Pip.py" line="844" /> <source>Cache Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="746" /> - <location filename="../PipInterface/Pip.py" line="738" /> + <location filename="../PipInterface/Pip.py" line="869" /> + <location filename="../PipInterface/Pip.py" line="861" /> <source>List Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="739" /> + <location filename="../PipInterface/Pip.py" line="862" /> <source>Enter a file pattern (empty for all):</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="770" /> - <location filename="../PipInterface/Pip.py" line="764" /> + <location filename="../PipInterface/Pip.py" line="893" /> + <location filename="../PipInterface/Pip.py" line="887" /> <source>Remove Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="765" /> + <location filename="../PipInterface/Pip.py" line="888" /> <source>Enter a file pattern:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="793" /> - <location filename="../PipInterface/Pip.py" line="788" /> + <location filename="../PipInterface/Pip.py" line="916" /> + <location filename="../PipInterface/Pip.py" line="911" /> <source>Purge Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="789" /> + <location filename="../PipInterface/Pip.py" line="912" /> <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source> <translation type="unfinished" /> </message> @@ -51287,18 +51301,18 @@ <location filename="../PipInterface/PipFreezeDialog.py" line="230" /> <location filename="../PipInterface/PipFreezeDialog.py" line="210" /> <location filename="../PipInterface/PipFreezeDialog.py" line="198" /> - <location filename="../PipInterface/PipFreezeDialog.py" line="118" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="122" /> <source>Generate Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="119" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="123" /> <source>The requirements were changed. Do you want to overwrite these changes?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="160" /> - <source>No output generated by 'pip freeze'.</source> + <location filename="../PipInterface/PipFreezeDialog.py" line="158" /> + <source>No package specifiers generated by 'pip freeze'.</source> <translation type="unfinished" /> </message> <message> @@ -51328,6 +51342,16 @@ </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>Select to show requirements for packages installed to the user-site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Requirements File:</source> <translation type="unfinished" /> </message> @@ -51388,6 +51412,65 @@ </message> </context> <context> + <name>PipLicensesDialog</name> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package Licenses</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Local packages only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Version</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>License</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="61" /> + <source>Licenses of "{0}"</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="65" /> + <source>No environment specified.</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PipPackageDetailsDialog</name> <message> <location filename="../PipInterface/PipPackageDetailsDialog.py" line="46" /> @@ -51640,11 +51723,17 @@ <name>PipPackagesWidget</name> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Toggle to show or hide the dependency tree view</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only locally-installed packages</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Local packages only</source> <translation type="unfinished" /> </message> @@ -51665,11 +51754,23 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>User-Site only</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Perform vulnerability checks based on "Safety DB".</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Vulnerability Check</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Package</source> @@ -51677,12 +51778,18 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Installed Version</source> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Installed</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Available Version</source> + <source>Available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Affected</source> <translation type="unfinished" /> </message> <message> @@ -51728,6 +51835,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Press to show details for the selected entry</source> <translation type="unfinished" /> </message> @@ -51738,11 +51846,6 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Press to start the search</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Enter the search term for the package name</source> <translation type="unfinished" /> </message> @@ -51753,6 +51856,16 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to start the search</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to search for more packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Version</source> <translation type="unfinished" /> </message> @@ -51777,104 +51890,150 @@ <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="169" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>View Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package requires other packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Requires</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package is required by others</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required By</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to refresh the dependency tree</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="185" /> <source>pip Menu</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="195" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="230" /> <source>Name:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="196" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="231" /> <source>Version:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="197" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="232" /> <source>Location:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="198" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="233" /> <source>Requires:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="199" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="234" /> <source>Summary:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="200" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="235" /> <source>Homepage:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="201" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="236" /> <source>Author:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="202" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="237" /> <source>Author Email:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="203" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="238" /> <source>License:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="204" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="239" /> <source>Metadata Version:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="205" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="240" /> <source>Installer:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="206" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="241" /> <source>Classifiers:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="207" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="242" /> <source>Entry Points:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="208" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="243" /> <source>Files:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="375" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="427" /> <source>Getting installed packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="390" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="443" /> <source>Getting outdated packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="975" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="812" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="790" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1141" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="972" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="961" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="930" /> <source>Search PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="791" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="931" /> <source><p>Received an error while searching for <b>{0}</b>.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../PipInterface/PipPackagesWidget.py" line="805" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="946" /> <source>%n package(s) found.</source> <translation> <numerusform>%n package found.</numerusform> @@ -51882,116 +52041,157 @@ </translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="807" /> - <source>Showing first 20 packages found.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="815" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="813" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="950" /> + <source>Showing first {0} packages found.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="966" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="962" /> <source><p>There were no results for <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="976" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="973" /> + <source><p>There were no more results for <b>{0}</b>.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1142" /> <source><p>No package details info for <b>{0}</b> available.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="990" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1156" /> <source>Install Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="993" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1159" /> <source>Install Pip to User-Site</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="996" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1162" /> <source>Repair Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1116" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1000" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1299" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1166" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1003" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1169" /> <source>Install Local Package</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1007" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1173" /> <source>Install Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1010" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1176" /> <source>Re-Install Selected Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1013" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1179" /> <source>Uninstall Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1016" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1182" /> <source>Generate Requirements...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1020" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1186" /> + <source>Show Licenses...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1190" /> + <source>Check Vulnerabilities</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1194" /> + <source>Update Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1198" /> <source>Show Cache Info...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1023" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1201" /> <source>Show Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1026" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1204" /> <source>Remove Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1029" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1207" /> <source>Purge Cache...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1034" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1212" /> <source>Edit User Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1037" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1215" /> <source>Edit Environment Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1042" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1220" /> <source>Configure...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1237" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1224" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1213" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1421" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1408" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1397" /> <source>Edit Configuration</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1238" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1225" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1214" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1422" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1409" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1398" /> <source>No valid configuration path determined. Aborting</source> <translation type="unfinished" /> </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1576" /> + <source>{0} {1}</source> + <comment>package name, package version</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1598" /> + <source>Affected Version:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1601" /> + <source>Advisory:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1716" /> + <source>any</source> + <translation type="unfinished" /> + </message> </context> <context> <name>PipPage</name> @@ -52001,6 +52201,11 @@ <translation type="unfinished" /> </message> <message> + <location filename="../Preferences/ConfigurationPages/PipPage.py" line="34" /> + <source><b>Note:</b> Leave empty to use the default Safety DB URL ({0}).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source><b>Configure pip</b></source> <translation type="unfinished" /> @@ -52017,6 +52222,36 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Vulnerability Checks</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Safety DB URL:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the base URL for the Safety DB mirror to be used</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Cache Validity:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source> hours</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source>Environment</source> <translation type="unfinished" /> </message> @@ -52032,6 +52267,19 @@ </message> </context> <context> + <name>PipVulnerabilityChecker</name> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="219" /> + <source>Fetching Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="220" /> + <source><p>The vulnerability database <b>{0}</b> could not be loaded from <b>{1}</b>.</p><p>The vulnerability check is not available.</p></source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PixmapDiagram</name> <message> <location filename="../Graphics/PixmapDiagram.py" line="164" /> @@ -52441,32 +52689,32 @@ <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="445" /> + <location filename="../PluginManager/PluginManager.py" line="449" /> <source>Module failed to load. Error: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="622" /> + <location filename="../PluginManager/PluginManager.py" line="626" /> <source>Incompatible plugin activation method.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1204" /> + <location filename="../PluginManager/PluginManager.py" line="1208" /> <source>Plugin Manager Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1205" /> + <location filename="../PluginManager/PluginManager.py" line="1209" /> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1271" /> + <location filename="../PluginManager/PluginManager.py" line="1275" /> <source>Error downloading file</source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1272" /> + <location filename="../PluginManager/PluginManager.py" line="1276" /> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> @@ -52623,6 +52871,21 @@ <source>Edit URL</source> <translation type="unfinished" /> </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Startup Behavior</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Select, to check for missing plugin dependencies at startup and install them</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Automatic dependencies installation</source> + <translation type="unfinished" /> + </message> </context> <context> <name>PluginRepositoryDialog</name> @@ -53290,18 +53553,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1654" /> + <location filename="../Preferences/__init__.py" line="1658" /> <source>Export Preferences</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1682" /> - <location filename="../Preferences/__init__.py" line="1656" /> + <location filename="../Preferences/__init__.py" line="1686" /> + <location filename="../Preferences/__init__.py" line="1660" /> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> + <location filename="../Preferences/__init__.py" line="1684" /> <source>Import Preferences</source> <translation type="unfinished" /> </message> @@ -78252,7 +78515,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Tools/TrayStarter.py" line="582" /> + <location filename="../Tools/TrayStarter.py" line="600" /> + <source>Desktop</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="603" /> + <source>Session Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="605" /> <source></table></source> <translation type="unfinished" /> </message> @@ -79801,2629 +80074,2539 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="256" /> + <location filename="../UI/UserInterface.py" line="253" /> <source>Initializing Basic Services...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="297" /> + <location filename="../UI/UserInterface.py" line="294" /> <source>Initializing Plugin Manager...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="304" /> + <location filename="../UI/UserInterface.py" line="301" /> <source>Generating Main User Interface...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="346" /> + <location filename="../UI/UserInterface.py" line="343" /> <source>Setting up connections...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="593" /> + <location filename="../UI/UserInterface.py" line="590" /> <source>Initializing Tools...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="603" /> + <location filename="../UI/UserInterface.py" line="600" /> <source>Registering Objects...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="644" /> + <location filename="../UI/UserInterface.py" line="636" /> <source>Initializing Actions...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="646" /> + <location filename="../UI/UserInterface.py" line="638" /> <source>Initializing Menus...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="648" /> + <location filename="../UI/UserInterface.py" line="640" /> <source>Initializing Toolbars...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="650" /> + <location filename="../UI/UserInterface.py" line="642" /> <source>Initializing Statusbar...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="678" /> + <location filename="../UI/UserInterface.py" line="670" /> <source>Initializing Single Application Server...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="676" /> + <source>Initializing Plugins...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="679" /> + <source>Activating Plugins...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="681" /> + <source>Generating Plugins Toolbars...</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="684" /> - <source>Initializing Plugins...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="687" /> - <source>Activating Plugins...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="689" /> - <source>Generating Plugins Toolbars...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="692" /> <source>Cleaning Plugins Download Area...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="703" /> + <location filename="../UI/UserInterface.py" line="695" /> <source>Restoring Toolbarmanager...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="712" /> + <location filename="../UI/UserInterface.py" line="704" /> <source>Setting View Profile...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="725" /> + <location filename="../UI/UserInterface.py" line="717" /> <source>Reading Tasks...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="730" /> + <location filename="../UI/UserInterface.py" line="722" /> <source>Reading Templates...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="735" /> + <location filename="../UI/UserInterface.py" line="727" /> <source>Starting Debugger...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2041" /> - <location filename="../UI/UserInterface.py" line="1065" /> + <location filename="../UI/UserInterface.py" line="2033" /> + <location filename="../UI/UserInterface.py" line="1057" /> <source>Left Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2072" /> - <location filename="../UI/UserInterface.py" line="1073" /> + <location filename="../UI/UserInterface.py" line="2064" /> + <location filename="../UI/UserInterface.py" line="1065" /> <source>Horizontal Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2056" /> - <location filename="../UI/UserInterface.py" line="1081" /> + <location filename="../UI/UserInterface.py" line="2048" /> + <location filename="../UI/UserInterface.py" line="1073" /> <source>Right Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1915" /> - <location filename="../UI/UserInterface.py" line="1237" /> - <location filename="../UI/UserInterface.py" line="1089" /> + <location filename="../UI/UserInterface.py" line="1907" /> + <location filename="../UI/UserInterface.py" line="1229" /> + <location filename="../UI/UserInterface.py" line="1081" /> <source>Multiproject-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1898" /> - <location filename="../UI/UserInterface.py" line="1242" /> + <location filename="../UI/UserInterface.py" line="1890" /> + <location filename="../UI/UserInterface.py" line="1234" /> + <location filename="../UI/UserInterface.py" line="1085" /> + <source>Project-Viewer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2318" /> + <location filename="../UI/UserInterface.py" line="2317" /> + <location filename="../UI/UserInterface.py" line="1239" /> + <location filename="../UI/UserInterface.py" line="1089" /> + <source>Find/Replace In Files</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2336" /> + <location filename="../UI/UserInterface.py" line="2335" /> + <location filename="../UI/UserInterface.py" line="1244" /> <location filename="../UI/UserInterface.py" line="1093" /> - <source>Project-Viewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2326" /> - <location filename="../UI/UserInterface.py" line="2325" /> - <location filename="../UI/UserInterface.py" line="1247" /> + <source>Find File</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1249" /> <location filename="../UI/UserInterface.py" line="1097" /> - <source>Find/Replace In Files</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2344" /> - <location filename="../UI/UserInterface.py" line="2343" /> - <location filename="../UI/UserInterface.py" line="1252" /> - <location filename="../UI/UserInterface.py" line="1101" /> - <source>Find File</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1257" /> - <location filename="../UI/UserInterface.py" line="1105" /> <source>VCS Status</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2022" /> - <location filename="../UI/UserInterface.py" line="1263" /> - <location filename="../UI/UserInterface.py" line="1110" /> + <location filename="../UI/UserInterface.py" line="2014" /> + <location filename="../UI/UserInterface.py" line="1255" /> + <location filename="../UI/UserInterface.py" line="1102" /> <source>Template-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1968" /> - <location filename="../UI/UserInterface.py" line="1269" /> - <location filename="../UI/UserInterface.py" line="1115" /> + <location filename="../UI/UserInterface.py" line="1960" /> + <location filename="../UI/UserInterface.py" line="1261" /> + <location filename="../UI/UserInterface.py" line="1107" /> <source>File-Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1275" /> - <location filename="../UI/UserInterface.py" line="1120" /> + <location filename="../UI/UserInterface.py" line="1267" /> + <location filename="../UI/UserInterface.py" line="1112" /> <source>Symbols</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1933" /> - <location filename="../UI/UserInterface.py" line="1295" /> - <location filename="../UI/UserInterface.py" line="1290" /> - <location filename="../UI/UserInterface.py" line="1128" /> + <location filename="../UI/UserInterface.py" line="1925" /> + <location filename="../UI/UserInterface.py" line="1287" /> + <location filename="../UI/UserInterface.py" line="1282" /> + <location filename="../UI/UserInterface.py" line="1120" /> <source>Debug-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2215" /> - <location filename="../UI/UserInterface.py" line="2214" /> - <location filename="../UI/UserInterface.py" line="1301" /> - <location filename="../UI/UserInterface.py" line="1133" /> + <location filename="../UI/UserInterface.py" line="2207" /> + <location filename="../UI/UserInterface.py" line="2206" /> + <location filename="../UI/UserInterface.py" line="1293" /> + <location filename="../UI/UserInterface.py" line="1125" /> <source>Code Documentation Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2380" /> - <location filename="../UI/UserInterface.py" line="2379" /> - <location filename="../UI/UserInterface.py" line="1307" /> - <location filename="../UI/UserInterface.py" line="1138" /> + <location filename="../UI/UserInterface.py" line="2372" /> + <location filename="../UI/UserInterface.py" line="2371" /> + <location filename="../UI/UserInterface.py" line="1299" /> + <location filename="../UI/UserInterface.py" line="1130" /> <source>Help Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3103" /> - <location filename="../UI/UserInterface.py" line="2289" /> - <location filename="../UI/UserInterface.py" line="2288" /> - <location filename="../UI/UserInterface.py" line="1312" /> - <location filename="../UI/UserInterface.py" line="1142" /> + <location filename="../UI/UserInterface.py" line="3069" /> + <location filename="../UI/UserInterface.py" line="2281" /> + <location filename="../UI/UserInterface.py" line="2280" /> + <location filename="../UI/UserInterface.py" line="1304" /> + <location filename="../UI/UserInterface.py" line="1134" /> <source>Plugin Repository</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2307" /> - <location filename="../UI/UserInterface.py" line="2306" /> - <location filename="../UI/UserInterface.py" line="1317" /> - <location filename="../UI/UserInterface.py" line="1146" /> + <location filename="../UI/UserInterface.py" line="2299" /> + <location filename="../UI/UserInterface.py" line="2298" /> + <location filename="../UI/UserInterface.py" line="1309" /> + <location filename="../UI/UserInterface.py" line="1138" /> <source>Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2235" /> - <location filename="../UI/UserInterface.py" line="2234" /> - <location filename="../UI/UserInterface.py" line="1322" /> - <location filename="../UI/UserInterface.py" line="1151" /> + <location filename="../UI/UserInterface.py" line="2227" /> + <location filename="../UI/UserInterface.py" line="2226" /> + <location filename="../UI/UserInterface.py" line="1314" /> + <location filename="../UI/UserInterface.py" line="1143" /> <source>PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2253" /> - <location filename="../UI/UserInterface.py" line="2252" /> - <location filename="../UI/UserInterface.py" line="1327" /> - <location filename="../UI/UserInterface.py" line="1156" /> + <location filename="../UI/UserInterface.py" line="2245" /> + <location filename="../UI/UserInterface.py" line="2244" /> + <location filename="../UI/UserInterface.py" line="1319" /> + <location filename="../UI/UserInterface.py" line="1148" /> <source>Conda</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1332" /> - <location filename="../UI/UserInterface.py" line="1161" /> + <location filename="../UI/UserInterface.py" line="1324" /> + <location filename="../UI/UserInterface.py" line="1153" /> <source>Cooperation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2158" /> - <location filename="../UI/UserInterface.py" line="1337" /> - <location filename="../UI/UserInterface.py" line="1166" /> + <location filename="../UI/UserInterface.py" line="2150" /> + <location filename="../UI/UserInterface.py" line="1329" /> + <location filename="../UI/UserInterface.py" line="1158" /> <source>IRC</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2271" /> - <location filename="../UI/UserInterface.py" line="2270" /> + <location filename="../UI/UserInterface.py" line="2263" /> + <location filename="../UI/UserInterface.py" line="2262" /> + <location filename="../UI/UserInterface.py" line="1335" /> + <location filename="../UI/UserInterface.py" line="1163" /> + <source>MicroPython</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1943" /> <location filename="../UI/UserInterface.py" line="1343" /> <location filename="../UI/UserInterface.py" line="1171" /> - <source>MicroPython</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1951" /> + <source>Shell</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1995" /> + <location filename="../UI/UserInterface.py" line="1347" /> + <location filename="../UI/UserInterface.py" line="1175" /> + <source>Task-Viewer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1977" /> <location filename="../UI/UserInterface.py" line="1351" /> <location filename="../UI/UserInterface.py" line="1179" /> - <source>Shell</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2003" /> - <location filename="../UI/UserInterface.py" line="1355" /> - <location filename="../UI/UserInterface.py" line="1183" /> - <source>Task-Viewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1985" /> - <location filename="../UI/UserInterface.py" line="1359" /> - <location filename="../UI/UserInterface.py" line="1187" /> <source>Log-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1364" /> - <location filename="../UI/UserInterface.py" line="1192" /> + <location filename="../UI/UserInterface.py" line="1356" /> + <location filename="../UI/UserInterface.py" line="1184" /> <source>Numbers</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1752" /> + <location filename="../UI/UserInterface.py" line="1744" /> <source>{0} - Passive Mode</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1759" /> - <location filename="../UI/UserInterface.py" line="1755" /> + <location filename="../UI/UserInterface.py" line="1751" /> + <location filename="../UI/UserInterface.py" line="1747" /> <source>{0} - {1} - Passive Mode</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1763" /> + <location filename="../UI/UserInterface.py" line="1755" /> <source>{0} - {1} - {2} - Passive Mode</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1786" /> + <location filename="../UI/UserInterface.py" line="1778" /> <source>Quit</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1788" /> + <location filename="../UI/UserInterface.py" line="1780" /> <source>&Quit</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1789" /> + <location filename="../UI/UserInterface.py" line="1781" /> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1791" /> + <location filename="../UI/UserInterface.py" line="1783" /> <source>Quit the IDE</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1792" /> + <location filename="../UI/UserInterface.py" line="1784" /> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1805" /> - <location filename="../UI/UserInterface.py" line="1803" /> + <location filename="../UI/UserInterface.py" line="1797" /> + <location filename="../UI/UserInterface.py" line="1795" /> <source>Restart</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1806" /> + <location filename="../UI/UserInterface.py" line="1798" /> <source>Ctrl+Shift+Q</source> <comment>File|Quit</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1808" /> + <location filename="../UI/UserInterface.py" line="1800" /> <source>Restart the IDE</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1809" /> + <location filename="../UI/UserInterface.py" line="1801" /> <source><b>Restart the IDE</b><p>This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1822" /> - <location filename="../UI/UserInterface.py" line="1819" /> + <location filename="../UI/UserInterface.py" line="1814" /> + <location filename="../UI/UserInterface.py" line="1811" /> <source>Save session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1820" /> + <location filename="../UI/UserInterface.py" line="1812" /> <source>Save session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1823" /> + <location filename="../UI/UserInterface.py" line="1815" /> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7022" /> - <location filename="../UI/UserInterface.py" line="1835" /> - <location filename="../UI/UserInterface.py" line="1832" /> + <location filename="../UI/UserInterface.py" line="7080" /> + <location filename="../UI/UserInterface.py" line="1827" /> + <location filename="../UI/UserInterface.py" line="1824" /> <source>Load session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1833" /> + <location filename="../UI/UserInterface.py" line="1825" /> <source>Load session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1836" /> + <location filename="../UI/UserInterface.py" line="1828" /> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1845" /> + <location filename="../UI/UserInterface.py" line="1837" /> <source>New Window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1847" /> + <location filename="../UI/UserInterface.py" line="1839" /> <source>New &Window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1848" /> + <location filename="../UI/UserInterface.py" line="1840" /> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1850" /> + <location filename="../UI/UserInterface.py" line="1842" /> <source>Open a new eric instance</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1852" /> + <location filename="../UI/UserInterface.py" line="1844" /> <source><b>New Window</b><p>This opens a new instance of the eric IDE.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1866" /> - <location filename="../UI/UserInterface.py" line="1864" /> + <location filename="../UI/UserInterface.py" line="1858" /> + <location filename="../UI/UserInterface.py" line="1856" /> <source>Edit Profile</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1869" /> + <location filename="../UI/UserInterface.py" line="1861" /> <source>Activate the edit view profile</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1871" /> + <location filename="../UI/UserInterface.py" line="1863" /> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1883" /> - <location filename="../UI/UserInterface.py" line="1881" /> + <location filename="../UI/UserInterface.py" line="1875" /> + <location filename="../UI/UserInterface.py" line="1873" /> <source>Debug Profile</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1887" /> + <location filename="../UI/UserInterface.py" line="1879" /> <source>Activate the debug view profile</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1888" /> + <location filename="../UI/UserInterface.py" line="1880" /> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1899" /> + <location filename="../UI/UserInterface.py" line="1891" /> <source>&Project-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1900" /> + <location filename="../UI/UserInterface.py" line="1892" /> <source>Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1903" /> + <location filename="../UI/UserInterface.py" line="1895" /> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1905" /> + <location filename="../UI/UserInterface.py" line="1897" /> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1916" /> + <location filename="../UI/UserInterface.py" line="1908" /> <source>&Multiproject-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1917" /> + <location filename="../UI/UserInterface.py" line="1909" /> <source>Alt+Shift+M</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1920" /> + <location filename="../UI/UserInterface.py" line="1912" /> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1922" /> + <location filename="../UI/UserInterface.py" line="1914" /> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1934" /> + <location filename="../UI/UserInterface.py" line="1926" /> <source>&Debug-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1935" /> + <location filename="../UI/UserInterface.py" line="1927" /> <source>Alt+Shift+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1938" /> + <location filename="../UI/UserInterface.py" line="1930" /> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1940" /> + <location filename="../UI/UserInterface.py" line="1932" /> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1952" /> + <location filename="../UI/UserInterface.py" line="1944" /> <source>&Shell</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1953" /> + <location filename="../UI/UserInterface.py" line="1945" /> <source>Alt+Shift+S</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1956" /> + <location filename="../UI/UserInterface.py" line="1948" /> <source>Switch the input focus to the Shell window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1958" /> + <location filename="../UI/UserInterface.py" line="1950" /> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1969" /> + <location filename="../UI/UserInterface.py" line="1961" /> <source>&File-Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1970" /> + <location filename="../UI/UserInterface.py" line="1962" /> <source>Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1973" /> + <location filename="../UI/UserInterface.py" line="1965" /> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1975" /> + <location filename="../UI/UserInterface.py" line="1967" /> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1986" /> + <location filename="../UI/UserInterface.py" line="1978" /> <source>Lo&g-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1987" /> + <location filename="../UI/UserInterface.py" line="1979" /> <source>Alt+Shift+G</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1990" /> + <location filename="../UI/UserInterface.py" line="1982" /> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1992" /> + <location filename="../UI/UserInterface.py" line="1984" /> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2004" /> + <location filename="../UI/UserInterface.py" line="1996" /> <source>&Task-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2005" /> + <location filename="../UI/UserInterface.py" line="1997" /> <source>Alt+Shift+T</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2008" /> + <location filename="../UI/UserInterface.py" line="2000" /> <source>Switch the input focus to the Task-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2010" /> + <location filename="../UI/UserInterface.py" line="2002" /> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2023" /> + <location filename="../UI/UserInterface.py" line="2015" /> <source>Templ&ate-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2024" /> + <location filename="../UI/UserInterface.py" line="2016" /> <source>Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2027" /> + <location filename="../UI/UserInterface.py" line="2019" /> <source>Switch the input focus to the Template-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2029" /> + <location filename="../UI/UserInterface.py" line="2021" /> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2042" /> + <location filename="../UI/UserInterface.py" line="2034" /> <source>&Left Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2043" /> + <location filename="../UI/UserInterface.py" line="2035" /> <source>Toggle the Left Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2044" /> + <location filename="../UI/UserInterface.py" line="2036" /> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2057" /> + <location filename="../UI/UserInterface.py" line="2049" /> <source>&Right Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2059" /> + <location filename="../UI/UserInterface.py" line="2051" /> <source>Toggle the Right Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2060" /> + <location filename="../UI/UserInterface.py" line="2052" /> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2073" /> + <location filename="../UI/UserInterface.py" line="2065" /> <source>&Horizontal Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2075" /> + <location filename="../UI/UserInterface.py" line="2067" /> <source>Toggle the Horizontal Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2077" /> + <location filename="../UI/UserInterface.py" line="2069" /> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2089" /> + <location filename="../UI/UserInterface.py" line="2081" /> <source>Left Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2090" /> + <location filename="../UI/UserInterface.py" line="2082" /> <source>&Left Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2092" /> + <location filename="../UI/UserInterface.py" line="2084" /> <source>Toggle the left sidebar window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2093" /> + <location filename="../UI/UserInterface.py" line="2085" /> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2105" /> + <location filename="../UI/UserInterface.py" line="2097" /> <source>Right Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2106" /> + <location filename="../UI/UserInterface.py" line="2098" /> <source>&Right Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2108" /> + <location filename="../UI/UserInterface.py" line="2100" /> <source>Toggle the right sidebar window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2110" /> + <location filename="../UI/UserInterface.py" line="2102" /> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2122" /> + <location filename="../UI/UserInterface.py" line="2114" /> <source>Bottom Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2123" /> + <location filename="../UI/UserInterface.py" line="2115" /> <source>&Bottom Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2125" /> + <location filename="../UI/UserInterface.py" line="2117" /> <source>Toggle the bottom sidebar window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2127" /> + <location filename="../UI/UserInterface.py" line="2119" /> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2139" /> + <location filename="../UI/UserInterface.py" line="2131" /> <source>Cooperation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2140" /> + <location filename="../UI/UserInterface.py" line="2132" /> <source>Co&operation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2141" /> + <location filename="../UI/UserInterface.py" line="2133" /> <source>Alt+Shift+O</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2144" /> + <location filename="../UI/UserInterface.py" line="2136" /> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2146" /> + <location filename="../UI/UserInterface.py" line="2138" /> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2159" /> + <location filename="../UI/UserInterface.py" line="2151" /> <source>&IRC</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2160" /> + <location filename="../UI/UserInterface.py" line="2152" /> <source>Ctrl+Alt+Shift+I</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2163" /> + <location filename="../UI/UserInterface.py" line="2155" /> <source>Switch the input focus to the IRC window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2165" /> + <location filename="../UI/UserInterface.py" line="2157" /> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2176" /> + <location filename="../UI/UserInterface.py" line="2168" /> <source>Symbols-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2177" /> + <location filename="../UI/UserInterface.py" line="2169" /> <source>S&ymbols-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2178" /> + <location filename="../UI/UserInterface.py" line="2170" /> <source>Alt+Shift+Y</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2181" /> + <location filename="../UI/UserInterface.py" line="2173" /> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2183" /> + <location filename="../UI/UserInterface.py" line="2175" /> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2195" /> + <location filename="../UI/UserInterface.py" line="2187" /> <source>Numbers-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2196" /> + <location filename="../UI/UserInterface.py" line="2188" /> <source>Num&bers-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2197" /> + <location filename="../UI/UserInterface.py" line="2189" /> <source>Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2200" /> + <location filename="../UI/UserInterface.py" line="2192" /> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2202" /> + <location filename="../UI/UserInterface.py" line="2194" /> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2216" /> + <location filename="../UI/UserInterface.py" line="2208" /> <source>Ctrl+Alt+Shift+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2219" /> + <location filename="../UI/UserInterface.py" line="2211" /> <source>Switch the input focus to the Code Documentation Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2222" /> + <location filename="../UI/UserInterface.py" line="2214" /> <source><b>Code Documentation Viewer</b><p>This switches the input focus to the Code Documentation Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2236" /> + <location filename="../UI/UserInterface.py" line="2228" /> <source>Ctrl+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2239" /> + <location filename="../UI/UserInterface.py" line="2231" /> <source>Switch the input focus to the PyPI window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2241" /> + <location filename="../UI/UserInterface.py" line="2233" /> <source><b>PyPI</b><p>This switches the input focus to the PyPI window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2254" /> + <location filename="../UI/UserInterface.py" line="2246" /> <source>Ctrl+Alt+Shift+C</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2257" /> + <location filename="../UI/UserInterface.py" line="2249" /> <source>Switch the input focus to the Conda window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2259" /> + <location filename="../UI/UserInterface.py" line="2251" /> <source><b>Conda</b><p>This switches the input focus to the Conda window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2272" /> + <location filename="../UI/UserInterface.py" line="2264" /> <source>Ctrl+Alt+Shift+M</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2275" /> + <location filename="../UI/UserInterface.py" line="2267" /> <source>Switch the input focus to the MicroPython window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2277" /> + <location filename="../UI/UserInterface.py" line="2269" /> <source><b>MicroPython</b><p>This switches the input focus to the MicroPython window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2290" /> + <location filename="../UI/UserInterface.py" line="2282" /> <source>Ctrl+Alt+Shift+R</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2293" /> + <location filename="../UI/UserInterface.py" line="2285" /> <source>Switch the input focus to the Plugin Repository window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2295" /> + <location filename="../UI/UserInterface.py" line="2287" /> <source><b>Plugin Repository</b><p>This switches the input focus to the Plugin Repository window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2308" /> + <location filename="../UI/UserInterface.py" line="2300" /> <source>Ctrl+Alt+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2311" /> + <location filename="../UI/UserInterface.py" line="2303" /> <source>Switch the input focus to the Virtual Environments Manager window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2314" /> + <location filename="../UI/UserInterface.py" line="2306" /> <source><b>Virtual Environments</b><p>This switches the input focus to the Virtual Environments Manager window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2327" /> + <location filename="../UI/UserInterface.py" line="2319" /> <source>Ctrl+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2330" /> + <location filename="../UI/UserInterface.py" line="2322" /> <source>Switch the input focus to the Find/Replace In Files window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2332" /> + <location filename="../UI/UserInterface.py" line="2324" /> <source><b>Find/Replace In Files</b><p>This switches the input focus to the Find/Replace In Files window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2345" /> + <location filename="../UI/UserInterface.py" line="2337" /> <source>Ctrl+Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2348" /> + <location filename="../UI/UserInterface.py" line="2340" /> <source>Switch the input focus to the Find File window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2350" /> + <location filename="../UI/UserInterface.py" line="2342" /> <source><b>Find File</b><p>This switches the input focus to the Find File window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2362" /> - <location filename="../UI/UserInterface.py" line="2361" /> + <location filename="../UI/UserInterface.py" line="2354" /> + <location filename="../UI/UserInterface.py" line="2353" /> <source>VCS Status List</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2363" /> + <location filename="../UI/UserInterface.py" line="2355" /> <source>Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2366" /> + <location filename="../UI/UserInterface.py" line="2358" /> <source>Switch the input focus to the VCS Status List window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2368" /> + <location filename="../UI/UserInterface.py" line="2360" /> <source><b>VCS Status List</b><p>This switches the input focus to the VCS Status List window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2381" /> + <location filename="../UI/UserInterface.py" line="2373" /> <source>Alt+Shift+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2384" /> + <location filename="../UI/UserInterface.py" line="2376" /> <source>Switch the input focus to the embedded Help Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2386" /> + <location filename="../UI/UserInterface.py" line="2378" /> <source><b>Help Viewer</b><p>This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2399" /> + <location filename="../UI/UserInterface.py" line="2391" /> <source>What's This?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2401" /> + <location filename="../UI/UserInterface.py" line="2393" /> <source>&What's This?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2402" /> + <location filename="../UI/UserInterface.py" line="2394" /> <source>Shift+F1</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2404" /> + <location filename="../UI/UserInterface.py" line="2396" /> <source>Context sensitive help</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2405" /> + <location filename="../UI/UserInterface.py" line="2397" /> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2417" /> + <location filename="../UI/UserInterface.py" line="2409" /> <source>Helpviewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2419" /> + <location filename="../UI/UserInterface.py" line="2411" /> <source>&Helpviewer...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2420" /> + <location filename="../UI/UserInterface.py" line="2412" /> <source>F1</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2422" /> + <location filename="../UI/UserInterface.py" line="2414" /> <source>Open the helpviewer window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2424" /> + <location filename="../UI/UserInterface.py" line="2416" /> <source><b>Helpviewer</b><p>Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2443" /> + <location filename="../UI/UserInterface.py" line="2435" /> <source>Show Versions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2444" /> + <location filename="../UI/UserInterface.py" line="2436" /> <source>Show &Versions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2446" /> + <location filename="../UI/UserInterface.py" line="2438" /> <source>Display version information</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2448" /> + <location filename="../UI/UserInterface.py" line="2440" /> <source><b>Show Versions</b><p>Display version information.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2458" /> - <location filename="../UI/UserInterface.py" line="2456" /> - <source>Check for Updates</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2457" /> - <source>Check for &Updates...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2459" /> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2467" /> - <source>Show downloadable versions</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2468" /> - <source>Show &downloadable versions...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2471" /> - <source>Show the versions available for download</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2472" /> - <source><b>Show downloadable versions...</b><p>Shows the eric versions available for download from the internet.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2485" /> - <location filename="../UI/UserInterface.py" line="2482" /> + <location filename="../UI/UserInterface.py" line="2451" /> + <location filename="../UI/UserInterface.py" line="2448" /> <source>Show Error Log</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2483" /> + <location filename="../UI/UserInterface.py" line="2449" /> <source>Show Error &Log...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2452" /> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2460" /> + <source>Show Install Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2461" /> + <source>Show Install &Info...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2463" /> + <source>Show Installation Information</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2465" /> + <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4083" /> + <location filename="../UI/UserInterface.py" line="2474" /> + <source>Report Bug</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2475" /> + <source>Report &Bug...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2477" /> + <source>Report a bug</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2478" /> + <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2486" /> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2494" /> - <source>Show Install Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2495" /> - <source>Show Install &Info...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2497" /> - <source>Show Installation Information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2499" /> - <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4120" /> - <location filename="../UI/UserInterface.py" line="2508" /> - <source>Report Bug</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2509" /> - <source>Report &Bug...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2511" /> - <source>Report a bug</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512" /> - <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <source>Request Feature</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2487" /> + <source>Request &Feature...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2489" /> + <source>Send a feature request</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2491" /> + <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606" /> + <location filename="../UI/UserInterface.py" line="3583" /> + <location filename="../UI/UserInterface.py" line="2501" /> + <source>Unittest</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2503" /> + <source>&Unittest...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2505" /> + <source>Start unittest dialog</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506" /> + <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2515" /> + <source>Unittest Restart</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2517" /> + <source>&Restart Unittest...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2519" /> + <source>Restart last unittest</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2520" /> - <source>Request Feature</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2521" /> - <source>Request &Feature...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2523" /> - <source>Send a feature request</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2525" /> - <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3643" /> - <location filename="../UI/UserInterface.py" line="3620" /> + <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2529" /> + <source>Unittest Rerun Failed</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2531" /> + <source>Rerun Failed Tests...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2533" /> + <source>Rerun failed tests of the last run</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2535" /> - <source>Unittest</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2537" /> - <source>&Unittest...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2539" /> - <source>Start unittest dialog</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2540" /> - <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2545" /> + <source>Unittest Script</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2547" /> + <source>Unittest &Script...</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2549" /> - <source>Unittest Restart</source> + <source>Run unittest with current script</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2551" /> - <source>&Restart Unittest...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2553" /> - <source>Restart last unittest</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2554" /> - <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2563" /> - <source>Unittest Rerun Failed</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2565" /> - <source>Rerun Failed Tests...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2567" /> - <source>Rerun failed tests of the last run</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2569" /> - <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2579" /> - <source>Unittest Script</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2581" /> - <source>Unittest &Script...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2583" /> - <source>Run unittest with current script</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2585" /> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2594" /> + <location filename="../UI/UserInterface.py" line="2560" /> <source>Unittest Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2596" /> + <location filename="../UI/UserInterface.py" line="2562" /> <source>Unittest &Project...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2598" /> + <location filename="../UI/UserInterface.py" line="2564" /> <source>Run unittest with current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2600" /> + <location filename="../UI/UserInterface.py" line="2566" /> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2621" /> + <location filename="../UI/UserInterface.py" line="2587" /> <source>Qt-Designer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2623" /> + <location filename="../UI/UserInterface.py" line="2589" /> <source>Qt-&Designer...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2625" /> + <location filename="../UI/UserInterface.py" line="2591" /> <source>Start Qt-Designer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2626" /> + <location filename="../UI/UserInterface.py" line="2592" /> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2613" /> + <source>Qt-Linguist</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2615" /> + <source>Qt-&Linguist...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2617" /> + <source>Start Qt-Linguist</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2618" /> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2628" /> + <source>UI Previewer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2630" /> + <source>&UI Previewer...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2632" /> + <source>Start the UI Previewer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2633" /> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2641" /> + <source>Translations Previewer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2643" /> + <source>&Translations Previewer...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2645" /> + <source>Start the Translations Previewer</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2647" /> - <source>Qt-Linguist</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2649" /> - <source>Qt-&Linguist...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2651" /> - <source>Start Qt-Linguist</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2652" /> - <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2662" /> - <source>UI Previewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2664" /> - <source>&UI Previewer...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2666" /> - <source>Start the UI Previewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2667" /> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2675" /> - <source>Translations Previewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2677" /> - <source>&Translations Previewer...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2679" /> - <source>Start the Translations Previewer</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2681" /> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2689" /> + <location filename="../UI/UserInterface.py" line="2655" /> <source>Compare Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2691" /> + <location filename="../UI/UserInterface.py" line="2657" /> <source>&Compare Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2706" /> - <location filename="../UI/UserInterface.py" line="2693" /> + <location filename="../UI/UserInterface.py" line="2672" /> + <location filename="../UI/UserInterface.py" line="2659" /> <source>Compare two files</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2694" /> + <location filename="../UI/UserInterface.py" line="2660" /> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2702" /> + <location filename="../UI/UserInterface.py" line="2668" /> <source>Compare Files side by side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2704" /> + <location filename="../UI/UserInterface.py" line="2670" /> <source>Compare &Files side by side...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2707" /> + <location filename="../UI/UserInterface.py" line="2673" /> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2716" /> + <location filename="../UI/UserInterface.py" line="2682" /> <source>SQL Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2718" /> + <location filename="../UI/UserInterface.py" line="2684" /> <source>SQL &Browser...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2720" /> + <location filename="../UI/UserInterface.py" line="2686" /> <source>Browse a SQL database</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2721" /> + <location filename="../UI/UserInterface.py" line="2687" /> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2733" /> - <location filename="../UI/UserInterface.py" line="2729" /> + <location filename="../UI/UserInterface.py" line="2699" /> + <location filename="../UI/UserInterface.py" line="2695" /> <source>Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2731" /> + <location filename="../UI/UserInterface.py" line="2697" /> <source>Mini &Editor...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2734" /> + <location filename="../UI/UserInterface.py" line="2700" /> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2742" /> + <location filename="../UI/UserInterface.py" line="2708" /> <source>Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2744" /> + <location filename="../UI/UserInterface.py" line="2710" /> <source>&Hex Editor...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2746" /> + <location filename="../UI/UserInterface.py" line="2712" /> <source>Start the eric Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2748" /> + <location filename="../UI/UserInterface.py" line="2714" /> <source><b>Hex Editor</b><p>Starts the eric Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2723" /> + <source>eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2725" /> + <source>eric &Web Browser...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2727" /> + <source>Start the eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2729" /> + <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2737" /> + <source>Icon Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2739" /> + <source>&Icon Editor...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2741" /> + <source>Start the eric Icon Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2743" /> + <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2751" /> + <source>Snapshot</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2753" /> + <source>&Snapshot...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2755" /> + <source>Take snapshots of a screen region</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757" /> - <source>eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2759" /> - <source>eric &Web Browser...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2761" /> - <source>Start the eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2763" /> - <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2771" /> - <source>Icon Editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2773" /> - <source>&Icon Editor...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2775" /> - <source>Start the eric Icon Editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2777" /> - <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2785" /> - <source>Snapshot</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2787" /> - <source>&Snapshot...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2789" /> - <source>Take snapshots of a screen region</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2791" /> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2766" /> + <source>Preferences</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768" /> + <source>&Preferences...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2770" /> + <source>Set the prefered configuration</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2772" /> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782" /> + <source>Export Preferences</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2784" /> + <source>E&xport Preferences...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2786" /> + <source>Export the current configuration</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2788" /> + <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2796" /> + <source>Import Preferences</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2798" /> + <source>I&mport Preferences...</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2800" /> - <source>Preferences</source> + <source>Import a previously exported configuration</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2802" /> - <source>&Preferences...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2804" /> - <source>Set the prefered configuration</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2806" /> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2810" /> + <source>Export Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2812" /> + <source>Export Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2814" /> + <source>Export the current theme</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2816" /> - <source>Export Preferences</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2818" /> - <source>E&xport Preferences...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2820" /> - <source>Export the current configuration</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2822" /> - <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2824" /> + <source>Import Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2826" /> + <source>Import Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2828" /> + <source>Import a previously exported theme</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2830" /> - <source>Import Preferences</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2832" /> - <source>I&mport Preferences...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2834" /> - <source>Import a previously exported configuration</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2836" /> - <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2844" /> - <source>Export Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2846" /> - <source>Export Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2848" /> - <source>Export the current theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2850" /> - <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2858" /> - <source>Import Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2860" /> - <source>Import Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2862" /> - <source>Import a previously exported theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2864" /> <source><b>Import Theme</b><p>Import a previously exported theme.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2872" /> + <location filename="../UI/UserInterface.py" line="2838" /> <source>Reload APIs</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2839" /> + <source>Reload &APIs</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2841" /> + <source>Reload the API information</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2843" /> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2855" /> + <location filename="../UI/UserInterface.py" line="2851" /> + <source>Show external tools</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2853" /> + <source>Show external &tools</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857" /> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2867" /> + <source>View Profiles</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2869" /> + <source>&View Profiles...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2871" /> + <source>Configure view profiles</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2873" /> - <source>Reload &APIs</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2875" /> - <source>Reload the API information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2877" /> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2884" /> + <source>Toolbars</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2886" /> + <source>Tool&bars...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2888" /> + <source>Configure toolbars</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2889" /> - <location filename="../UI/UserInterface.py" line="2885" /> - <source>Show external tools</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887" /> - <source>Show external &tools</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2891" /> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2899" /> + <source>Keyboard Shortcuts</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2901" /> - <source>View Profiles</source> + <source>Keyboard &Shortcuts...</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2903" /> - <source>&View Profiles...</source> + <source>Set the keyboard shortcuts</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2905" /> - <source>Configure view profiles</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2907" /> - <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756" /> + <location filename="../UI/UserInterface.py" line="6738" /> + <location filename="../UI/UserInterface.py" line="2914" /> + <source>Export Keyboard Shortcuts</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2916" /> + <source>&Export Keyboard Shortcuts...</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2918" /> - <source>Toolbars</source> + <source>Export the keyboard shortcuts</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2920" /> - <source>Tool&bars...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2922" /> - <source>Configure toolbars</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2923" /> - <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2933" /> - <source>Keyboard Shortcuts</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2935" /> - <source>Keyboard &Shortcuts...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2937" /> - <source>Set the keyboard shortcuts</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2939" /> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6698" /> - <location filename="../UI/UserInterface.py" line="6680" /> - <location filename="../UI/UserInterface.py" line="2948" /> - <source>Export Keyboard Shortcuts</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2950" /> - <source>&Export Keyboard Shortcuts...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2952" /> - <source>Export the keyboard shortcuts</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2954" /> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6715" /> - <location filename="../UI/UserInterface.py" line="2962" /> + <location filename="../UI/UserInterface.py" line="6773" /> + <location filename="../UI/UserInterface.py" line="2928" /> <source>Import Keyboard Shortcuts</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2964" /> + <location filename="../UI/UserInterface.py" line="2930" /> <source>&Import Keyboard Shortcuts...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2966" /> + <location filename="../UI/UserInterface.py" line="2932" /> <source>Import the keyboard shortcuts</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2968" /> + <location filename="../UI/UserInterface.py" line="2934" /> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2977" /> + <location filename="../UI/UserInterface.py" line="2943" /> <source>Manage SSL Certificates</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2979" /> + <location filename="../UI/UserInterface.py" line="2945" /> <source>Manage SSL Certificates...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2947" /> + <source>Manage the saved SSL certificates</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2949" /> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2959" /> + <source>Edit Message Filters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2961" /> + <source>Edit Message Filters...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2963" /> + <source>Edit the message filters used to suppress unwanted messages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2965" /> + <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2981" /> - <source>Manage the saved SSL certificates</source> + <location filename="../UI/UserInterface.py" line="2978" /> + <location filename="../UI/UserInterface.py" line="2976" /> + <source>Clear private data</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2983" /> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation type="unfinished" /> - </message> - <message> + <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" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2994" /> <location filename="../UI/UserInterface.py" line="2993" /> - <source>Edit Message Filters</source> + <source>Activate current editor</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2995" /> - <source>Edit Message Filters...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2997" /> - <source>Edit the message filters used to suppress unwanted messages</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2999" /> - <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3015" /> + <source>Alt+Shift+E</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3004" /> + <location filename="../UI/UserInterface.py" line="3003" /> + <source>Show next</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3005" /> + <source>Ctrl+Alt+Tab</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3013" /> <location filename="../UI/UserInterface.py" line="3012" /> - <location filename="../UI/UserInterface.py" line="3010" /> - <source>Clear private data</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3017" /> - <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" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3028" /> - <location filename="../UI/UserInterface.py" line="3027" /> - <source>Activate current editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3029" /> - <source>Alt+Shift+E</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3038" /> - <location filename="../UI/UserInterface.py" line="3037" /> - <source>Show next</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3039" /> - <source>Ctrl+Alt+Tab</source> + <source>Show previous</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3014" /> + <source>Shift+Ctrl+Alt+Tab</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3022" /> + <location filename="../UI/UserInterface.py" line="3021" /> + <source>Switch between tabs</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3023" /> + <source>Ctrl+1</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3030" /> + <source>Plugin Infos</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3032" /> + <source>&Plugin Infos...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3033" /> + <source>Show Plugin Infos</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3034" /> + <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="3047" /> - <location filename="../UI/UserInterface.py" line="3046" /> - <source>Show previous</source> + <location filename="../UI/UserInterface.py" line="3043" /> + <source>Install Plugins</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3045" /> + <source>&Install Plugins...</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="3048" /> - <source>Shift+Ctrl+Alt+Tab</source> - <translation type="unfinished" /> - </message> - <message> + <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3060" /> <location filename="../UI/UserInterface.py" line="3056" /> - <location filename="../UI/UserInterface.py" line="3055" /> - <source>Switch between tabs</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3057" /> - <source>Ctrl+1</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3064" /> - <source>Plugin Infos</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3066" /> - <source>&Plugin Infos...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3067" /> - <source>Show Plugin Infos</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3068" /> - <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3081" /> - <location filename="../UI/UserInterface.py" line="3077" /> - <source>Install Plugins</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3079" /> - <source>&Install Plugins...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3082" /> - <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3094" /> - <location filename="../UI/UserInterface.py" line="3090" /> <source>Uninstall Plugin</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3092" /> + <location filename="../UI/UserInterface.py" line="3058" /> <source>&Uninstall Plugin...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3095" /> + <location filename="../UI/UserInterface.py" line="3061" /> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3105" /> + <location filename="../UI/UserInterface.py" line="3071" /> <source>Plugin &Repository...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3107" /> + <location filename="../UI/UserInterface.py" line="3073" /> <source>Show Plugins available for download</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3109" /> + <location filename="../UI/UserInterface.py" line="3075" /> <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" /> </message> <message> + <location filename="../UI/UserInterface.py" line="3101" /> + <location filename="../UI/UserInterface.py" line="3100" /> + <source>Qt5 Documentation</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3103" /> + <source>Open Qt5 Documentation</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3104" /> + <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3116" /> + <location filename="../UI/UserInterface.py" line="3115" /> + <source>Qt6 Documentation</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3118" /> + <source>Open Qt6 Documentation</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3119" /> + <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3131" /> + <location filename="../UI/UserInterface.py" line="3130" /> + <source>PyQt5 Documentation</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3133" /> + <source>Open PyQt5 Documentation</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="3135" /> - <location filename="../UI/UserInterface.py" line="3134" /> - <source>Qt5 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3137" /> - <source>Open Qt5 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3138" /> - <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3148" /> + <location filename="../UI/UserInterface.py" line="3147" /> + <source>PyQt6 Documentation</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="3150" /> - <location filename="../UI/UserInterface.py" line="3149" /> - <source>Qt6 Documentation</source> + <source>Open PyQt6 Documentation</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="3152" /> - <source>Open Qt6 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3153" /> - <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3165" /> - <location filename="../UI/UserInterface.py" line="3164" /> - <source>PyQt5 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3167" /> - <source>Open PyQt5 Documentation</source> - <translation type="unfinished" /> - </message> - <message> + <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3170" /> <location filename="../UI/UserInterface.py" line="3169" /> - <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3182" /> - <location filename="../UI/UserInterface.py" line="3181" /> - <source>PyQt6 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3184" /> - <source>Open PyQt6 Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3186" /> - <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3204" /> - <location filename="../UI/UserInterface.py" line="3203" /> <source>Python 3 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3206" /> + <location filename="../UI/UserInterface.py" line="3172" /> <source>Open Python 3 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3208" /> + <location filename="../UI/UserInterface.py" line="3174" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3226" /> - <location filename="../UI/UserInterface.py" line="3225" /> + <location filename="../UI/UserInterface.py" line="3192" /> + <location filename="../UI/UserInterface.py" line="3191" /> <source>eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3228" /> + <location filename="../UI/UserInterface.py" line="3194" /> <source>Open eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3230" /> + <location filename="../UI/UserInterface.py" line="3196" /> <source><b>eric API Documentation</b><p>Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3247" /> - <location filename="../UI/UserInterface.py" line="3246" /> + <location filename="../UI/UserInterface.py" line="3213" /> + <location filename="../UI/UserInterface.py" line="3212" /> <source>PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3249" /> + <location filename="../UI/UserInterface.py" line="3215" /> <source>Open PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3251" /> + <location filename="../UI/UserInterface.py" line="3217" /> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3267" /> - <location filename="../UI/UserInterface.py" line="3266" /> + <location filename="../UI/UserInterface.py" line="3233" /> + <location filename="../UI/UserInterface.py" line="3232" /> <source>PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3269" /> + <location filename="../UI/UserInterface.py" line="3235" /> <source>Open PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3271" /> + <location filename="../UI/UserInterface.py" line="3237" /> <source><b>PySide6 Documentation</b><p>Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3373" /> + <location filename="../UI/UserInterface.py" line="3339" /> <source>E&xtras</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3383" /> + <location filename="../UI/UserInterface.py" line="3349" /> <source>Wi&zards</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3402" /> + <location filename="../UI/UserInterface.py" line="3368" /> <source>P&lugins</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3412" /> + <location filename="../UI/UserInterface.py" line="3378" /> <source>Configure...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3421" /> + <location filename="../UI/UserInterface.py" line="3387" /> <source>&Unittest</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3438" /> + <location filename="../UI/UserInterface.py" line="3404" /> <source>Select Tool Group</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3449" /> + <location filename="../UI/UserInterface.py" line="3415" /> <source>Se&ttings</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3482" /> + <location filename="../UI/UserInterface.py" line="3448" /> <source>&Window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3491" /> + <location filename="../UI/UserInterface.py" line="3457" /> <source>&Windows</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3496" /> + <location filename="../UI/UserInterface.py" line="3462" /> <source>Central Park</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3500" /> + <location filename="../UI/UserInterface.py" line="3466" /> <source>Left Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3517" /> + <location filename="../UI/UserInterface.py" line="3483" /> <source>Right Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3541" /> + <location filename="../UI/UserInterface.py" line="3507" /> <source>Bottom Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3549" /> + <location filename="../UI/UserInterface.py" line="3515" /> <source>Plug-ins</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3556" /> + <location filename="../UI/UserInterface.py" line="3522" /> <source>&Toolbars</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3569" /> + <location filename="../UI/UserInterface.py" line="3535" /> <source>&Help</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3642" /> - <location filename="../UI/UserInterface.py" line="3619" /> + <location filename="../UI/UserInterface.py" line="3605" /> + <location filename="../UI/UserInterface.py" line="3582" /> <source>Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3644" /> - <location filename="../UI/UserInterface.py" line="3623" /> + <location filename="../UI/UserInterface.py" line="3607" /> + <location filename="../UI/UserInterface.py" line="3586" /> <source>Settings</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5541" /> - <location filename="../UI/UserInterface.py" line="3645" /> - <location filename="../UI/UserInterface.py" line="3624" /> + <location filename="../UI/UserInterface.py" line="5600" /> + <location filename="../UI/UserInterface.py" line="3608" /> + <location filename="../UI/UserInterface.py" line="3587" /> <source>Help</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3646" /> - <location filename="../UI/UserInterface.py" line="3625" /> + <location filename="../UI/UserInterface.py" line="3609" /> + <location filename="../UI/UserInterface.py" line="3588" /> <source>Profiles</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3647" /> - <location filename="../UI/UserInterface.py" line="3626" /> + <location filename="../UI/UserInterface.py" line="3610" /> + <location filename="../UI/UserInterface.py" line="3589" /> <source>Plugins</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3811" /> + <location filename="../UI/UserInterface.py" line="3774" /> <source><p>This part of the status bar displays the current editors language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3818" /> + <location filename="../UI/UserInterface.py" line="3781" /> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3825" /> + <location filename="../UI/UserInterface.py" line="3788" /> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3832" /> + <location filename="../UI/UserInterface.py" line="3795" /> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3839" /> + <location filename="../UI/UserInterface.py" line="3802" /> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3846" /> + <location filename="../UI/UserInterface.py" line="3809" /> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3857" /> + <location filename="../UI/UserInterface.py" line="3820" /> <source><p>This part of the status bar allows zooming the current editor or shell.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3922" /> - <location filename="../UI/UserInterface.py" line="3882" /> + <location filename="../UI/UserInterface.py" line="3885" /> + <location filename="../UI/UserInterface.py" line="3845" /> <source>External Tools/{0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4028" /> + <location filename="../UI/UserInterface.py" line="3991" /> <source><h2>Version Numbers</h2><table></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4082" /> + <location filename="../UI/UserInterface.py" line="4045" /> <source>Desktop</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4085" /> + <location filename="../UI/UserInterface.py" line="4048" /> <source>Session Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7778" /> - <location filename="../UI/UserInterface.py" line="4087" /> + <location filename="../UI/UserInterface.py" line="4050" /> <source></table></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4121" /> + <location filename="../UI/UserInterface.py" line="4084" /> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4432" /> + <location filename="../UI/UserInterface.py" line="4395" /> <source>Restart application</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4433" /> + <location filename="../UI/UserInterface.py" line="4396" /> <source>The application needs to be restarted. Do it now?</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="4420" /> + <source>Upgrade PyQt</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4421" /> + <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="4467" /> + <location filename="../UI/UserInterface.py" line="4443" /> + <source>Upgrade Eric</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4444" /> + <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4468" /> + <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time. + + Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4526" /> <source>&Builtin Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4484" /> + <location filename="../UI/UserInterface.py" line="4543" /> <source>&Plugin Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4487" /> + <location filename="../UI/UserInterface.py" line="4546" /> <source>&User Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4513" /> + <location filename="../UI/UserInterface.py" line="4572" /> <source>Configure Tool Groups ...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4517" /> + <location filename="../UI/UserInterface.py" line="4576" /> <source>Configure current Tool Group ...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4558" /> - <location filename="../UI/UserInterface.py" line="4538" /> + <location filename="../UI/UserInterface.py" line="4617" /> + <location filename="../UI/UserInterface.py" line="4597" /> <source>No User Tools Configured</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4632" /> + <location filename="../UI/UserInterface.py" line="4691" /> <source>&Show all</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4634" /> + <location filename="../UI/UserInterface.py" line="4693" /> <source>&Hide all</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5669" /> - <location filename="../UI/UserInterface.py" line="5659" /> - <location filename="../UI/UserInterface.py" line="5612" /> - <location filename="../UI/UserInterface.py" line="5603" /> - <location filename="../UI/UserInterface.py" line="5442" /> - <location filename="../UI/UserInterface.py" line="5433" /> - <location filename="../UI/UserInterface.py" line="5372" /> - <location filename="../UI/UserInterface.py" line="5363" /> + <location filename="../UI/UserInterface.py" line="5728" /> + <location filename="../UI/UserInterface.py" line="5718" /> + <location filename="../UI/UserInterface.py" line="5671" /> + <location filename="../UI/UserInterface.py" line="5662" /> + <location filename="../UI/UserInterface.py" line="5501" /> + <location filename="../UI/UserInterface.py" line="5492" /> + <location filename="../UI/UserInterface.py" line="5431" /> + <location filename="../UI/UserInterface.py" line="5422" /> <source>Problem</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5670" /> - <location filename="../UI/UserInterface.py" line="5660" /> - <location filename="../UI/UserInterface.py" line="5613" /> - <location filename="../UI/UserInterface.py" line="5604" /> - <location filename="../UI/UserInterface.py" line="5443" /> - <location filename="../UI/UserInterface.py" line="5434" /> - <location filename="../UI/UserInterface.py" line="5373" /> - <location filename="../UI/UserInterface.py" line="5364" /> + <location filename="../UI/UserInterface.py" line="5729" /> + <location filename="../UI/UserInterface.py" line="5719" /> + <location filename="../UI/UserInterface.py" line="5672" /> + <location filename="../UI/UserInterface.py" line="5663" /> + <location filename="../UI/UserInterface.py" line="5502" /> + <location filename="../UI/UserInterface.py" line="5493" /> + <location filename="../UI/UserInterface.py" line="5432" /> + <location filename="../UI/UserInterface.py" line="5423" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5877" /> - <location filename="../UI/UserInterface.py" line="5790" /> - <location filename="../UI/UserInterface.py" line="5705" /> - <location filename="../UI/UserInterface.py" line="5682" /> - <location filename="../UI/UserInterface.py" line="5625" /> - <location filename="../UI/UserInterface.py" line="5575" /> - <location filename="../UI/UserInterface.py" line="5555" /> - <location filename="../UI/UserInterface.py" line="5517" /> - <location filename="../UI/UserInterface.py" line="5508" /> - <location filename="../UI/UserInterface.py" line="5473" /> - <location filename="../UI/UserInterface.py" line="5464" /> - <location filename="../UI/UserInterface.py" line="5403" /> - <location filename="../UI/UserInterface.py" line="5394" /> + <location filename="../UI/UserInterface.py" line="5936" /> + <location filename="../UI/UserInterface.py" line="5849" /> + <location filename="../UI/UserInterface.py" line="5764" /> + <location filename="../UI/UserInterface.py" line="5741" /> + <location filename="../UI/UserInterface.py" line="5684" /> + <location filename="../UI/UserInterface.py" line="5634" /> + <location filename="../UI/UserInterface.py" line="5614" /> + <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5567" /> + <location filename="../UI/UserInterface.py" line="5532" /> + <location filename="../UI/UserInterface.py" line="5523" /> + <location filename="../UI/UserInterface.py" line="5462" /> + <location filename="../UI/UserInterface.py" line="5453" /> <source>Process Generation Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5395" /> + <location filename="../UI/UserInterface.py" line="5454" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5404" /> + <location filename="../UI/UserInterface.py" line="5463" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5465" /> + <location filename="../UI/UserInterface.py" line="5524" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5474" /> + <location filename="../UI/UserInterface.py" line="5533" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5509" /> + <location filename="../UI/UserInterface.py" line="5568" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5518" /> + <location filename="../UI/UserInterface.py" line="5577" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5542" /> + <location filename="../UI/UserInterface.py" line="5601" /> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5556" /> + <location filename="../UI/UserInterface.py" line="5615" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5635" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5626" /> + <location filename="../UI/UserInterface.py" line="5685" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5683" /> + <location filename="../UI/UserInterface.py" line="5742" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5706" /> + <location filename="../UI/UserInterface.py" line="5765" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5791" /> + <location filename="../UI/UserInterface.py" line="5850" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5822" /> - <location filename="../UI/UserInterface.py" line="5813" /> + <location filename="../UI/UserInterface.py" line="5881" /> + <location filename="../UI/UserInterface.py" line="5872" /> <source>External Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5814" /> + <location filename="../UI/UserInterface.py" line="5873" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5823" /> + <location filename="../UI/UserInterface.py" line="5882" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5859" /> + <location filename="../UI/UserInterface.py" line="5918" /> <source>Starting process '{0} {1}'. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5878" /> + <location filename="../UI/UserInterface.py" line="5937" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5953" /> + <location filename="../UI/UserInterface.py" line="6012" /> <source>Process '{0}' has exited. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6225" /> - <location filename="../UI/UserInterface.py" line="6167" /> - <location filename="../UI/UserInterface.py" line="6126" /> - <location filename="../UI/UserInterface.py" line="6058" /> - <location filename="../UI/UserInterface.py" line="5996" /> + <location filename="../UI/UserInterface.py" line="6284" /> + <location filename="../UI/UserInterface.py" line="6226" /> + <location filename="../UI/UserInterface.py" line="6185" /> + <location filename="../UI/UserInterface.py" line="6117" /> + <location filename="../UI/UserInterface.py" line="6055" /> <source>Documentation Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6226" /> - <location filename="../UI/UserInterface.py" line="6168" /> - <location filename="../UI/UserInterface.py" line="6127" /> - <location filename="../UI/UserInterface.py" line="6059" /> - <location filename="../UI/UserInterface.py" line="5997" /> + <location filename="../UI/UserInterface.py" line="6285" /> + <location filename="../UI/UserInterface.py" line="6227" /> + <location filename="../UI/UserInterface.py" line="6186" /> + <location filename="../UI/UserInterface.py" line="6118" /> + <location filename="../UI/UserInterface.py" line="6056" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6208" /> - <location filename="../UI/UserInterface.py" line="6099" /> + <location filename="../UI/UserInterface.py" line="6267" /> + <location filename="../UI/UserInterface.py" line="6158" /> <source>Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6100" /> + <location filename="../UI/UserInterface.py" line="6159" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6209" /> + <location filename="../UI/UserInterface.py" line="6268" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6387" /> - <location filename="../UI/UserInterface.py" line="6323" /> + <location filename="../UI/UserInterface.py" line="6446" /> + <location filename="../UI/UserInterface.py" line="6382" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6324" /> + <location filename="../UI/UserInterface.py" line="6383" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6388" /> + <location filename="../UI/UserInterface.py" line="6447" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6430" /> + <location filename="../UI/UserInterface.py" line="6489" /> <source>Open Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6431" /> + <location filename="../UI/UserInterface.py" line="6490" /> <source>Could not start a web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6682" /> + <location filename="../UI/UserInterface.py" line="6740" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6699" /> + <location filename="../UI/UserInterface.py" line="6757" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6717" /> + <location filename="../UI/UserInterface.py" line="6775" /> <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6909" /> + <location filename="../UI/UserInterface.py" line="6967" /> <source>Read Tasks</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6910" /> + <location filename="../UI/UserInterface.py" line="6968" /> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6957" /> + <location filename="../UI/UserInterface.py" line="7015" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6985" /> - <location filename="../UI/UserInterface.py" line="6958" /> + <location filename="../UI/UserInterface.py" line="7043" /> + <location filename="../UI/UserInterface.py" line="7016" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6984" /> + <location filename="../UI/UserInterface.py" line="7042" /> <source>Read session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7000" /> + <location filename="../UI/UserInterface.py" line="7058" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7002" /> + <location filename="../UI/UserInterface.py" line="7060" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="7082" /> <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7072" /> + <location filename="../UI/UserInterface.py" line="7130" /> <source>Crash Session found!</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7073" /> + <location filename="../UI/UserInterface.py" line="7131" /> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7374" /> + <location filename="../UI/UserInterface.py" line="7432" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7375" /> + <location filename="../UI/UserInterface.py" line="7433" /> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <source>&Cancel</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7554" /> - <source>%v/%m</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7556" /> - <source>Version Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7561" /> - <source>Trying host {0}</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7630" /> - <location filename="../UI/UserInterface.py" line="7623" /> - <location filename="../UI/UserInterface.py" line="7574" /> - <source>Error getting versions information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7575" /> - <source>The versions information cannot not be downloaded because the Internet is <b>not reachable</b>. Please try again later.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7624" /> - <source>The versions information could not be downloaded. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> + <location filename="../UI/UserInterface.py" line="7597" /> + <source>Upgrade available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7598" /> + <source>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7642" /> <location filename="../UI/UserInterface.py" line="7631" /> - <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7722" /> - <location filename="../UI/UserInterface.py" line="7688" /> - <source>Update available</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7723" /> - <location filename="../UI/UserInterface.py" line="7689" /> - <source>The update to <b>{0}</b> of eric is available at <b>{1}</b>. Would you like to get it?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7710" /> - <location filename="../UI/UserInterface.py" line="7700" /> - <source>Update Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7701" /> - <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7711" /> - <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7734" /> - <source>eric is up to date</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7735" /> - <source>You are using the latest version of eric</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7741" /> - <source>Error during updates check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7742" /> - <source>Could not perform updates check.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7763" /> - <source><h3>Available versions</h3><table></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7829" /> - <location filename="../UI/UserInterface.py" line="7818" /> <source>First time usage</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7819" /> + <location filename="../UI/UserInterface.py" line="7632" /> <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7830" /> + <location filename="../UI/UserInterface.py" line="7643" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7850" /> + <location filename="../UI/UserInterface.py" line="7663" /> <source>Select Workspace Directory</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8027" /> + <location filename="../UI/UserInterface.py" line="7840" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8028" /> + <location filename="../UI/UserInterface.py" line="7841" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> @@ -83546,6 +83729,49 @@ </message> </context> <context> + <name>VersionsDialog</name> + <message> + <location filename="../UI/VersionsDialog.py" line="49" /> + <source>Check for Upgrades...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="92" /> + <source>No upgrades available.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="96" /> + <source>Upgrade eric7...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="100" /> + <source><p>An upgrade of <b>eric7</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="105" /> + <source>Upgrade PyQt6...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="109" /> + <source><p>An upgrade of <b>PyQt6</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="114" /> + <source>Upgrade Both...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="128" /> + <source>Check for Upgrades</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>ViewManager</name> <message> <location filename="../HexEdit/HexEditMainWindow.py" line="518" /> @@ -88234,7 +88460,7 @@ <context> <name>VirtualenvInterpreterSelectionDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="45" /> + <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="47" /> <source>Python Interpreter</source> <translation type="unfinished" /> </message> @@ -88262,54 +88488,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="232" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="243" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="233" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="244" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="295" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="306" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="346" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="296" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="307" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="345" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="433" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="369" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="444" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="380" /> <source>{0} - {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="377" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="378" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="441" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="452" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="453" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -89236,22 +89462,22 @@ <context> <name>WebBrowserPage</name> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="195" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="189" /> <source>Suspicuous URL detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="196" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="190" /> <source><p>The URL <b>{0}</b> was found in the Safe Browsing database.</p>{1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="663" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="657" /> <source>SSL Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="664" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="658" /> <source>This site does not contain SSL information.</source> <translation type="unfinished" /> </message> @@ -90573,12 +90799,12 @@ <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2282" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2287" /> <source>Quota Request</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2288" /> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished" /> </message>
--- a/eric7/i18n/eric7_es.ts Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/i18n/eric7_es.ts Sat Apr 02 11:23:11 2022 +0200 @@ -1487,6 +1487,26 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader</source> + <translation>Actualizador</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader Delay:</source> + <translation>Retraso del Actualizador:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Enter the time the upgrader process should wait for eric to exit</source> + <translation>Introducir el tiempo que el proceso del actualizador debe esperar a eric para salir</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source> s</source> + <translation> s</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> <source>Reporting</source> <translation>Informes</translation> </message> @@ -45136,7 +45156,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="473" /> + <location filename="../Preferences/__init__.py" line="471" /> <location filename="../QScintilla/Lexers/__init__.py" line="415" /> <source>Python Files (*.py *.py3)</source> <translation>Archivos Python (*.py *.py3)</translation> @@ -45389,7 +45409,7 @@ <translation>Todos los archivos (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="475" /> + <location filename="../Preferences/__init__.py" line="473" /> <location filename="../QScintilla/Lexers/__init__.py" line="585" /> <source>Python3 Files (*.py)</source> <translation>Archivos Python (*.py3)</translation> @@ -51271,119 +51291,113 @@ <context> <name>Pip</name> <message> - <location filename="../PipInterface/Pip.py" line="109" /> + <location filename="../PipInterface/Pip.py" line="123" /> <source>python exited with an error ({0}).</source> <translation>python ha salido con un error ({0}).</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="116" /> + <location filename="../PipInterface/Pip.py" line="130" /> <source>python did not finish within 30 seconds.</source> <translation>python no ha terminado en 30 segundos.</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="119" /> + <location filename="../PipInterface/Pip.py" line="133" /> <source>python could not be started.</source> <translation>No se ha podido iniciar python.</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="179" /> + <location filename="../PipInterface/Pip.py" line="193" /> <source><project></source> <translation><project></translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="208" /> + <location filename="../PipInterface/Pip.py" line="222" /> <source>Interpreter for Virtual Environment</source> <translation>Intérprete para el Entorno Virtual</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="209" /> + <location filename="../PipInterface/Pip.py" line="223" /> <source>No interpreter configured for the selected virtual environment.</source> <translation>No se ha configurado ningún intérprete para el entorno virtual seleccionado.</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="244" /> + <location filename="../PipInterface/Pip.py" line="258" /> <source>Install PIP</source> <translation>Instalar PIP</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="286" /> + <location filename="../PipInterface/Pip.py" line="300" /> <source>Repair PIP</source> <translation>Reparar PIP</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="359" /> - <location filename="../PipInterface/Pip.py" line="311" /> + <location filename="../PipInterface/Pip.py" line="383" /> <source>Upgrade Packages</source> <translation>Actualizar Packages</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="312" /> - <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> - <translation>Se está intentando actualizar a nueva versión de packages PyQt. Esto podría no funcionar para la instancia actual de Python ({0}). ¿Desea continuar?</translation> - </message> - <message> - <location filename="../PipInterface/Pip.py" line="399" /> + <location filename="../PipInterface/Pip.py" line="423" /> <source>Install Packages</source> <translation>Instalar Packages</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="428" /> + <location filename="../PipInterface/Pip.py" line="452" /> <source>Install Packages from Requirements</source> <translation>Instalar Packages a partir de Requisitos</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="491" /> - <location filename="../PipInterface/Pip.py" line="460" /> - <location filename="../PipInterface/Pip.py" line="451" /> + <location filename="../PipInterface/Pip.py" line="515" /> + <location filename="../PipInterface/Pip.py" line="484" /> + <location filename="../PipInterface/Pip.py" line="475" /> <source>Uninstall Packages</source> <translation>Desinstalar Packages</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="492" /> - <location filename="../PipInterface/Pip.py" line="452" /> + <location filename="../PipInterface/Pip.py" line="516" /> + <location filename="../PipInterface/Pip.py" line="476" /> <source>Do you really want to uninstall these packages?</source> <translation>¿Realmente desea desinstalar estos packages?</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="503" /> + <location filename="../PipInterface/Pip.py" line="527" /> <source>Uninstall Packages from Requirements</source> <translation>Desinstalar Packages a partir de Requisitos</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="721" /> + <location filename="../PipInterface/Pip.py" line="844" /> <source>Cache Info</source> <translation>Info de Cache</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="746" /> - <location filename="../PipInterface/Pip.py" line="738" /> + <location filename="../PipInterface/Pip.py" line="869" /> + <location filename="../PipInterface/Pip.py" line="861" /> <source>List Cached Files</source> <translation>Listar Archivos en Cache</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="739" /> + <location filename="../PipInterface/Pip.py" line="862" /> <source>Enter a file pattern (empty for all):</source> <translation>Introducir un patrón de archivo (dejar en blanco para todos):</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="770" /> - <location filename="../PipInterface/Pip.py" line="764" /> + <location filename="../PipInterface/Pip.py" line="893" /> + <location filename="../PipInterface/Pip.py" line="887" /> <source>Remove Cached Files</source> <translation>Eliminar Archivos en Cache</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="765" /> + <location filename="../PipInterface/Pip.py" line="888" /> <source>Enter a file pattern:</source> <translation>Introducir un patrón de archivo:</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="793" /> - <location filename="../PipInterface/Pip.py" line="788" /> + <location filename="../PipInterface/Pip.py" line="916" /> + <location filename="../PipInterface/Pip.py" line="911" /> <source>Purge Cache</source> <translation>Purgar Cache</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="789" /> + <location filename="../PipInterface/Pip.py" line="912" /> <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source> <translation>Desear realmente purgar la cache de pip? Todos los archivos necesitarán descargarse de nuevo.</translation> </message> @@ -51502,19 +51516,19 @@ <location filename="../PipInterface/PipFreezeDialog.py" line="230" /> <location filename="../PipInterface/PipFreezeDialog.py" line="210" /> <location filename="../PipInterface/PipFreezeDialog.py" line="198" /> - <location filename="../PipInterface/PipFreezeDialog.py" line="118" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="122" /> <source>Generate Requirements</source> <translation>Generar Requisitos</translation> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="119" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="123" /> <source>The requirements were changed. Do you want to overwrite these changes?</source> <translation>Los requisitos se han cambiado. ¿Desea sobreescribir los cambios?</translation> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="160" /> - <source>No output generated by 'pip freeze'.</source> - <translation>'pip freeze' no ha generado output.</translation> + <location filename="../PipInterface/PipFreezeDialog.py" line="158" /> + <source>No package specifiers generated by 'pip freeze'.</source> + <translation>No se han generado especificadores de package por parte de 'pip freeze'.</translation> </message> <message> <location filename="../PipInterface/PipFreezeDialog.py" line="199" /> @@ -51543,6 +51557,16 @@ </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>Select to show requirements for packages installed to the user-site only</source> + <translation>Seleccionar para mostrar requisitos para packages instalado solamente en el site de usuario</translation> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>User-Site only</source> + <translation>Solo Site de Usuario</translation> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Requirements File:</source> <translation>Archivo de Requisitos:</translation> </message> @@ -51603,6 +51627,65 @@ </message> </context> <context> + <name>PipLicensesDialog</name> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package Licenses</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Local packages only</source> + <translation type="unfinished">Packages locales solo</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished">Solo Site de Usuario</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package</source> + <translation type="unfinished">Package</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Version</source> + <translation type="unfinished">Versión</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>License</source> + <translation type="unfinished">Licencia</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="61" /> + <source>Licenses of "{0}"</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="65" /> + <source>No environment specified.</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PipPackageDetailsDialog</name> <message> <location filename="../PipInterface/PipPackageDetailsDialog.py" line="46" /> @@ -51855,11 +51938,17 @@ <name>PipPackagesWidget</name> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Toggle to show or hide the dependency tree view</source> + <translation>Conmutar para mostrar u ocultar la vista de árbol de dependencias</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only locally-installed packages</source> <translation>Seleccionar para mostrar solo packages instalados localmente</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Local packages only</source> <translation>Packages locales solo</translation> </message> @@ -51880,11 +51969,23 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>User-Site only</source> <translation>Solo Site de Usuario</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Perform vulnerability checks based on "Safety DB".</source> + <translation>Llevar a cabo comprobaciones de vulnerabilidad basadas en "Safety-DB".</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Vulnerability Check</source> + <translation>Comprobación de Vulnerabilidades</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Package</source> @@ -51892,13 +51993,19 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Installed Version</source> - <translation>Versión Instalada</translation> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Installed</source> + <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Available Version</source> - <translation>Versión Disponible</translation> + <source>Available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Affected</source> + <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> @@ -51943,6 +52050,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Press to show details for the selected entry</source> <translation>Pulsar para mostrar detalles para la entrada seleccionada</translation> </message> @@ -51953,11 +52061,6 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Press to start the search</source> - <translation>Pulsar para iniciar la búsqueda</translation> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Enter the search term for the package name</source> <translation>Introducir el término de búsqueda para el nombre de package</translation> </message> @@ -51968,6 +52071,16 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to start the search</source> + <translation>Pulsar para iniciar la búsqueda</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to search for more packages</source> + <translation>Pulsar para buscar más packages</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Version</source> <translation>Versión</translation> </message> @@ -51992,104 +52105,150 @@ <translation>Seleccionar para instalar el package seleccionado en el site de usuario</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="169" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>View Type</source> + <translation>Ver Tipo</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package requires other packages</source> + <translation>Seleccionar para mostrar qué package requiere otros packages</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Requires</source> + <translation>Requiere</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package is required by others</source> + <translation>Seleccionar para mostrar qué package es requerido por otros</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required By</source> + <translation>Requerido por</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of locally installed packages</source> + <translation>Seleccionar para mostrar solamente dependencias de packages instalados localmente</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of packages installed to the user-site</source> + <translation>Seleccionar para mostrar solamente dependencias de packages instalados en el sitio de usuario</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to refresh the dependency tree</source> + <translation>Pulsar para actualizar el árbol de dependencias</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="185" /> <source>pip Menu</source> <translation>Menu pip</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="195" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="230" /> <source>Name:</source> <translation>Nombre:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="196" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="231" /> <source>Version:</source> <translation>Versión:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="197" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="232" /> <source>Location:</source> <translation>Ubicación:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="198" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="233" /> <source>Requires:</source> <translation>Requiere:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="199" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="234" /> <source>Summary:</source> <translation>Resumen:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="200" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="235" /> <source>Homepage:</source> <translation>Página Home:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="201" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="236" /> <source>Author:</source> <translation>Autor:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="202" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="237" /> <source>Author Email:</source> <translation>Correo electrónico del Autor:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="203" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="238" /> <source>License:</source> <translation>Licencia:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="204" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="239" /> <source>Metadata Version:</source> <translation>Versión de Metadatos:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="205" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="240" /> <source>Installer:</source> <translation>Instalador:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="206" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="241" /> <source>Classifiers:</source> <translation>Clasificadores:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="207" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="242" /> <source>Entry Points:</source> <translation>Puntos de Entrada:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="208" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="243" /> <source>Files:</source> <translation>Archivos:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="375" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="427" /> <source>Getting installed packages...</source> <translation>Obteniendo packages instalados...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="390" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="443" /> <source>Getting outdated packages...</source> <translation>Obteniendo packages antiguos...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="975" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="812" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="790" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1141" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="972" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="961" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="930" /> <source>Search PyPI</source> <translation>Buscar PyPI</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="791" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="931" /> <source><p>Received an error while searching for <b>{0}</b>.</p><p>Error: {1}</p></source> <translation><p>Recibido error mientras se buscaba <b>{0}</b>.</p><p>Error: {1}</p></translation> </message> <message numerus="yes"> - <location filename="../PipInterface/PipPackagesWidget.py" line="805" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="946" /> <source>%n package(s) found.</source> <translation> <numerusform>%n package encontrado.</numerusform> @@ -52097,116 +52256,173 @@ </translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="807" /> - <source>Showing first 20 packages found.</source> - <translation>Mostrando los primeros 20 packages encontrados.</translation> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="815" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="813" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="950" /> + <source>Showing first {0} packages found.</source> + <translation>Mostrando primeros {0} packages encontrados.</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="966" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="962" /> <source><p>There were no results for <b>{0}</b>.</p></source> <translation><p>Sin resultados para <b>{0}</b>.</p></translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="976" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="973" /> + <source><p>There were no more results for <b>{0}</b>.</p></source> + <translation><p>No hay más resultados para <b>{0}</b>.</p></translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1142" /> <source><p>No package details info for <b>{0}</b> available.</p></source> <translation><p>No hay info de detalles de package disponible para <b>{0}</b>.</p></translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="990" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1156" /> <source>Install Pip</source> <translation>Instalar Pip</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="993" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1159" /> <source>Install Pip to User-Site</source> <translation>Instalar Pip en el Sitio de Usuario</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="996" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1162" /> <source>Repair Pip</source> <translation>Reparar Pip</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1116" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1000" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1299" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1166" /> <source>Install Packages</source> <translation>Instalar Packages</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1003" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1169" /> <source>Install Local Package</source> <translation>Instalar Package Local</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1007" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1173" /> <source>Install Requirements</source> <translation>Instalar Requisitos</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1010" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1176" /> <source>Re-Install Selected Packages</source> <translation>Reinstalar los Packages Seleccionados</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1013" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1179" /> <source>Uninstall Requirements</source> <translation>Desinstalar Requisitos</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1016" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1182" /> <source>Generate Requirements...</source> <translation>Generar Requisitos...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1020" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1186" /> + <source>Show Licenses...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1190" /> + <source>Check Vulnerabilities</source> + <translation>Comprobar Vulnerabilidades</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1194" /> + <source>Update Vulnerability Database</source> + <translation>Actualizar Base de Datos de Vulnerabilidades</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1198" /> <source>Show Cache Info...</source> <translation>Mostrar info de Cache...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1023" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1201" /> <source>Show Cached Files...</source> <translation>Mostrar Archivos en Cache...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1026" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1204" /> <source>Remove Cached Files...</source> <translation>Eliminar Archivos en Cache...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1029" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1207" /> <source>Purge Cache...</source> <translation>Purgar Cache...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1034" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1212" /> <source>Edit User Configuration...</source> <translation>Editar Configuración de Usuario...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1037" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1215" /> <source>Edit Environment Configuration...</source> <translation>Editar Configuración de Entorno...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1042" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1220" /> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1237" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1224" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1213" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1421" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1408" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1397" /> <source>Edit Configuration</source> <translation>Editar Configuración</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1238" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1225" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1214" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1422" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1409" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1398" /> <source>No valid configuration path determined. Aborting</source> <translation>No hay una ruta válida de configuración determinada. Abortando</translation> </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1576" /> + <source>{0} {1}</source> + <comment>package name, package version</comment> + <translation>{0} {1}</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1598" /> + <source>Affected Version:</source> + <translation>Versión Afectada:</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1601" /> + <source>Advisory:</source> + <translation>Recomendatorio:</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1716" /> + <source>any</source> + <translation>cualquiera</translation> + </message> + <message> + <source>Installed Version</source> + <translation type="vanished">Versión Instalada</translation> + </message> + <message> + <source>Available Version</source> + <translation type="vanished">Versión Disponible</translation> + </message> + <message> + <source>Affected Version</source> + <translation type="vanished">Versión Afectada</translation> + </message> + <message> + <source>Required Version</source> + <translation type="vanished">Versión Requerida</translation> + </message> </context> <context> <name>PipPage</name> @@ -52216,6 +52432,11 @@ <translation><b>Nota:</b> Dejar vacío para utilizar la URL de índice por defecto (<a href="{0}">{0}</a>).</translation> </message> <message> + <location filename="../Preferences/ConfigurationPages/PipPage.py" line="34" /> + <source><b>Note:</b> Leave empty to use the default Safety DB URL ({0}).</source> + <translation><b>Nota:</b> Dejar vacío para usar la Safety DB URL por defecto ({0}).</translation> + </message> + <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source><b>Configure pip</b></source> <translation><b>Configurar pip</b></translation> @@ -52232,6 +52453,36 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Vulnerability Checks</source> + <translation>Comprobaciones de Vulnerabilidades</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Safety DB URL:</source> + <translation>Safety DB URL:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the base URL for the Safety DB mirror to be used</source> + <translation>Introducir la URL base para el mirror de Safety DB a utilizar</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Cache Validity:</source> + <translation>Validez de Cache:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</source> + <translation>Introducir el tiempo de validez de caché para la Safety DB expresado en horas (desde 2 horas hasta 7 días)</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source> hours</source> + <translation> horas</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source>Environment</source> <translation>Entorno</translation> </message> @@ -52247,6 +52498,19 @@ </message> </context> <context> + <name>PipVulnerabilityChecker</name> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="219" /> + <source>Fetching Vulnerability Database</source> + <translation>Recuperando Base de Datos de Vulnerabilidades</translation> + </message> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="220" /> + <source><p>The vulnerability database <b>{0}</b> could not be loaded from <b>{1}</b>.</p><p>The vulnerability check is not available.</p></source> + <translation><p>La base de datos de vulnerabilidades <b>{0}</b> no se puede cargar desde <b>{1}</b>.</p><p>La comprobación de vulnerabilidades no está disponible.</p></translation> + </message> + </context> + <context> <name>PixmapDiagram</name> <message> <location filename="../Graphics/PixmapDiagram.py" line="164" /> @@ -52659,32 +52923,32 @@ <translation>El módulo no tiene el atributo 'pluginType' y/o el atributo 'pluginTypename'.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="445" /> + <location filename="../PluginManager/PluginManager.py" line="449" /> <source>Module failed to load. Error: {0}</source> <translation>Ha fallado la carga del módulo. Error: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="622" /> + <location filename="../PluginManager/PluginManager.py" line="626" /> <source>Incompatible plugin activation method.</source> <translation>Metodo de activación del plugin incompatible.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1204" /> + <location filename="../PluginManager/PluginManager.py" line="1208" /> <source>Plugin Manager Error</source> <translation>Error del Gestor de Plugins</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1205" /> + <location filename="../PluginManager/PluginManager.py" line="1209" /> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>El directorio de descaga del plugin <b>{0}</b> no ha podido ser creado. Por favor, configúrelo a través del diálogo de configuración.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1271" /> + <location filename="../PluginManager/PluginManager.py" line="1275" /> <source>Error downloading file</source> <translation>Error al descargar el fichero</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1272" /> + <location filename="../PluginManager/PluginManager.py" line="1276" /> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>No se pudo descargar el archivo solicitado desde {0}.</p><p>Error: {1}</p></translation> </message> @@ -52841,6 +53105,21 @@ <source>Edit URL</source> <translation>Editar URL</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Startup Behavior</source> + <translation>Comportamiento de Inicio</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Select, to check for missing plugin dependencies at startup and install them</source> + <translation>Seleccionar para comprobar dependencias perdidas de plugins al inicio, e instalar</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Automatic dependencies installation</source> + <translation>Instalación automática de dependencias</translation> + </message> </context> <context> <name>PluginRepositoryDialog</name> @@ -53509,18 +53788,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1654" /> + <location filename="../Preferences/__init__.py" line="1658" /> <source>Export Preferences</source> <translation>Exportar Preferencias</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1682" /> - <location filename="../Preferences/__init__.py" line="1656" /> + <location filename="../Preferences/__init__.py" line="1686" /> + <location filename="../Preferences/__init__.py" line="1660" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>Archivo de Propiedades (*.ini);;Todos los archivos (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> + <location filename="../Preferences/__init__.py" line="1684" /> <source>Import Preferences</source> <translation>Importar Preferencias</translation> </message> @@ -78750,7 +79029,17 @@ <translation><h3>Números de Versiones</h3><table></translation> </message> <message> - <location filename="../Tools/TrayStarter.py" line="582" /> + <location filename="../Tools/TrayStarter.py" line="600" /> + <source>Desktop</source> + <translation>Escritorio</translation> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="603" /> + <source>Session Type</source> + <translation>Tipo de Sesión</translation> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="605" /> <source></table></source> <translation></table></translation> </message> @@ -80308,2631 +80597,2547 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="256" /> + <location filename="../UI/UserInterface.py" line="253" /> <source>Initializing Basic Services...</source> <translation>Inicializando Servicios Básicos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="297" /> + <location filename="../UI/UserInterface.py" line="294" /> <source>Initializing Plugin Manager...</source> <translation>Inicializando el administrador de Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="304" /> + <location filename="../UI/UserInterface.py" line="301" /> <source>Generating Main User Interface...</source> <translation>Generando la interfaz general de usuario...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="346" /> + <location filename="../UI/UserInterface.py" line="343" /> <source>Setting up connections...</source> <translation>Aplicando conexiones...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="593" /> + <location filename="../UI/UserInterface.py" line="590" /> <source>Initializing Tools...</source> <translation>Inicializando Herramientas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="603" /> + <location filename="../UI/UserInterface.py" line="600" /> <source>Registering Objects...</source> <translation>Registrando Objetos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="644" /> + <location filename="../UI/UserInterface.py" line="636" /> <source>Initializing Actions...</source> <translation>Inicializando Acciones...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="646" /> + <location filename="../UI/UserInterface.py" line="638" /> <source>Initializing Menus...</source> <translation>Inicializando Menues...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="648" /> + <location filename="../UI/UserInterface.py" line="640" /> <source>Initializing Toolbars...</source> <translation>Inicializando Barras de Herramientas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="650" /> + <location filename="../UI/UserInterface.py" line="642" /> <source>Initializing Statusbar...</source> <translation>Inicializando Barra de estado...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="678" /> + <location filename="../UI/UserInterface.py" line="670" /> <source>Initializing Single Application Server...</source> <translation>Incializando el servidor de aplicaciones simples...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="676" /> + <source>Initializing Plugins...</source> + <translation>Inicializando Plugins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="679" /> + <source>Activating Plugins...</source> + <translation>Activando Plugins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="681" /> + <source>Generating Plugins Toolbars...</source> + <translation>Generando Barras de Herramientas para Plugins...</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="684" /> - <source>Initializing Plugins...</source> - <translation>Inicializando Plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="687" /> - <source>Activating Plugins...</source> - <translation>Activando Plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="689" /> - <source>Generating Plugins Toolbars...</source> - <translation>Generando Barras de Herramientas para Plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="692" /> <source>Cleaning Plugins Download Area...</source> <translation>Limpiar Área de Descarga de Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="703" /> + <location filename="../UI/UserInterface.py" line="695" /> <source>Restoring Toolbarmanager...</source> <translation>Restaurando Gestor de Barras de Herramientas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="712" /> + <location filename="../UI/UserInterface.py" line="704" /> <source>Setting View Profile...</source> <translation>Estableciendo Perfil de Vista...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="725" /> + <location filename="../UI/UserInterface.py" line="717" /> <source>Reading Tasks...</source> <translation>Leyendo tareas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="730" /> + <location filename="../UI/UserInterface.py" line="722" /> <source>Reading Templates...</source> <translation>Leyendo Plantillas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="735" /> + <location filename="../UI/UserInterface.py" line="727" /> <source>Starting Debugger...</source> <translation>Iniciando Depurador...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2041" /> - <location filename="../UI/UserInterface.py" line="1065" /> + <location filename="../UI/UserInterface.py" line="2033" /> + <location filename="../UI/UserInterface.py" line="1057" /> <source>Left Toolbox</source> <translation>Caja de herramientas de la Izquierda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2072" /> - <location filename="../UI/UserInterface.py" line="1073" /> + <location filename="../UI/UserInterface.py" line="2064" /> + <location filename="../UI/UserInterface.py" line="1065" /> <source>Horizontal Toolbox</source> <translation>Caja de Herramientas Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2056" /> - <location filename="../UI/UserInterface.py" line="1081" /> + <location filename="../UI/UserInterface.py" line="2048" /> + <location filename="../UI/UserInterface.py" line="1073" /> <source>Right Toolbox</source> <translation>Caja de herramientas de la Derecha</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915" /> - <location filename="../UI/UserInterface.py" line="1237" /> - <location filename="../UI/UserInterface.py" line="1089" /> + <location filename="../UI/UserInterface.py" line="1907" /> + <location filename="../UI/UserInterface.py" line="1229" /> + <location filename="../UI/UserInterface.py" line="1081" /> <source>Multiproject-Viewer</source> <translation>Visor de Multiproyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1898" /> - <location filename="../UI/UserInterface.py" line="1242" /> - <location filename="../UI/UserInterface.py" line="1093" /> + <location filename="../UI/UserInterface.py" line="1890" /> + <location filename="../UI/UserInterface.py" line="1234" /> + <location filename="../UI/UserInterface.py" line="1085" /> <source>Project-Viewer</source> <translation>Visor de Proyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2326" /> - <location filename="../UI/UserInterface.py" line="2325" /> - <location filename="../UI/UserInterface.py" line="1247" /> - <location filename="../UI/UserInterface.py" line="1097" /> + <location filename="../UI/UserInterface.py" line="2318" /> + <location filename="../UI/UserInterface.py" line="2317" /> + <location filename="../UI/UserInterface.py" line="1239" /> + <location filename="../UI/UserInterface.py" line="1089" /> <source>Find/Replace In Files</source> <translation>Buscar/Reemplazar en Archivos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2344" /> - <location filename="../UI/UserInterface.py" line="2343" /> - <location filename="../UI/UserInterface.py" line="1252" /> - <location filename="../UI/UserInterface.py" line="1101" /> + <location filename="../UI/UserInterface.py" line="2336" /> + <location filename="../UI/UserInterface.py" line="2335" /> + <location filename="../UI/UserInterface.py" line="1244" /> + <location filename="../UI/UserInterface.py" line="1093" /> <source>Find File</source> <translation>Buscar archivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1257" /> - <location filename="../UI/UserInterface.py" line="1105" /> + <location filename="../UI/UserInterface.py" line="1249" /> + <location filename="../UI/UserInterface.py" line="1097" /> <source>VCS Status</source> <translation>Estado de VCS</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2022" /> - <location filename="../UI/UserInterface.py" line="1263" /> - <location filename="../UI/UserInterface.py" line="1110" /> + <location filename="../UI/UserInterface.py" line="2014" /> + <location filename="../UI/UserInterface.py" line="1255" /> + <location filename="../UI/UserInterface.py" line="1102" /> <source>Template-Viewer</source> <translation>Visor de Plantillas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1968" /> - <location filename="../UI/UserInterface.py" line="1269" /> - <location filename="../UI/UserInterface.py" line="1115" /> + <location filename="../UI/UserInterface.py" line="1960" /> + <location filename="../UI/UserInterface.py" line="1261" /> + <location filename="../UI/UserInterface.py" line="1107" /> <source>File-Browser</source> <translation>Explorador de archivos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1275" /> - <location filename="../UI/UserInterface.py" line="1120" /> + <location filename="../UI/UserInterface.py" line="1267" /> + <location filename="../UI/UserInterface.py" line="1112" /> <source>Symbols</source> <translation>Símbolos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1933" /> - <location filename="../UI/UserInterface.py" line="1295" /> - <location filename="../UI/UserInterface.py" line="1290" /> - <location filename="../UI/UserInterface.py" line="1128" /> + <location filename="../UI/UserInterface.py" line="1925" /> + <location filename="../UI/UserInterface.py" line="1287" /> + <location filename="../UI/UserInterface.py" line="1282" /> + <location filename="../UI/UserInterface.py" line="1120" /> <source>Debug-Viewer</source> <translation>Visor Depurador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2215" /> - <location filename="../UI/UserInterface.py" line="2214" /> - <location filename="../UI/UserInterface.py" line="1301" /> - <location filename="../UI/UserInterface.py" line="1133" /> + <location filename="../UI/UserInterface.py" line="2207" /> + <location filename="../UI/UserInterface.py" line="2206" /> + <location filename="../UI/UserInterface.py" line="1293" /> + <location filename="../UI/UserInterface.py" line="1125" /> <source>Code Documentation Viewer</source> <translation>Visor de Documentación de Código</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380" /> - <location filename="../UI/UserInterface.py" line="2379" /> - <location filename="../UI/UserInterface.py" line="1307" /> - <location filename="../UI/UserInterface.py" line="1138" /> + <location filename="../UI/UserInterface.py" line="2372" /> + <location filename="../UI/UserInterface.py" line="2371" /> + <location filename="../UI/UserInterface.py" line="1299" /> + <location filename="../UI/UserInterface.py" line="1130" /> <source>Help Viewer</source> <translation>Visor de Ayuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3103" /> - <location filename="../UI/UserInterface.py" line="2289" /> - <location filename="../UI/UserInterface.py" line="2288" /> - <location filename="../UI/UserInterface.py" line="1312" /> - <location filename="../UI/UserInterface.py" line="1142" /> + <location filename="../UI/UserInterface.py" line="3069" /> + <location filename="../UI/UserInterface.py" line="2281" /> + <location filename="../UI/UserInterface.py" line="2280" /> + <location filename="../UI/UserInterface.py" line="1304" /> + <location filename="../UI/UserInterface.py" line="1134" /> <source>Plugin Repository</source> <translation>Repositorio de Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2307" /> - <location filename="../UI/UserInterface.py" line="2306" /> - <location filename="../UI/UserInterface.py" line="1317" /> - <location filename="../UI/UserInterface.py" line="1146" /> + <location filename="../UI/UserInterface.py" line="2299" /> + <location filename="../UI/UserInterface.py" line="2298" /> + <location filename="../UI/UserInterface.py" line="1309" /> + <location filename="../UI/UserInterface.py" line="1138" /> <source>Virtual Environments</source> <translation>Entornos Virtuales</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235" /> - <location filename="../UI/UserInterface.py" line="2234" /> - <location filename="../UI/UserInterface.py" line="1322" /> - <location filename="../UI/UserInterface.py" line="1151" /> + <location filename="../UI/UserInterface.py" line="2227" /> + <location filename="../UI/UserInterface.py" line="2226" /> + <location filename="../UI/UserInterface.py" line="1314" /> + <location filename="../UI/UserInterface.py" line="1143" /> <source>PyPI</source> <translation>PyPI</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2253" /> - <location filename="../UI/UserInterface.py" line="2252" /> - <location filename="../UI/UserInterface.py" line="1327" /> - <location filename="../UI/UserInterface.py" line="1156" /> + <location filename="../UI/UserInterface.py" line="2245" /> + <location filename="../UI/UserInterface.py" line="2244" /> + <location filename="../UI/UserInterface.py" line="1319" /> + <location filename="../UI/UserInterface.py" line="1148" /> <source>Conda</source> <translation>Conda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332" /> - <location filename="../UI/UserInterface.py" line="1161" /> + <location filename="../UI/UserInterface.py" line="1324" /> + <location filename="../UI/UserInterface.py" line="1153" /> <source>Cooperation</source> <translation>Cooperación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2158" /> - <location filename="../UI/UserInterface.py" line="1337" /> - <location filename="../UI/UserInterface.py" line="1166" /> + <location filename="../UI/UserInterface.py" line="2150" /> + <location filename="../UI/UserInterface.py" line="1329" /> + <location filename="../UI/UserInterface.py" line="1158" /> <source>IRC</source> <translation>IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2271" /> - <location filename="../UI/UserInterface.py" line="2270" /> - <location filename="../UI/UserInterface.py" line="1343" /> - <location filename="../UI/UserInterface.py" line="1171" /> + <location filename="../UI/UserInterface.py" line="2263" /> + <location filename="../UI/UserInterface.py" line="2262" /> + <location filename="../UI/UserInterface.py" line="1335" /> + <location filename="../UI/UserInterface.py" line="1163" /> <source>MicroPython</source> <translation>MicroPython</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1951" /> - <location filename="../UI/UserInterface.py" line="1351" /> - <location filename="../UI/UserInterface.py" line="1179" /> + <location filename="../UI/UserInterface.py" line="1943" /> + <location filename="../UI/UserInterface.py" line="1343" /> + <location filename="../UI/UserInterface.py" line="1171" /> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003" /> - <location filename="../UI/UserInterface.py" line="1355" /> - <location filename="../UI/UserInterface.py" line="1183" /> + <location filename="../UI/UserInterface.py" line="1995" /> + <location filename="../UI/UserInterface.py" line="1347" /> + <location filename="../UI/UserInterface.py" line="1175" /> <source>Task-Viewer</source> <translation>Visor de Tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1985" /> - <location filename="../UI/UserInterface.py" line="1359" /> - <location filename="../UI/UserInterface.py" line="1187" /> + <location filename="../UI/UserInterface.py" line="1977" /> + <location filename="../UI/UserInterface.py" line="1351" /> + <location filename="../UI/UserInterface.py" line="1179" /> <source>Log-Viewer</source> <translation>Visor Log</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1364" /> - <location filename="../UI/UserInterface.py" line="1192" /> + <location filename="../UI/UserInterface.py" line="1356" /> + <location filename="../UI/UserInterface.py" line="1184" /> <source>Numbers</source> <translation>Números</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752" /> + <location filename="../UI/UserInterface.py" line="1744" /> <source>{0} - Passive Mode</source> <translation>{0} - Modo Pasivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1759" /> - <location filename="../UI/UserInterface.py" line="1755" /> + <location filename="../UI/UserInterface.py" line="1751" /> + <location filename="../UI/UserInterface.py" line="1747" /> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - Modo Pasivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1763" /> + <location filename="../UI/UserInterface.py" line="1755" /> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - Modo Pasivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1786" /> + <location filename="../UI/UserInterface.py" line="1778" /> <source>Quit</source> <translation>Salir</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1788" /> + <location filename="../UI/UserInterface.py" line="1780" /> <source>&Quit</source> <translation>&Salir</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1789" /> + <location filename="../UI/UserInterface.py" line="1781" /> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1791" /> + <location filename="../UI/UserInterface.py" line="1783" /> <source>Quit the IDE</source> <translation>Salir del IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1792" /> + <location filename="../UI/UserInterface.py" line="1784" /> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Salir del IDE</b><p>Sale del IDE. Salve primero cualquier cambio que no haya guardado. Se detendran las depuraciones en curso y las preferencias se guardarán en disco.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1805" /> - <location filename="../UI/UserInterface.py" line="1803" /> + <location filename="../UI/UserInterface.py" line="1797" /> + <location filename="../UI/UserInterface.py" line="1795" /> <source>Restart</source> <translation>Reiniciar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806" /> + <location filename="../UI/UserInterface.py" line="1798" /> <source>Ctrl+Shift+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Shift+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1808" /> + <location filename="../UI/UserInterface.py" line="1800" /> <source>Restart the IDE</source> <translation>Reiniciar la IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1809" /> + <location filename="../UI/UserInterface.py" line="1801" /> <source><b>Restart the IDE</b><p>This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Reiniciar la IDE</b><p>Reinicia la IDE. Todos los cambios sin guardar pueden ser guardados primero. Cualquier programa de Python que esté en depuración será detenido, y las preferencias se guardarán en disco.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1822" /> - <location filename="../UI/UserInterface.py" line="1819" /> + <location filename="../UI/UserInterface.py" line="1814" /> + <location filename="../UI/UserInterface.py" line="1811" /> <source>Save session</source> <translation>Guardar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1820" /> + <location filename="../UI/UserInterface.py" line="1812" /> <source>Save session...</source> <translation>Guardar sesión...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823" /> + <location filename="../UI/UserInterface.py" line="1815" /> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation><b>Guardar sesión...</b><p>Guarda la sesión actual a disco. Se muestra un diálogo para seleccionar el nombre de archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7022" /> - <location filename="../UI/UserInterface.py" line="1835" /> - <location filename="../UI/UserInterface.py" line="1832" /> + <location filename="../UI/UserInterface.py" line="7080" /> + <location filename="../UI/UserInterface.py" line="1827" /> + <location filename="../UI/UserInterface.py" line="1824" /> <source>Load session</source> <translation>Cargar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1833" /> + <location filename="../UI/UserInterface.py" line="1825" /> <source>Load session...</source> <translation>Cargar sesión...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836" /> + <location filename="../UI/UserInterface.py" line="1828" /> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation><b>Cargar sesión...</b><p>Carga una sesión guardada en disco anteriormente. Se muestra un diálogo para seleccionar el nombre de archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1845" /> + <location filename="../UI/UserInterface.py" line="1837" /> <source>New Window</source> <translation>Nueva Ventana</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1847" /> + <location filename="../UI/UserInterface.py" line="1839" /> <source>New &Window</source> <translation>Nueva &Ventana</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848" /> + <location filename="../UI/UserInterface.py" line="1840" /> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1850" /> + <location filename="../UI/UserInterface.py" line="1842" /> <source>Open a new eric instance</source> <translation>Abrir una nueva instancia de eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1852" /> + <location filename="../UI/UserInterface.py" line="1844" /> <source><b>New Window</b><p>This opens a new instance of the eric IDE.</p></source> <translation><b>Nueva Ventana</b><p>Abre una nueva instancia del IDE eric.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1866" /> - <location filename="../UI/UserInterface.py" line="1864" /> + <location filename="../UI/UserInterface.py" line="1858" /> + <location filename="../UI/UserInterface.py" line="1856" /> <source>Edit Profile</source> <translation>Perfil de Edición</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1869" /> + <location filename="../UI/UserInterface.py" line="1861" /> <source>Activate the edit view profile</source> <translation>Activar el perfil de vista de edición</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871" /> + <location filename="../UI/UserInterface.py" line="1863" /> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Perfil de Edición</b><p>Activar "Perfil de Vista de Edición". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1883" /> - <location filename="../UI/UserInterface.py" line="1881" /> + <location filename="../UI/UserInterface.py" line="1875" /> + <location filename="../UI/UserInterface.py" line="1873" /> <source>Debug Profile</source> <translation>Perfil de Depuración</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1887" /> + <location filename="../UI/UserInterface.py" line="1879" /> <source>Activate the debug view profile</source> <translation>Activar el perfil de vista de depuración</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1888" /> + <location filename="../UI/UserInterface.py" line="1880" /> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Perfil de Depuración</b><p>Activar "Perfil de Vista de Depuracion". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899" /> + <location filename="../UI/UserInterface.py" line="1891" /> <source>&Project-Viewer</source> <translation>Visor de &Proyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1900" /> + <location filename="../UI/UserInterface.py" line="1892" /> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1903" /> + <location filename="../UI/UserInterface.py" line="1895" /> <source>Switch the input focus to the Project-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Proyecto.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1905" /> + <location filename="../UI/UserInterface.py" line="1897" /> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation><b>Activar Visor de Proyectos</b><p>Cambia el foco de input a la ventana de Visor de Proyecto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1916" /> + <location filename="../UI/UserInterface.py" line="1908" /> <source>&Multiproject-Viewer</source> <translation>Visor de &Multiproyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1917" /> + <location filename="../UI/UserInterface.py" line="1909" /> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920" /> + <location filename="../UI/UserInterface.py" line="1912" /> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Multiproyecto.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922" /> + <location filename="../UI/UserInterface.py" line="1914" /> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation><b>Activar Visor de Multiproyecto</b><p>Cambia el foco de input a la ventana de Visor de Multiproyecto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1934" /> + <location filename="../UI/UserInterface.py" line="1926" /> <source>&Debug-Viewer</source> <translation>Visor &Depurador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935" /> + <location filename="../UI/UserInterface.py" line="1927" /> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1938" /> + <location filename="../UI/UserInterface.py" line="1930" /> <source>Switch the input focus to the Debug-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Depuración.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1940" /> + <location filename="../UI/UserInterface.py" line="1932" /> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation><b>Activar Visor de Depuración</b><p>Cambia el foco de input a la ventana de Visor de Depuración.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1952" /> + <location filename="../UI/UserInterface.py" line="1944" /> <source>&Shell</source> <translation>&Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1953" /> + <location filename="../UI/UserInterface.py" line="1945" /> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1956" /> + <location filename="../UI/UserInterface.py" line="1948" /> <source>Switch the input focus to the Shell window.</source> <translation>Cambiar el foco de input a la ventana de Shell.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1958" /> + <location filename="../UI/UserInterface.py" line="1950" /> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation><b>Activar Shell</b><p>Cambia el foco de input a la ventana de Shell.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1969" /> + <location filename="../UI/UserInterface.py" line="1961" /> <source>&File-Browser</source> <translation>Na&vegador de archivos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1970" /> + <location filename="../UI/UserInterface.py" line="1962" /> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1973" /> + <location filename="../UI/UserInterface.py" line="1965" /> <source>Switch the input focus to the File-Browser window.</source> <translation>Cambiar el foco de input a la ventana de Navegador de Archivos.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1975" /> + <location filename="../UI/UserInterface.py" line="1967" /> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation><b>Activar Navegador de Archivos</b><p>Cambia el foco de input a la ventana de Navegador de Archivos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1986" /> + <location filename="../UI/UserInterface.py" line="1978" /> <source>Lo&g-Viewer</source> <translation>Visor de Lo&g</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1987" /> + <location filename="../UI/UserInterface.py" line="1979" /> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1990" /> + <location filename="../UI/UserInterface.py" line="1982" /> <source>Switch the input focus to the Log-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Log.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1992" /> + <location filename="../UI/UserInterface.py" line="1984" /> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation><b>Activar Visor de Log</b><p>Cambia el foco de input a la ventana de Visor de Log.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004" /> + <location filename="../UI/UserInterface.py" line="1996" /> <source>&Task-Viewer</source> <translation>Visor de &Tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2005" /> + <location filename="../UI/UserInterface.py" line="1997" /> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2008" /> + <location filename="../UI/UserInterface.py" line="2000" /> <source>Switch the input focus to the Task-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Tareas.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2010" /> + <location filename="../UI/UserInterface.py" line="2002" /> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation><b>Activar Visor de Tareas</b><p>Cambia el foco de input a la ventana de Visor de Tareas.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2023" /> + <location filename="../UI/UserInterface.py" line="2015" /> <source>Templ&ate-Viewer</source> <translation>Visor de Pl&antillas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2024" /> + <location filename="../UI/UserInterface.py" line="2016" /> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2027" /> + <location filename="../UI/UserInterface.py" line="2019" /> <source>Switch the input focus to the Template-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Plantillas.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2029" /> + <location filename="../UI/UserInterface.py" line="2021" /> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation><b>Activar Visor de Plantillas</b><p>Cambiar el foco de input a la ventana de Visor de Plantillas.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2042" /> + <location filename="../UI/UserInterface.py" line="2034" /> <source>&Left Toolbox</source> <translation>Caja de herramientas de &la Izquierda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2043" /> + <location filename="../UI/UserInterface.py" line="2035" /> <source>Toggle the Left Toolbox window</source> <translation>Conmutar la ventana de Caja de Herramientas a la izquierda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2044" /> + <location filename="../UI/UserInterface.py" line="2036" /> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Conmutar la Caja de Herramientas de la izquierda</b><p>Si la ventana Caja de Herramientas de la izquierda está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2057" /> + <location filename="../UI/UserInterface.py" line="2049" /> <source>&Right Toolbox</source> <translation>Caja de herramientas de la De&recha</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2059" /> + <location filename="../UI/UserInterface.py" line="2051" /> <source>Toggle the Right Toolbox window</source> <translation>Conmutar la ventana de Caja de Herramientas a la derecha</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2060" /> + <location filename="../UI/UserInterface.py" line="2052" /> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Conmutar la Caja de Herramientas de la derecha</b><p>Si la ventana Caja de Herramientas de la derecha está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2073" /> + <location filename="../UI/UserInterface.py" line="2065" /> <source>&Horizontal Toolbox</source> <translation>Caja de Herramientas &Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2075" /> + <location filename="../UI/UserInterface.py" line="2067" /> <source>Toggle the Horizontal Toolbox window</source> <translation>Conmutar la ventana de Caja de Herramientas Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2077" /> + <location filename="../UI/UserInterface.py" line="2069" /> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Conmutar la ventana de Caja de Herramientas Horizontal</b><p>Si la ventana de Caja de Herramientas Horizontal está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2089" /> + <location filename="../UI/UserInterface.py" line="2081" /> <source>Left Sidebar</source> <translation>Barra Lateral a la Izquierda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2090" /> + <location filename="../UI/UserInterface.py" line="2082" /> <source>&Left Sidebar</source> <translation>Barra &Lateral a la Izquierda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2092" /> + <location filename="../UI/UserInterface.py" line="2084" /> <source>Toggle the left sidebar window</source> <translation>Conmutar la barra lateral a la izquierda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2093" /> + <location filename="../UI/UserInterface.py" line="2085" /> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Conmutar la barra lateral a la izquierda</b><p>Si la barra lateral a la izquierda está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2105" /> + <location filename="../UI/UserInterface.py" line="2097" /> <source>Right Sidebar</source> <translation>Barra Lateral a la Derecha</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2106" /> + <location filename="../UI/UserInterface.py" line="2098" /> <source>&Right Sidebar</source> <translation>Ba&rra Lateral a la Derecha</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2108" /> + <location filename="../UI/UserInterface.py" line="2100" /> <source>Toggle the right sidebar window</source> <translation>Conmutar la ventana de barra lateral de la derecha</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110" /> + <location filename="../UI/UserInterface.py" line="2102" /> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Conmutar la ventana de barra lateral de la derecha</b><p>Si la ventana de barra lateral a la derecha está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2122" /> + <location filename="../UI/UserInterface.py" line="2114" /> <source>Bottom Sidebar</source> <translation>Barra Lateral Inferior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2123" /> + <location filename="../UI/UserInterface.py" line="2115" /> <source>&Bottom Sidebar</source> <translation>&Barra Lateral Inferior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2125" /> + <location filename="../UI/UserInterface.py" line="2117" /> <source>Toggle the bottom sidebar window</source> <translation>Conmutar la barra lateral inferior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2127" /> + <location filename="../UI/UserInterface.py" line="2119" /> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Conmutar la barra lateral inferior</b><p>Si la barra lateral inferior está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139" /> + <location filename="../UI/UserInterface.py" line="2131" /> <source>Cooperation-Viewer</source> <translation>Visor de Cooperación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2140" /> + <location filename="../UI/UserInterface.py" line="2132" /> <source>Co&operation-Viewer</source> <translation>Visor de Co&operación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2141" /> + <location filename="../UI/UserInterface.py" line="2133" /> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144" /> + <location filename="../UI/UserInterface.py" line="2136" /> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Cooperación.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146" /> + <location filename="../UI/UserInterface.py" line="2138" /> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation><b>Activar Visor de Cooperación</b><p>Cambia el foco de input a la ventana de Visor de Cooperación.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2159" /> + <location filename="../UI/UserInterface.py" line="2151" /> <source>&IRC</source> <translation>&IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160" /> + <location filename="../UI/UserInterface.py" line="2152" /> <source>Ctrl+Alt+Shift+I</source> <translation>Ctrl+Alt+Shift+I</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2163" /> + <location filename="../UI/UserInterface.py" line="2155" /> <source>Switch the input focus to the IRC window.</source> <translation>Cambiar el foco de input a la ventana de IRC.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2165" /> + <location filename="../UI/UserInterface.py" line="2157" /> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation><b>Activar IRC</b><p>Cambia el foco de input a la ventana de IRC.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176" /> + <location filename="../UI/UserInterface.py" line="2168" /> <source>Symbols-Viewer</source> <translation>Visor de Símbolos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2177" /> + <location filename="../UI/UserInterface.py" line="2169" /> <source>S&ymbols-Viewer</source> <translation>Visor de S&ímbolos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2178" /> + <location filename="../UI/UserInterface.py" line="2170" /> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2181" /> + <location filename="../UI/UserInterface.py" line="2173" /> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Símbolos.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183" /> + <location filename="../UI/UserInterface.py" line="2175" /> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation><b>Activar Visor de Símbolos</b><p>Cambia el foco de input a la ventana de Visor de Símbolos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2195" /> + <location filename="../UI/UserInterface.py" line="2187" /> <source>Numbers-Viewer</source> <translation>Visor de Números</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196" /> + <location filename="../UI/UserInterface.py" line="2188" /> <source>Num&bers-Viewer</source> <translation>Visor de Nú&meros</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2197" /> + <location filename="../UI/UserInterface.py" line="2189" /> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2200" /> + <location filename="../UI/UserInterface.py" line="2192" /> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation>Cambiar el foco de input a la ventana de Visor de Números.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202" /> + <location filename="../UI/UserInterface.py" line="2194" /> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation><b>Activar Visor de Números</b><p>Cambia el foco de input a la ventana de Visor de Números.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2216" /> + <location filename="../UI/UserInterface.py" line="2208" /> <source>Ctrl+Alt+Shift+D</source> <translation>Ctrl+Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2219" /> + <location filename="../UI/UserInterface.py" line="2211" /> <source>Switch the input focus to the Code Documentation Viewer window.</source> <translation>Cambiar el foco de entrada a la ventana de Visor de Documentación de Código.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2222" /> + <location filename="../UI/UserInterface.py" line="2214" /> <source><b>Code Documentation Viewer</b><p>This switches the input focus to the Code Documentation Viewer window.</p></source> <translation><b>Visor de Documentación de Código</b><p>Cambia el foco de entrada a la ventana del Visor de Documentación de Código.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2236" /> + <location filename="../UI/UserInterface.py" line="2228" /> <source>Ctrl+Alt+Shift+P</source> <translation>Ctrl+Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239" /> + <location filename="../UI/UserInterface.py" line="2231" /> <source>Switch the input focus to the PyPI window.</source> <translation>Cambiar el foco de entrada a la ventana PyPI.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2241" /> + <location filename="../UI/UserInterface.py" line="2233" /> <source><b>PyPI</b><p>This switches the input focus to the PyPI window.</p></source> <translation><b>PyPI</b><p>Cambia el foco de entrada a la ventana de PyPI.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2254" /> + <location filename="../UI/UserInterface.py" line="2246" /> <source>Ctrl+Alt+Shift+C</source> <translation>Ctrl+Alt+Shift+C</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2257" /> + <location filename="../UI/UserInterface.py" line="2249" /> <source>Switch the input focus to the Conda window.</source> <translation>Cambiar el foco de entrada a la ventana de Conda.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259" /> + <location filename="../UI/UserInterface.py" line="2251" /> <source><b>Conda</b><p>This switches the input focus to the Conda window.</p></source> <translation><b>Conda</b><p>Cambia el foco de entrada a la ventana de Conda.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2272" /> + <location filename="../UI/UserInterface.py" line="2264" /> <source>Ctrl+Alt+Shift+M</source> <translation>Ctrl+Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2275" /> + <location filename="../UI/UserInterface.py" line="2267" /> <source>Switch the input focus to the MicroPython window.</source> <translation>Cambiar el foco de entrada a la ventana de MicroPython.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2277" /> + <location filename="../UI/UserInterface.py" line="2269" /> <source><b>MicroPython</b><p>This switches the input focus to the MicroPython window.</p></source> <translation><b>MicroPython</b><p>Cambia el foco de entrada a la ventana de MicroPython.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290" /> + <location filename="../UI/UserInterface.py" line="2282" /> <source>Ctrl+Alt+Shift+R</source> <translation>Ctrl+Alt+Shift+R</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293" /> + <location filename="../UI/UserInterface.py" line="2285" /> <source>Switch the input focus to the Plugin Repository window.</source> <translation>Cambiar el foco de entrada a la ventana de Repositorio de Plugins.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295" /> + <location filename="../UI/UserInterface.py" line="2287" /> <source><b>Plugin Repository</b><p>This switches the input focus to the Plugin Repository window.</p></source> <translation><b>Repositorio de Plugins</b><p>Cambia el foco de entrada a la ventana de Repositorio de Plugins.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308" /> + <location filename="../UI/UserInterface.py" line="2300" /> <source>Ctrl+Alt+V</source> <translation>Ctrl+Alt+V</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311" /> + <location filename="../UI/UserInterface.py" line="2303" /> <source>Switch the input focus to the Virtual Environments Manager window.</source> <translation>Cambiar el foco de entrada a la ventana de Gestión de Entornos Virtuales.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2314" /> + <location filename="../UI/UserInterface.py" line="2306" /> <source><b>Virtual Environments</b><p>This switches the input focus to the Virtual Environments Manager window.</p></source> <translation><b>Entornos Virtuales</b><p>Cambia el foco de entrada a la ventana de Gestión de Entornos Virtuales.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327" /> + <location filename="../UI/UserInterface.py" line="2319" /> <source>Ctrl+Alt+Shift+F</source> <translation>Ctrl+Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2330" /> + <location filename="../UI/UserInterface.py" line="2322" /> <source>Switch the input focus to the Find/Replace In Files window.</source> <translation>Cambiar el foco de entrada a la ventana de Buscar/Reemplazar en Archivos.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2332" /> + <location filename="../UI/UserInterface.py" line="2324" /> <source><b>Find/Replace In Files</b><p>This switches the input focus to the Find/Replace In Files window.</p></source> <translation><b>Buscar/Reemplazar en Archivos</b><p>Cambia el foco de entrada a la ventana de Buscar/Reemplazar en Archivos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345" /> + <location filename="../UI/UserInterface.py" line="2337" /> <source>Ctrl+Alt+Shift+L</source> <translation>Ctrl+Alt+Shift+L</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348" /> + <location filename="../UI/UserInterface.py" line="2340" /> <source>Switch the input focus to the Find File window.</source> <translation>Cambiar el foco de entrada a la ventana de Buscar Archivo.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2350" /> + <location filename="../UI/UserInterface.py" line="2342" /> <source><b>Find File</b><p>This switches the input focus to the Find File window.</p></source> <translation><b>Buscar Archivo</b><p>Cambia el foco de entrada a la ventana de Buscar Archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362" /> - <location filename="../UI/UserInterface.py" line="2361" /> + <location filename="../UI/UserInterface.py" line="2354" /> + <location filename="../UI/UserInterface.py" line="2353" /> <source>VCS Status List</source> <translation>Lista de Estado de VCS</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2363" /> + <location filename="../UI/UserInterface.py" line="2355" /> <source>Alt+Shift+V</source> <translation>Alt+Shift+V</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366" /> + <location filename="../UI/UserInterface.py" line="2358" /> <source>Switch the input focus to the VCS Status List window.</source> <translation>Cambiar el foco de entrada a la ventana de Lista de Estado de VCS.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368" /> + <location filename="../UI/UserInterface.py" line="2360" /> <source><b>VCS Status List</b><p>This switches the input focus to the VCS Status List window.</p></source> <translation><b>Lista de Estado de VCS</b><p>Cambia el foco de entrada a la ventana de Lista de Estado de VCS.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2381" /> + <location filename="../UI/UserInterface.py" line="2373" /> <source>Alt+Shift+H</source> <translation>Alt+Shift+H</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384" /> + <location filename="../UI/UserInterface.py" line="2376" /> <source>Switch the input focus to the embedded Help Viewer window.</source> <translation>Cambiar el foco de input a la ventana embebida de Visor de Ayuda.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386" /> + <location filename="../UI/UserInterface.py" line="2378" /> <source><b>Help Viewer</b><p>This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation><b>Visor de Ayuda</b><p>Cambia el foco de input a la ventana embebida de Visor de Ayuda. Mostrará archivos de ayuda HTML y ayuda de las colecciones de ayuda de Qt.</p><p>Si se llama con una palabra seleccionada, dicha palabra se buscará en la colección de ayuda de Qt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2399" /> + <location filename="../UI/UserInterface.py" line="2391" /> <source>What's This?</source> <translation>¿Qué es esto?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2401" /> + <location filename="../UI/UserInterface.py" line="2393" /> <source>&What's This?</source> <translation>¿&Qué es esto?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2402" /> + <location filename="../UI/UserInterface.py" line="2394" /> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404" /> + <location filename="../UI/UserInterface.py" line="2396" /> <source>Context sensitive help</source> <translation>Ayuda sensible al contexto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2405" /> + <location filename="../UI/UserInterface.py" line="2397" /> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Mostrar ayuda sensible al contexto</b><p>En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2417" /> + <location filename="../UI/UserInterface.py" line="2409" /> <source>Helpviewer</source> <translation>Visor de Ayuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419" /> + <location filename="../UI/UserInterface.py" line="2411" /> <source>&Helpviewer...</source> <translation>Visor de &Ayuda...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2420" /> + <location filename="../UI/UserInterface.py" line="2412" /> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2422" /> + <location filename="../UI/UserInterface.py" line="2414" /> <source>Open the helpviewer window</source> <translation>Abrir la ventana del visor de ayuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2424" /> + <location filename="../UI/UserInterface.py" line="2416" /> <source><b>Helpviewer</b><p>Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation><b>Visor de Ayuda</b><p>Mostrar el navegador web de eric web. Esta ventana mostraá archivos de ayuda HTML y ayuda de las colecciones de ayuda de Qt. Tiene la capacidad de navegar a enlaces, establecer marcadores, imprimir la ayuda mostrada y algunas otras características. Se puede usar también para navegar por internet.</p><p>Si se llama con una palabra seleccionada, dicha palabra se busca ne la colección de ayuda de Qt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2443" /> + <location filename="../UI/UserInterface.py" line="2435" /> <source>Show Versions</source> <translation>Mostrar Versiones</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2444" /> + <location filename="../UI/UserInterface.py" line="2436" /> <source>Show &Versions</source> <translation>Mostrar Versione&s</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446" /> + <location filename="../UI/UserInterface.py" line="2438" /> <source>Display version information</source> <translation>Mostrar información de versiones</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2448" /> + <location filename="../UI/UserInterface.py" line="2440" /> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Mostrar Versiones</b><p>Muestra información de versiones.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2458" /> - <location filename="../UI/UserInterface.py" line="2456" /> - <source>Check for Updates</source> - <translation>Buscar actualizaciones</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2457" /> - <source>Check for &Updates...</source> - <translation>Buscar act&ualizaciones...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2459" /> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric.</p></source> - <translation><b>Buscar actualizaciones...</b><p>Busca actualizaciones de eric en internet.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2467" /> - <source>Show downloadable versions</source> - <translation>Mostrar versiones descargables</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2468" /> - <source>Show &downloadable versions...</source> - <translation>Mostrar versiones &descargables...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2471" /> - <source>Show the versions available for download</source> - <translation>Mostrar las versiones disponibles para descarga</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2472" /> - <source><b>Show downloadable versions...</b><p>Shows the eric versions available for download from the internet.</p></source> - <translation><b>Mostrar versiones descargables...</b><p>Muestra las versiones de eric disponibles para descarga de internet.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2485" /> - <location filename="../UI/UserInterface.py" line="2482" /> + <location filename="../UI/UserInterface.py" line="2451" /> + <location filename="../UI/UserInterface.py" line="2448" /> <source>Show Error Log</source> <translation>Mostrar Registro de Errores</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2483" /> + <location filename="../UI/UserInterface.py" line="2449" /> <source>Show Error &Log...</source> <translation>Mostrar &Registro de Errores...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2452" /> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation><b>Mostrar registro de errores...</b><p>Abre un diálogo mostrando el registro más reciente de errores.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2460" /> + <source>Show Install Info</source> + <translation>Mostrar Información de Instalación</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2461" /> + <source>Show Install &Info...</source> + <translation>Mostrar &Información de Instalación...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2463" /> + <source>Show Installation Information</source> + <translation>Mostrar Información de Instalación</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2465" /> + <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> + <translation><b>Mostrar información de instalación...</b><p>Abre un diálogo que muestra información sobre el proceso de instalación.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4083" /> + <location filename="../UI/UserInterface.py" line="2474" /> + <source>Report Bug</source> + <translation>Enviar informe de bugs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2475" /> + <source>Report &Bug...</source> + <translation>Enviar informe de &bugs...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2477" /> + <source>Report a bug</source> + <translation>Enviar informe de bugs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2478" /> + <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <translation><b>Enviar informe de Bugs...</b><p>Abre un diálogo para enviar un informe de un error (bug).</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2486" /> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation><b>Mostrar registro de errores...</b><p>Abre un diálogo mostrando el registro más reciente de errores.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2494" /> - <source>Show Install Info</source> - <translation>Mostrar Información de Instalación</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2495" /> - <source>Show Install &Info...</source> - <translation>Mostrar &Información de Instalación...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2497" /> - <source>Show Installation Information</source> - <translation>Mostrar Información de Instalación</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2499" /> - <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> - <translation><b>Mostrar información de instalación...</b><p>Abre un diálogo que muestra información sobre el proceso de instalación.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4120" /> - <location filename="../UI/UserInterface.py" line="2508" /> - <source>Report Bug</source> - <translation>Enviar informe de bugs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2509" /> - <source>Report &Bug...</source> - <translation>Enviar informe de &bugs...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2511" /> - <source>Report a bug</source> - <translation>Enviar informe de bugs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512" /> - <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> - <translation><b>Enviar informe de Bugs...</b><p>Abre un diálogo para enviar un informe de un error (bug).</p></translation> + <source>Request Feature</source> + <translation>Solicitar nueva característica</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2487" /> + <source>Request &Feature...</source> + <translation>Solicitar nueva &característica...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2489" /> + <source>Send a feature request</source> + <translation>Enviar una solicitud de nueva característica</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2491" /> + <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> + <translation><b>Solicitar nueva Característica...</b><p>Abre un diálogo para enviar una solicitud de nueva característica.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606" /> + <location filename="../UI/UserInterface.py" line="3583" /> + <location filename="../UI/UserInterface.py" line="2501" /> + <source>Unittest</source> + <translation>Test Unitario</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2503" /> + <source>&Unittest...</source> + <translation>Te&st Unitario...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2505" /> + <source>Start unittest dialog</source> + <translation>Ejecutar diálogo de tests unitarios</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506" /> + <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <translation><b>Tests unitarios</b><p>Lleva a cabo tests unitarios. Este diálogo proporciona la capacidad de seleccionar y ejecutar una suite de tests unitarios.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2515" /> + <source>Unittest Restart</source> + <translation>Ejecutar de nuevo Test Unitario</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2517" /> + <source>&Restart Unittest...</source> + <translation>Ejecuta&r de nuevo Test Unitario...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2519" /> + <source>Restart last unittest</source> + <translation>Ejecutar de nuevo el último test unitario</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2520" /> - <source>Request Feature</source> - <translation>Solicitar nueva característica</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2521" /> - <source>Request &Feature...</source> - <translation>Solicitar nueva &característica...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2523" /> - <source>Send a feature request</source> - <translation>Enviar una solicitud de nueva característica</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2525" /> - <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> - <translation><b>Solicitar nueva Característica...</b><p>Abre un diálogo para enviar una solicitud de nueva característica.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3643" /> - <location filename="../UI/UserInterface.py" line="3620" /> + <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> + <translation><b>Ejecutar de nuevo Test Unitario</b><p>Vuelve a ejecutar el último test unitario que se ha ejecutado.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2529" /> + <source>Unittest Rerun Failed</source> + <translation>Re-ejecución de Test Unitatio Fallida</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2531" /> + <source>Rerun Failed Tests...</source> + <translation>Re-ejecutar Tests Fallidos...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2533" /> + <source>Rerun failed tests of the last run</source> + <translation>Re-ejecutar tests fallidos de la última ejecución</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2535" /> - <source>Unittest</source> - <translation>Test Unitario</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2537" /> - <source>&Unittest...</source> - <translation>Te&st Unitario...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2539" /> - <source>Start unittest dialog</source> - <translation>Ejecutar diálogo de tests unitarios</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2540" /> - <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> - <translation><b>Tests unitarios</b><p>Lleva a cabo tests unitarios. Este diálogo proporciona la capacidad de seleccionar y ejecutar una suite de tests unitarios.</p></translation> + <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> + <translation><b>Re-ejecución Tests Fallidos</b><p>Re-ejecutar todos los tests que fallaron durante la última ejecución de test unitario.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2545" /> + <source>Unittest Script</source> + <translation>Test Unitario de Script</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2547" /> + <source>Unittest &Script...</source> + <translation>Test Unitario de &Script...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2549" /> - <source>Unittest Restart</source> - <translation>Ejecutar de nuevo Test Unitario</translation> + <source>Run unittest with current script</source> + <translation>Ejecutar test unitario con el script actual</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2551" /> - <source>&Restart Unittest...</source> - <translation>Ejecuta&r de nuevo Test Unitario...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2553" /> - <source>Restart last unittest</source> - <translation>Ejecutar de nuevo el último test unitario</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2554" /> - <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> - <translation><b>Ejecutar de nuevo Test Unitario</b><p>Vuelve a ejecutar el último test unitario que se ha ejecutado.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2563" /> - <source>Unittest Rerun Failed</source> - <translation>Re-ejecución de Test Unitatio Fallida</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2565" /> - <source>Rerun Failed Tests...</source> - <translation>Re-ejecutar Tests Fallidos...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2567" /> - <source>Rerun failed tests of the last run</source> - <translation>Re-ejecutar tests fallidos de la última ejecución</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2569" /> - <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> - <translation><b>Re-ejecución Tests Fallidos</b><p>Re-ejecutar todos los tests que fallaron durante la última ejecución de test unitario.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2579" /> - <source>Unittest Script</source> - <translation>Test Unitario de Script</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2581" /> - <source>Unittest &Script...</source> - <translation>Test Unitario de &Script...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2583" /> - <source>Run unittest with current script</source> - <translation>Ejecutar test unitario con el script actual</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2585" /> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Test Unitario de Script</b><p>Ejecuta un test unitario con el script actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2594" /> + <location filename="../UI/UserInterface.py" line="2560" /> <source>Unittest Project</source> <translation>Test Unitario de Proyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596" /> + <location filename="../UI/UserInterface.py" line="2562" /> <source>Unittest &Project...</source> <translation>Test Unitario de &Proyecto...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2598" /> + <location filename="../UI/UserInterface.py" line="2564" /> <source>Run unittest with current project</source> <translation>Ejecutar test unitario con el proyecto actual</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600" /> + <location filename="../UI/UserInterface.py" line="2566" /> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Test Unitario del Proyecto</b>Ejecuta un test unitario con el proyecto actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2621" /> + <location filename="../UI/UserInterface.py" line="2587" /> <source>Qt-Designer</source> <translation>Qt Designer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2623" /> + <location filename="../UI/UserInterface.py" line="2589" /> <source>Qt-&Designer...</source> <translation>Qt-&Designer...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2625" /> + <location filename="../UI/UserInterface.py" line="2591" /> <source>Start Qt-Designer</source> <translation>Iniciar Qt-Designer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2626" /> + <location filename="../UI/UserInterface.py" line="2592" /> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation><b>Qt-Designer</b><p>Ejecutar Qt-Designer.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2613" /> + <source>Qt-Linguist</source> + <translation>Qt-Linguist</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2615" /> + <source>Qt-&Linguist...</source> + <translation>Qt-&Linguist...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2617" /> + <source>Start Qt-Linguist</source> + <translation>Iniciar Qt Linguist</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2618" /> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation><b>Qt-Linguist</b><p>Iniciar Qt-Linguist.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2628" /> + <source>UI Previewer</source> + <translation>Previsualizador de UI</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2630" /> + <source>&UI Previewer...</source> + <translation>Previsualizador de &UI...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2632" /> + <source>Start the UI Previewer</source> + <translation>Ejecutar el Previsualizador de UI</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2633" /> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation><b>Previsualizador de UI</b><p>Ejecuta el Previsualizador de UI.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2641" /> + <source>Translations Previewer</source> + <translation>Previsualizador de Traducciones</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2643" /> + <source>&Translations Previewer...</source> + <translation>Previsualizador de &Traducciones...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2645" /> + <source>Start the Translations Previewer</source> + <translation>Ejecutar el Previsualizador de traducciones</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2647" /> - <source>Qt-Linguist</source> - <translation>Qt-Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2649" /> - <source>Qt-&Linguist...</source> - <translation>Qt-&Linguist...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2651" /> - <source>Start Qt-Linguist</source> - <translation>Iniciar Qt Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2652" /> - <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> - <translation><b>Qt-Linguist</b><p>Iniciar Qt-Linguist.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2662" /> - <source>UI Previewer</source> - <translation>Previsualizador de UI</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2664" /> - <source>&UI Previewer...</source> - <translation>Previsualizador de &UI...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2666" /> - <source>Start the UI Previewer</source> - <translation>Ejecutar el Previsualizador de UI</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2667" /> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation><b>Previsualizador de UI</b><p>Ejecuta el Previsualizador de UI.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2675" /> - <source>Translations Previewer</source> - <translation>Previsualizador de Traducciones</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2677" /> - <source>&Translations Previewer...</source> - <translation>Previsualizador de &Traducciones...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2679" /> - <source>Start the Translations Previewer</source> - <translation>Ejecutar el Previsualizador de traducciones</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2681" /> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Previsualizador de traducciones<b><p>Ejecuta el Previsualizador de traducciones.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2689" /> + <location filename="../UI/UserInterface.py" line="2655" /> <source>Compare Files</source> <translation>Comparar Archivos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691" /> + <location filename="../UI/UserInterface.py" line="2657" /> <source>&Compare Files...</source> <translation>&Comparar Archivos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2706" /> - <location filename="../UI/UserInterface.py" line="2693" /> + <location filename="../UI/UserInterface.py" line="2672" /> + <location filename="../UI/UserInterface.py" line="2659" /> <source>Compare two files</source> <translation>Comparar dos archivos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2694" /> + <location filename="../UI/UserInterface.py" line="2660" /> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Comparar Archivos</b><p>Abre un diálogo para comparar dos archivos.</b></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2702" /> + <location filename="../UI/UserInterface.py" line="2668" /> <source>Compare Files side by side</source> <translation>Comparar Archivos uno al lado de otro</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2704" /> + <location filename="../UI/UserInterface.py" line="2670" /> <source>Compare &Files side by side...</source> <translation>Comparar &Archivos uno al lado de otro...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2707" /> + <location filename="../UI/UserInterface.py" line="2673" /> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Comparar Archivos uno al lado de otro</b><p>Abre un diálogo para comparar dos archivos y mostrar los resultados en paralelo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2716" /> + <location filename="../UI/UserInterface.py" line="2682" /> <source>SQL Browser</source> <translation>Navegador SQL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2718" /> + <location filename="../UI/UserInterface.py" line="2684" /> <source>SQL &Browser...</source> <translation>&Navegador SQL...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2720" /> + <location filename="../UI/UserInterface.py" line="2686" /> <source>Browse a SQL database</source> <translation>Navegar una base de datos SQL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2721" /> + <location filename="../UI/UserInterface.py" line="2687" /> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>Navegador SQL</b><p>Navegar una base de datos SQL.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2733" /> - <location filename="../UI/UserInterface.py" line="2729" /> + <location filename="../UI/UserInterface.py" line="2699" /> + <location filename="../UI/UserInterface.py" line="2695" /> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2731" /> + <location filename="../UI/UserInterface.py" line="2697" /> <source>Mini &Editor...</source> <translation>Mini &Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2734" /> + <location filename="../UI/UserInterface.py" line="2700" /> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Editor</b><p>Abre un diálogo con un editor simple.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2742" /> + <location filename="../UI/UserInterface.py" line="2708" /> <source>Hex Editor</source> <translation>Editor Hexadecimal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2744" /> + <location filename="../UI/UserInterface.py" line="2710" /> <source>&Hex Editor...</source> <translation>Editor &Hexadecimal...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2746" /> + <location filename="../UI/UserInterface.py" line="2712" /> <source>Start the eric Hex Editor</source> <translation>Iniciar el Editor Hexadecimal de eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2748" /> + <location filename="../UI/UserInterface.py" line="2714" /> <source><b>Hex Editor</b><p>Starts the eric Hex Editor for viewing or editing binary files.</p></source> <translation><b>Editor Hexadecimal</b><p>Inicia el Editor Hexadecimal de eric para visionado o edición de archivos binarios.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2723" /> + <source>eric Web Browser</source> + <translation>Navegador Web de eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2725" /> + <source>eric &Web Browser...</source> + <translation>Navegador &Web de eric...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2727" /> + <source>Start the eric Web Browser</source> + <translation>Iniciar el Navegador Web de eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2729" /> + <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> + <translation><b>Navegador Web de eric</b><p>Navegar por Internet con el Navegador Web de eric.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2737" /> + <source>Icon Editor</source> + <translation>Editor de Iconos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2739" /> + <source>&Icon Editor...</source> + <translation>Editor de &Iconos...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2741" /> + <source>Start the eric Icon Editor</source> + <translation>Iniciar el Editor de Iconos de eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2743" /> + <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> + <translation><b>Editor de Iconos</b><p>Inicia el Editor de Iconos de eric para editar iconos sencillos.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2751" /> + <source>Snapshot</source> + <translation>Captura de Pantalla</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2753" /> + <source>&Snapshot...</source> + <translation>Captura de &Pantalla...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2755" /> + <source>Take snapshots of a screen region</source> + <translation>Tomar capturas de una región de la pantalla</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757" /> - <source>eric Web Browser</source> - <translation>Navegador Web de eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2759" /> - <source>eric &Web Browser...</source> - <translation>Navegador &Web de eric...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2761" /> - <source>Start the eric Web Browser</source> - <translation>Iniciar el Navegador Web de eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2763" /> - <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> - <translation><b>Navegador Web de eric</b><p>Navegar por Internet con el Navegador Web de eric.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2771" /> - <source>Icon Editor</source> - <translation>Editor de Iconos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2773" /> - <source>&Icon Editor...</source> - <translation>Editor de &Iconos...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2775" /> - <source>Start the eric Icon Editor</source> - <translation>Iniciar el Editor de Iconos de eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2777" /> - <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> - <translation><b>Editor de Iconos</b><p>Inicia el Editor de Iconos de eric para editar iconos sencillos.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2785" /> - <source>Snapshot</source> - <translation>Captura de Pantalla</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2787" /> - <source>&Snapshot...</source> - <translation>Captura de &Pantalla...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2789" /> - <source>Take snapshots of a screen region</source> - <translation>Tomar capturas de una región de la pantalla</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2791" /> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation><b>Captura de Pantalla</b><p>Abre un diálogo para tomar capturas de pantalla de una región de la pantalla.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2766" /> + <source>Preferences</source> + <translation>Preferencias</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768" /> + <source>&Preferences...</source> + <translation>&Preferencias...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2770" /> + <source>Set the prefered configuration</source> + <translation>Establecer la configuración preferida</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2772" /> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation><b>Preferencias</b><p>Establecezca los elementos de configuración de la aplicación con sus valores preferidos.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782" /> + <source>Export Preferences</source> + <translation>Exportar Preferencias</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2784" /> + <source>E&xport Preferences...</source> + <translation>E&xportar Preferencias...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2786" /> + <source>Export the current configuration</source> + <translation>Exportar la configuración actual</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2788" /> + <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <translation><b>Exportar Preferencias</b><p>Exportar la configuración actual a un archivo.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2796" /> + <source>Import Preferences</source> + <translation>Importar Preferencias</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2798" /> + <source>I&mport Preferences...</source> + <translation>I&mportar Preferencias...</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2800" /> - <source>Preferences</source> - <translation>Preferencias</translation> + <source>Import a previously exported configuration</source> + <translation>Importar una configuración previamente exportada</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2802" /> - <source>&Preferences...</source> - <translation>&Preferencias...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2804" /> - <source>Set the prefered configuration</source> - <translation>Establecer la configuración preferida</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2806" /> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> - <translation><b>Preferencias</b><p>Establecezca los elementos de configuración de la aplicación con sus valores preferidos.</p></translation> + <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> + <translation><b>Importar Preferencias</b><p>Importar una configuración previamente exportada.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2810" /> + <source>Export Theme</source> + <translation>Exportar Tema</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2812" /> + <source>Export Theme...</source> + <translation>Exportar Tema...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2814" /> + <source>Export the current theme</source> + <translation>Exportar el tema actual</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2816" /> - <source>Export Preferences</source> - <translation>Exportar Preferencias</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2818" /> - <source>E&xport Preferences...</source> - <translation>E&xportar Preferencias...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2820" /> - <source>Export the current configuration</source> - <translation>Exportar la configuración actual</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2822" /> - <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> - <translation><b>Exportar Preferencias</b><p>Exportar la configuración actual a un archivo.</p></translation> + <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> + <translation><b>Exportar Tema</b><p>Exportar el tema actual a un archivo.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2824" /> + <source>Import Theme</source> + <translation>Importar Tema</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2826" /> + <source>Import Theme...</source> + <translation>Importar Tema...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2828" /> + <source>Import a previously exported theme</source> + <translation>Importr un tema previamente exportado</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2830" /> - <source>Import Preferences</source> - <translation>Importar Preferencias</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2832" /> - <source>I&mport Preferences...</source> - <translation>I&mportar Preferencias...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2834" /> - <source>Import a previously exported configuration</source> - <translation>Importar una configuración previamente exportada</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2836" /> - <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> - <translation><b>Importar Preferencias</b><p>Importar una configuración previamente exportada.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2844" /> - <source>Export Theme</source> - <translation>Exportar Tema</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2846" /> - <source>Export Theme...</source> - <translation>Exportar Tema...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2848" /> - <source>Export the current theme</source> - <translation>Exportar el tema actual</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2850" /> - <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> - <translation><b>Exportar Tema</b><p>Exportar el tema actual a un archivo.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2858" /> - <source>Import Theme</source> - <translation>Importar Tema</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2860" /> - <source>Import Theme...</source> - <translation>Importar Tema...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2862" /> - <source>Import a previously exported theme</source> - <translation>Importr un tema previamente exportado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2864" /> <source><b>Import Theme</b><p>Import a previously exported theme.</p></source> <translation><b>Importar Tema</b><p>Importar un tema previamente exportado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2872" /> + <location filename="../UI/UserInterface.py" line="2838" /> <source>Reload APIs</source> <translation>Recargar APIs</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2839" /> + <source>Reload &APIs</source> + <translation>Recargar &APIs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2841" /> + <source>Reload the API information</source> + <translation>Recargar la información de API</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2843" /> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation><b>Recargar APIs</b><p>Recarga la información de API.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2855" /> + <location filename="../UI/UserInterface.py" line="2851" /> + <source>Show external tools</source> + <translation>Mostrar herramientas externas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2853" /> + <source>Show external &tools</source> + <translation>Mostrar herramien&tas externas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857" /> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <translation><b>Mostrar herramientas externas</b><p>Abre un diálogo para mostrar la ruta y versiones de todas las herramientas externas que utiliza eric.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2867" /> + <source>View Profiles</source> + <translation>Perfiles de Vista</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2869" /> + <source>&View Profiles...</source> + <translation>Perfiles de &Vista...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2871" /> + <source>Configure view profiles</source> + <translation>Configurar perfiles de vista</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2873" /> - <source>Reload &APIs</source> - <translation>Recargar &APIs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2875" /> - <source>Reload the API information</source> - <translation>Recargar la información de API</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2877" /> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> - <translation><b>Recargar APIs</b><p>Recarga la información de API.</p></translation> + <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <translation><b>Perfiles de Vista</b><p>Configure los perfiles de vista. Con este diálogo puede establecer la visibilidad de las diversas ventanas para los perfiles de vista predeterminados.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2884" /> + <source>Toolbars</source> + <translation>Barras de Herramientas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2886" /> + <source>Tool&bars...</source> + <translation>&Barras de Herramientas...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2888" /> + <source>Configure toolbars</source> + <translation>Configurar Barras de Herramientas</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2889" /> - <location filename="../UI/UserInterface.py" line="2885" /> - <source>Show external tools</source> - <translation>Mostrar herramientas externas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887" /> - <source>Show external &tools</source> - <translation>Mostrar herramien&tas externas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2891" /> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> - <translation><b>Mostrar herramientas externas</b><p>Abre un diálogo para mostrar la ruta y versiones de todas las herramientas externas que utiliza eric.</p></translation> + <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> + <translation><b>Barras de Herramientas</b><p>Configure las barras de herramientas. Con este diálogo puede cambiar las accines mostradas en las diversas barras de herramientas, y definir sus propias barras de herramientas.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2899" /> + <source>Keyboard Shortcuts</source> + <translation>Atajos de Teclado</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2901" /> - <source>View Profiles</source> - <translation>Perfiles de Vista</translation> + <source>Keyboard &Shortcuts...</source> + <translation>Atajo&s de Teclado...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2903" /> - <source>&View Profiles...</source> - <translation>Perfiles de &Vista...</translation> + <source>Set the keyboard shortcuts</source> + <translation>Establecer los atajos de teclado</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2905" /> - <source>Configure view profiles</source> - <translation>Configurar perfiles de vista</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2907" /> - <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> - <translation><b>Perfiles de Vista</b><p>Configure los perfiles de vista. Con este diálogo puede establecer la visibilidad de las diversas ventanas para los perfiles de vista predeterminados.</p></translation> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation><b>Atajos de Teclado</b><p>Establezca los atajos de teclado para la aplicación con sus valores preferidos.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756" /> + <location filename="../UI/UserInterface.py" line="6738" /> + <location filename="../UI/UserInterface.py" line="2914" /> + <source>Export Keyboard Shortcuts</source> + <translation>Exportar Atajos de Teclado</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2916" /> + <source>&Export Keyboard Shortcuts...</source> + <translation>&Exportar Atajos de Teclado...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2918" /> - <source>Toolbars</source> - <translation>Barras de Herramientas</translation> + <source>Export the keyboard shortcuts</source> + <translation>Exportar los atajos de teclado</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2920" /> - <source>Tool&bars...</source> - <translation>&Barras de Herramientas...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2922" /> - <source>Configure toolbars</source> - <translation>Configurar Barras de Herramientas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2923" /> - <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> - <translation><b>Barras de Herramientas</b><p>Configure las barras de herramientas. Con este diálogo puede cambiar las accines mostradas en las diversas barras de herramientas, y definir sus propias barras de herramientas.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2933" /> - <source>Keyboard Shortcuts</source> - <translation>Atajos de Teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2935" /> - <source>Keyboard &Shortcuts...</source> - <translation>Atajo&s de Teclado...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2937" /> - <source>Set the keyboard shortcuts</source> - <translation>Establecer los atajos de teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2939" /> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation><b>Atajos de Teclado</b><p>Establezca los atajos de teclado para la aplicación con sus valores preferidos.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6698" /> - <location filename="../UI/UserInterface.py" line="6680" /> - <location filename="../UI/UserInterface.py" line="2948" /> - <source>Export Keyboard Shortcuts</source> - <translation>Exportar Atajos de Teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2950" /> - <source>&Export Keyboard Shortcuts...</source> - <translation>&Exportar Atajos de Teclado...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2952" /> - <source>Export the keyboard shortcuts</source> - <translation>Exportar los atajos de teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2954" /> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Exportar Atajos de Teclado</b><p>Exporte los atajos de teclado de la aplicación.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6715" /> - <location filename="../UI/UserInterface.py" line="2962" /> + <location filename="../UI/UserInterface.py" line="6773" /> + <location filename="../UI/UserInterface.py" line="2928" /> <source>Import Keyboard Shortcuts</source> <translation>Importar Atajos de Teclado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2964" /> + <location filename="../UI/UserInterface.py" line="2930" /> <source>&Import Keyboard Shortcuts...</source> <translation>&Importar Atajos de Teclado...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2966" /> + <location filename="../UI/UserInterface.py" line="2932" /> <source>Import the keyboard shortcuts</source> <translation>Importar los atajos de teclado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2968" /> + <location filename="../UI/UserInterface.py" line="2934" /> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Importar Atajos de Teclado</b><p>Importe los atajos de teclado de la aplicación.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2977" /> + <location filename="../UI/UserInterface.py" line="2943" /> <source>Manage SSL Certificates</source> <translation>Gestionar Certificados SSL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2979" /> + <location filename="../UI/UserInterface.py" line="2945" /> <source>Manage SSL Certificates...</source> <translation>Gestionar Certificados SSL...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2947" /> + <source>Manage the saved SSL certificates</source> + <translation>Gestionar los certificados SSL guardados</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2949" /> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation><b>Gestionar Certificados SSL...</b><p>Abre un diálogo para gestionar los certificados SSL guardados.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2959" /> + <source>Edit Message Filters</source> + <translation>Editar Filtros de Mensajes</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2961" /> + <source>Edit Message Filters...</source> + <translation>Editar Filtros de Mensajes...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2963" /> + <source>Edit the message filters used to suppress unwanted messages</source> + <translation>Editar los filtros de mensajes utilizados para suprimir mensajes no deseados</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2965" /> + <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> + <translation><b>Editar Filtros de Mensajes</b><p>Abre un diálogo para editar los filtros de mensajes utilizados para suprimir mensajes no deseados y que no se muestren en la ventana de error.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2981" /> - <source>Manage the saved SSL certificates</source> - <translation>Gestionar los certificados SSL guardados</translation> + <location filename="../UI/UserInterface.py" line="2978" /> + <location filename="../UI/UserInterface.py" line="2976" /> + <source>Clear private data</source> + <translation>Limpiar Datos Privados</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2983" /> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation><b>Gestionar Certificados SSL...</b><p>Abre un diálogo para gestionar los certificados SSL guardados.</p></translation> - </message> - <message> + <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> + <translation><b>Limpiar datos privados</b><p>Limpia los datos privados como las listas de archivos recientes, proyectos o multiproyectos.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2994" /> <location filename="../UI/UserInterface.py" line="2993" /> - <source>Edit Message Filters</source> - <translation>Editar Filtros de Mensajes</translation> + <source>Activate current editor</source> + <translation>Activar editor actual</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2995" /> - <source>Edit Message Filters...</source> - <translation>Editar Filtros de Mensajes...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2997" /> - <source>Edit the message filters used to suppress unwanted messages</source> - <translation>Editar los filtros de mensajes utilizados para suprimir mensajes no deseados</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2999" /> - <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> - <translation><b>Editar Filtros de Mensajes</b><p>Abre un diálogo para editar los filtros de mensajes utilizados para suprimir mensajes no deseados y que no se muestren en la ventana de error.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3015" /> - <location filename="../UI/UserInterface.py" line="3012" /> - <location filename="../UI/UserInterface.py" line="3010" /> - <source>Clear private data</source> - <translation>Limpiar Datos Privados</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3017" /> - <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> - <translation><b>Limpiar datos privados</b><p>Limpia los datos privados como las listas de archivos recientes, proyectos o multiproyectos.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3028" /> - <location filename="../UI/UserInterface.py" line="3027" /> - <source>Activate current editor</source> - <translation>Activar editor actual</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3029" /> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3038" /> - <location filename="../UI/UserInterface.py" line="3037" /> + <location filename="../UI/UserInterface.py" line="3004" /> + <location filename="../UI/UserInterface.py" line="3003" /> <source>Show next</source> <translation>Mostrar siguente</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3039" /> + <location filename="../UI/UserInterface.py" line="3005" /> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="3013" /> + <location filename="../UI/UserInterface.py" line="3012" /> + <source>Show previous</source> + <translation>Mostrar anterior</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3014" /> + <source>Shift+Ctrl+Alt+Tab</source> + <translation>Shift+Ctrl+Alt+Tab</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3022" /> + <location filename="../UI/UserInterface.py" line="3021" /> + <source>Switch between tabs</source> + <translation>Alternar entre pestañas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3023" /> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3030" /> + <source>Plugin Infos</source> + <translation>Información sobre Plugins</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3032" /> + <source>&Plugin Infos...</source> + <translation>Información sobre &Plugins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3033" /> + <source>Show Plugin Infos</source> + <translation>Mostrar Información sobre Plugins</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3034" /> + <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="3047" /> - <location filename="../UI/UserInterface.py" line="3046" /> - <source>Show previous</source> - <translation>Mostrar anterior</translation> + <location filename="../UI/UserInterface.py" line="3043" /> + <source>Install Plugins</source> + <translation>Instalar Plugins</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3045" /> + <source>&Install Plugins...</source> + <translation>&Instalar Plugins...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3048" /> - <source>Shift+Ctrl+Alt+Tab</source> - <translation>Shift+Ctrl+Alt+Tab</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3056" /> - <location filename="../UI/UserInterface.py" line="3055" /> - <source>Switch between tabs</source> - <translation>Alternar entre pestañas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3057" /> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3064" /> - <source>Plugin Infos</source> - <translation>Información sobre Plugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3066" /> - <source>&Plugin Infos...</source> - <translation>Información sobre &Plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3067" /> - <source>Show Plugin Infos</source> - <translation>Mostrar Información sobre Plugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3068" /> - <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="3081" /> - <location filename="../UI/UserInterface.py" line="3077" /> - <source>Install Plugins</source> - <translation>Instalar Plugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3079" /> - <source>&Install Plugins...</source> - <translation>&Instalar Plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3082" /> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Instalar Plugins...</b><p>Abre un diálogo para instalar o actualizar extensiones (plugins).</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3094" /> - <location filename="../UI/UserInterface.py" line="3090" /> + <location filename="../UI/UserInterface.py" line="3060" /> + <location filename="../UI/UserInterface.py" line="3056" /> <source>Uninstall Plugin</source> <translation>Desinstalar Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3092" /> + <location filename="../UI/UserInterface.py" line="3058" /> <source>&Uninstall Plugin...</source> <translation>Desinstalar Pl&ugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3095" /> + <location filename="../UI/UserInterface.py" line="3061" /> <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="3105" /> + <location filename="../UI/UserInterface.py" line="3071" /> <source>Plugin &Repository...</source> <translation>&Repositorio de Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3107" /> + <location filename="../UI/UserInterface.py" line="3073" /> <source>Show Plugins available for download</source> <translation>Mostrar Plugins disponibles para descarga</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3109" /> + <location filename="../UI/UserInterface.py" line="3075" /> <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="3101" /> + <location filename="../UI/UserInterface.py" line="3100" /> + <source>Qt5 Documentation</source> + <translation>Documentación de Qt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3103" /> + <source>Open Qt5 Documentation</source> + <translation>Abrir Documentación de Qt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3104" /> + <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation><b>Documentación de Qt5</b><p>Muestra la Documentación de Qt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3116" /> + <location filename="../UI/UserInterface.py" line="3115" /> + <source>Qt6 Documentation</source> + <translation>Documentación de Qt6</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3118" /> + <source>Open Qt6 Documentation</source> + <translation>Abrir Documentación de Qt6</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3119" /> + <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation><b>Documentación de Qt6</b><p>Muestra la Documentación de Qt6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3131" /> + <location filename="../UI/UserInterface.py" line="3130" /> + <source>PyQt5 Documentation</source> + <translation>Documentación de PyQt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3133" /> + <source>Open PyQt5 Documentation</source> + <translation>Abrir Documentación de PyQt5</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="3135" /> - <location filename="../UI/UserInterface.py" line="3134" /> - <source>Qt5 Documentation</source> - <translation>Documentación de Qt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3137" /> - <source>Open Qt5 Documentation</source> - <translation>Abrir Documentación de Qt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3138" /> - <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation><b>Documentación de Qt5</b><p>Muestra la Documentación de Qt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> + <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation><b>Documentación de PyQt5</b><p>Muestra la Documentación de PyQt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3148" /> + <location filename="../UI/UserInterface.py" line="3147" /> + <source>PyQt6 Documentation</source> + <translation>Documentación de PyQt6</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3150" /> - <location filename="../UI/UserInterface.py" line="3149" /> - <source>Qt6 Documentation</source> - <translation>Documentación de Qt6</translation> + <source>Open PyQt6 Documentation</source> + <translation>Abrir Documentación de PyQt6</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3152" /> - <source>Open Qt6 Documentation</source> - <translation>Abrir Documentación de Qt6</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3153" /> - <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation><b>Documentación de Qt6</b><p>Muestra la Documentación de Qt6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3165" /> - <location filename="../UI/UserInterface.py" line="3164" /> - <source>PyQt5 Documentation</source> - <translation>Documentación de PyQt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3167" /> - <source>Open PyQt5 Documentation</source> - <translation>Abrir Documentación de PyQt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3169" /> - <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation><b>Documentación de PyQt5</b><p>Muestra la Documentación de PyQt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3182" /> - <location filename="../UI/UserInterface.py" line="3181" /> - <source>PyQt6 Documentation</source> - <translation>Documentación de PyQt6</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3184" /> - <source>Open PyQt6 Documentation</source> - <translation>Abrir Documentación de PyQt6</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3186" /> <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentación de PyQt6</b><p>Muestra la Documentación de PyQt6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3204" /> - <location filename="../UI/UserInterface.py" line="3203" /> + <location filename="../UI/UserInterface.py" line="3170" /> + <location filename="../UI/UserInterface.py" line="3169" /> <source>Python 3 Documentation</source> <translation>Documentación de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3206" /> + <location filename="../UI/UserInterface.py" line="3172" /> <source>Open Python 3 Documentation</source> <translation>Abrir Documentación de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3208" /> + <location filename="../UI/UserInterface.py" line="3174" /> <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="3226" /> - <location filename="../UI/UserInterface.py" line="3225" /> + <location filename="../UI/UserInterface.py" line="3192" /> + <location filename="../UI/UserInterface.py" line="3191" /> <source>eric API Documentation</source> <translation>Documentación de API de Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3228" /> + <location filename="../UI/UserInterface.py" line="3194" /> <source>Open eric API Documentation</source> <translation>Abrir Documentación de API de Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3230" /> + <location filename="../UI/UserInterface.py" line="3196" /> <source><b>eric API Documentation</b><p>Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.</p></source> <translation><b>Documentación de API de Eric</b><p>Mostrar 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 eric.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3247" /> - <location filename="../UI/UserInterface.py" line="3246" /> + <location filename="../UI/UserInterface.py" line="3213" /> + <location filename="../UI/UserInterface.py" line="3212" /> <source>PySide2 Documentation</source> <translation>Documentación de PySide2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3249" /> + <location filename="../UI/UserInterface.py" line="3215" /> <source>Open PySide2 Documentation</source> <translation>Abrir Documentación de PySide2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3251" /> + <location filename="../UI/UserInterface.py" line="3217" /> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentación de PySide2</b><p>Muestra la Documentación de PySide2. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3267" /> - <location filename="../UI/UserInterface.py" line="3266" /> + <location filename="../UI/UserInterface.py" line="3233" /> + <location filename="../UI/UserInterface.py" line="3232" /> <source>PySide6 Documentation</source> <translation>Documentación de PySide6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3269" /> + <location filename="../UI/UserInterface.py" line="3235" /> <source>Open PySide6 Documentation</source> <translation>Abrir Documentación de PySide6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3271" /> + <location filename="../UI/UserInterface.py" line="3237" /> <source><b>PySide6 Documentation</b><p>Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentación de PySide6</b><p>Muestra la Documentación de PySide6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3373" /> + <location filename="../UI/UserInterface.py" line="3339" /> <source>E&xtras</source> <translation>E&xtras</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3383" /> + <location filename="../UI/UserInterface.py" line="3349" /> <source>Wi&zards</source> <translation>Asis&tentes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3402" /> + <location filename="../UI/UserInterface.py" line="3368" /> <source>P&lugins</source> <translation>P&lugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3412" /> + <location filename="../UI/UserInterface.py" line="3378" /> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3421" /> + <location filename="../UI/UserInterface.py" line="3387" /> <source>&Unittest</source> <translation>Te&st Unitario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3438" /> + <location filename="../UI/UserInterface.py" line="3404" /> <source>Select Tool Group</source> <translation>Seleccionar Grupo de Herramientas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3449" /> + <location filename="../UI/UserInterface.py" line="3415" /> <source>Se&ttings</source> <translation>Con&figuración</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482" /> + <location filename="../UI/UserInterface.py" line="3448" /> <source>&Window</source> <translation>Ven&tana</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3491" /> + <location filename="../UI/UserInterface.py" line="3457" /> <source>&Windows</source> <translation>&Ventanas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3496" /> + <location filename="../UI/UserInterface.py" line="3462" /> <source>Central Park</source> <translation>Central Park</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3500" /> + <location filename="../UI/UserInterface.py" line="3466" /> <source>Left Side</source> <translation>Lado Izquierdo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3517" /> + <location filename="../UI/UserInterface.py" line="3483" /> <source>Right Side</source> <translation>Lado Derecho</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3541" /> + <location filename="../UI/UserInterface.py" line="3507" /> <source>Bottom Side</source> <translation>Lado Inferior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3549" /> + <location filename="../UI/UserInterface.py" line="3515" /> <source>Plug-ins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3556" /> + <location filename="../UI/UserInterface.py" line="3522" /> <source>&Toolbars</source> <translation>&Barra de Herramientas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3569" /> + <location filename="../UI/UserInterface.py" line="3535" /> <source>&Help</source> <translation>Ay&uda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3642" /> - <location filename="../UI/UserInterface.py" line="3619" /> + <location filename="../UI/UserInterface.py" line="3605" /> + <location filename="../UI/UserInterface.py" line="3582" /> <source>Tools</source> <translation>Herramientas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3644" /> - <location filename="../UI/UserInterface.py" line="3623" /> + <location filename="../UI/UserInterface.py" line="3607" /> + <location filename="../UI/UserInterface.py" line="3586" /> <source>Settings</source> <translation>Ajustes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5541" /> - <location filename="../UI/UserInterface.py" line="3645" /> - <location filename="../UI/UserInterface.py" line="3624" /> + <location filename="../UI/UserInterface.py" line="5600" /> + <location filename="../UI/UserInterface.py" line="3608" /> + <location filename="../UI/UserInterface.py" line="3587" /> <source>Help</source> <translation>Ayuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3646" /> - <location filename="../UI/UserInterface.py" line="3625" /> + <location filename="../UI/UserInterface.py" line="3609" /> + <location filename="../UI/UserInterface.py" line="3588" /> <source>Profiles</source> <translation>Perfiles</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3647" /> - <location filename="../UI/UserInterface.py" line="3626" /> + <location filename="../UI/UserInterface.py" line="3610" /> + <location filename="../UI/UserInterface.py" line="3589" /> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811" /> + <location filename="../UI/UserInterface.py" line="3774" /> <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="3818" /> + <location filename="../UI/UserInterface.py" line="3781" /> <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="3825" /> + <location filename="../UI/UserInterface.py" line="3788" /> <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="3832" /> + <location filename="../UI/UserInterface.py" line="3795" /> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Esta zona de la barra de estado muestra una indicación de las propiedades de escritura de los archivos del editor.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3839" /> + <location filename="../UI/UserInterface.py" line="3802" /> <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="3846" /> + <location filename="../UI/UserInterface.py" line="3809" /> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Esta zona de la barra de estado muestra la posición del cursor en el editor actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3857" /> + <location filename="../UI/UserInterface.py" line="3820" /> <source><p>This part of the status bar allows zooming the current editor or shell.</p></source> <translation><p>Esta zona de la barra de estado permite hacer zoom sobre el editor actual o la shell.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3922" /> - <location filename="../UI/UserInterface.py" line="3882" /> + <location filename="../UI/UserInterface.py" line="3885" /> + <location filename="../UI/UserInterface.py" line="3845" /> <source>External Tools/{0}</source> <translation>Herramientas Externas/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4028" /> + <location filename="../UI/UserInterface.py" line="3991" /> <source><h2>Version Numbers</h2><table></source> <translation><h2>Números de Versiones</h2><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4082" /> + <location filename="../UI/UserInterface.py" line="4045" /> <source>Desktop</source> <translation>Escritorio</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4085" /> + <location filename="../UI/UserInterface.py" line="4048" /> <source>Session Type</source> <translation>Tipo de Sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7778" /> - <location filename="../UI/UserInterface.py" line="4087" /> + <location filename="../UI/UserInterface.py" line="4050" /> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4121" /> + <location filename="../UI/UserInterface.py" line="4084" /> <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="4432" /> + <location filename="../UI/UserInterface.py" line="4395" /> <source>Restart application</source> <translation>Reiniciar aplicación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4433" /> + <location filename="../UI/UserInterface.py" line="4396" /> <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="4420" /> + <source>Upgrade PyQt</source> + <translation>Actualizar PyQt</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4421" /> + <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation>eric necesita cerrarse para actualizar PyQt. Se reiniciará tan pronto como el proceso de actualización haya terminado.Esto puede llevar algún tiempo. + +¿Desearía hacer la actualización ahora?</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="4467" /> + <location filename="../UI/UserInterface.py" line="4443" /> + <source>Upgrade Eric</source> + <translation>Actualizar Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4444" /> + <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation>eric necesita cerrarse para su actualización. Se reiniciará tan pronto como el proceso de actualización haya terminado.Esto puede llevar algún tiempo. + +¿Desearía hacer la actualización ahora?</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4468" /> + <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time. + + Shall the upgrade be done now?</source> + <translation>eric necesita cerrarse para actualizar eric y PyQt. Se reiniciará tan pronto como el proceso de actualización haya terminado.Esto puede llevar algún tiempo. + +¿Desearía hacer la actualización ahora?</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4526" /> <source>&Builtin Tools</source> <translation>Herramientas de serie (&builtin)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4484" /> + <location filename="../UI/UserInterface.py" line="4543" /> <source>&Plugin Tools</source> <translation>Herramientas de Extensión (&Plugin)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4487" /> + <location filename="../UI/UserInterface.py" line="4546" /> <source>&User Tools</source> <translation>Herramientas de &Usuario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4513" /> + <location filename="../UI/UserInterface.py" line="4572" /> <source>Configure Tool Groups ...</source> <translation>Configurar Grupos de Herramientas ...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517" /> + <location filename="../UI/UserInterface.py" line="4576" /> <source>Configure current Tool Group ...</source> <translation>Configurar Grupo de Herramientas actual ...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4558" /> - <location filename="../UI/UserInterface.py" line="4538" /> + <location filename="../UI/UserInterface.py" line="4617" /> + <location filename="../UI/UserInterface.py" line="4597" /> <source>No User Tools Configured</source> <translation>No se han Configurado Herramientas de Usuario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4632" /> + <location filename="../UI/UserInterface.py" line="4691" /> <source>&Show all</source> <translation>&Ver todo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4634" /> + <location filename="../UI/UserInterface.py" line="4693" /> <source>&Hide all</source> <translation>&Ocultar todo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5669" /> - <location filename="../UI/UserInterface.py" line="5659" /> - <location filename="../UI/UserInterface.py" line="5612" /> - <location filename="../UI/UserInterface.py" line="5603" /> - <location filename="../UI/UserInterface.py" line="5442" /> - <location filename="../UI/UserInterface.py" line="5433" /> - <location filename="../UI/UserInterface.py" line="5372" /> - <location filename="../UI/UserInterface.py" line="5363" /> + <location filename="../UI/UserInterface.py" line="5728" /> + <location filename="../UI/UserInterface.py" line="5718" /> + <location filename="../UI/UserInterface.py" line="5671" /> + <location filename="../UI/UserInterface.py" line="5662" /> + <location filename="../UI/UserInterface.py" line="5501" /> + <location filename="../UI/UserInterface.py" line="5492" /> + <location filename="../UI/UserInterface.py" line="5431" /> + <location filename="../UI/UserInterface.py" line="5422" /> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5670" /> - <location filename="../UI/UserInterface.py" line="5660" /> - <location filename="../UI/UserInterface.py" line="5613" /> - <location filename="../UI/UserInterface.py" line="5604" /> - <location filename="../UI/UserInterface.py" line="5443" /> - <location filename="../UI/UserInterface.py" line="5434" /> - <location filename="../UI/UserInterface.py" line="5373" /> - <location filename="../UI/UserInterface.py" line="5364" /> + <location filename="../UI/UserInterface.py" line="5729" /> + <location filename="../UI/UserInterface.py" line="5719" /> + <location filename="../UI/UserInterface.py" line="5672" /> + <location filename="../UI/UserInterface.py" line="5663" /> + <location filename="../UI/UserInterface.py" line="5502" /> + <location filename="../UI/UserInterface.py" line="5493" /> + <location filename="../UI/UserInterface.py" line="5432" /> + <location filename="../UI/UserInterface.py" line="5423" /> <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="5877" /> - <location filename="../UI/UserInterface.py" line="5790" /> - <location filename="../UI/UserInterface.py" line="5705" /> - <location filename="../UI/UserInterface.py" line="5682" /> - <location filename="../UI/UserInterface.py" line="5625" /> - <location filename="../UI/UserInterface.py" line="5575" /> - <location filename="../UI/UserInterface.py" line="5555" /> - <location filename="../UI/UserInterface.py" line="5517" /> - <location filename="../UI/UserInterface.py" line="5508" /> - <location filename="../UI/UserInterface.py" line="5473" /> - <location filename="../UI/UserInterface.py" line="5464" /> - <location filename="../UI/UserInterface.py" line="5403" /> - <location filename="../UI/UserInterface.py" line="5394" /> + <location filename="../UI/UserInterface.py" line="5936" /> + <location filename="../UI/UserInterface.py" line="5849" /> + <location filename="../UI/UserInterface.py" line="5764" /> + <location filename="../UI/UserInterface.py" line="5741" /> + <location filename="../UI/UserInterface.py" line="5684" /> + <location filename="../UI/UserInterface.py" line="5634" /> + <location filename="../UI/UserInterface.py" line="5614" /> + <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5567" /> + <location filename="../UI/UserInterface.py" line="5532" /> + <location filename="../UI/UserInterface.py" line="5523" /> + <location filename="../UI/UserInterface.py" line="5462" /> + <location filename="../UI/UserInterface.py" line="5453" /> <source>Process Generation Error</source> <translation>Error de Generación de Proceso</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5395" /> + <location filename="../UI/UserInterface.py" line="5454" /> <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="5404" /> + <location filename="../UI/UserInterface.py" line="5463" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>No se ha podido encontrar el ejecutable de Qt-Designer.<br>Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5465" /> + <location filename="../UI/UserInterface.py" line="5524" /> <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="5474" /> + <location filename="../UI/UserInterface.py" line="5533" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>No se ha podido encontrar el ejecutable de Qt-Linguist.<br>Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509" /> + <location filename="../UI/UserInterface.py" line="5568" /> <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="5518" /> + <location filename="../UI/UserInterface.py" line="5577" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>No se ha podido encontrar el ejecutable de Qt-Assistant.<br>Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5542" /> + <location filename="../UI/UserInterface.py" line="5601" /> <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="5556" /> + <location filename="../UI/UserInterface.py" line="5615" /> <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="5576" /> + <location filename="../UI/UserInterface.py" line="5635" /> <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="5626" /> + <location filename="../UI/UserInterface.py" line="5685" /> <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="5683" /> + <location filename="../UI/UserInterface.py" line="5742" /> <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="5706" /> + <location filename="../UI/UserInterface.py" line="5765" /> <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="5791" /> + <location filename="../UI/UserInterface.py" line="5850" /> <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="5822" /> - <location filename="../UI/UserInterface.py" line="5813" /> + <location filename="../UI/UserInterface.py" line="5881" /> + <location filename="../UI/UserInterface.py" line="5872" /> <source>External Tools</source> <translation>Herramientas Externas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5814" /> + <location filename="../UI/UserInterface.py" line="5873" /> <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="5823" /> + <location filename="../UI/UserInterface.py" line="5882" /> <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="5859" /> + <location filename="../UI/UserInterface.py" line="5918" /> <source>Starting process '{0} {1}'. </source> <translation>Comenzando proceso '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5878" /> + <location filename="../UI/UserInterface.py" line="5937" /> <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="5953" /> + <location filename="../UI/UserInterface.py" line="6012" /> <source>Process '{0}' has exited. </source> <translation>El proceso '{0}' ha finalizado. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6225" /> - <location filename="../UI/UserInterface.py" line="6167" /> - <location filename="../UI/UserInterface.py" line="6126" /> - <location filename="../UI/UserInterface.py" line="6058" /> - <location filename="../UI/UserInterface.py" line="5996" /> + <location filename="../UI/UserInterface.py" line="6284" /> + <location filename="../UI/UserInterface.py" line="6226" /> + <location filename="../UI/UserInterface.py" line="6185" /> + <location filename="../UI/UserInterface.py" line="6117" /> + <location filename="../UI/UserInterface.py" line="6055" /> <source>Documentation Missing</source> <translation>Falta documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6226" /> - <location filename="../UI/UserInterface.py" line="6168" /> - <location filename="../UI/UserInterface.py" line="6127" /> - <location filename="../UI/UserInterface.py" line="6059" /> - <location filename="../UI/UserInterface.py" line="5997" /> + <location filename="../UI/UserInterface.py" line="6285" /> + <location filename="../UI/UserInterface.py" line="6227" /> + <location filename="../UI/UserInterface.py" line="6186" /> + <location filename="../UI/UserInterface.py" line="6118" /> + <location filename="../UI/UserInterface.py" line="6056" /> <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="6208" /> - <location filename="../UI/UserInterface.py" line="6099" /> + <location filename="../UI/UserInterface.py" line="6267" /> + <location filename="../UI/UserInterface.py" line="6158" /> <source>Documentation</source> <translation>Documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6100" /> + <location filename="../UI/UserInterface.py" line="6159" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PyQt{0} no ha sido configurado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6209" /> + <location filename="../UI/UserInterface.py" line="6268" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PySide{0} no ha sido configurado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387" /> - <location filename="../UI/UserInterface.py" line="6323" /> + <location filename="../UI/UserInterface.py" line="6446" /> + <location filename="../UI/UserInterface.py" line="6382" /> <source>Start Web Browser</source> <translation>Iniciar Navegador Web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6324" /> + <location filename="../UI/UserInterface.py" line="6383" /> <source>The eric web browser could not be started.</source> <translation>El navegador web de eric no se ha podido iniciar.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6388" /> + <location filename="../UI/UserInterface.py" line="6447" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation><p>El navegador web de eric no se ha iniciado.</p><p>Razón: {0}</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6430" /> + <location filename="../UI/UserInterface.py" line="6489" /> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6431" /> + <location filename="../UI/UserInterface.py" line="6490" /> <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="6682" /> + <location filename="../UI/UserInterface.py" line="6740" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation>Archivo de Atajos de Teclado (*.ekj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6699" /> + <location filename="../UI/UserInterface.py" line="6757" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation><p>El archivo de atajos de teclado <b>{0}</b> ya existe. ¿Sobreescribirlo?</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6717" /> + <location filename="../UI/UserInterface.py" line="6775" /> <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source> <translation>Archivo de Atajos de Teclado (*.ekj);;Archivo XML de Atajos de Teclado (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6909" /> + <location filename="../UI/UserInterface.py" line="6967" /> <source>Read Tasks</source> <translation>Leer tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6910" /> + <location filename="../UI/UserInterface.py" line="6968" /> <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="6957" /> + <location filename="../UI/UserInterface.py" line="7015" /> <source>Read Session</source> <translation>Cargar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6985" /> - <location filename="../UI/UserInterface.py" line="6958" /> + <location filename="../UI/UserInterface.py" line="7043" /> + <location filename="../UI/UserInterface.py" line="7016" /> <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="6984" /> + <location filename="../UI/UserInterface.py" line="7042" /> <source>Read session</source> <translation>Cargar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7000" /> + <location filename="../UI/UserInterface.py" line="7058" /> <source>Save Session</source> <translation>Guardar Sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7002" /> + <location filename="../UI/UserInterface.py" line="7060" /> <source>eric Session Files (*.esj)</source> <translation>Archivos de Sesión de eric (*.esj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="7082" /> <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source> <translation>Archivos de Sesión de eric (*.esj);;Archivos XML de sesión de eric (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7072" /> + <location filename="../UI/UserInterface.py" line="7130" /> <source>Crash Session found!</source> <translation>¡Se ha hallado una sesión perdida!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7073" /> + <location filename="../UI/UserInterface.py" line="7131" /> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Se ha encontrado un archivo de sesió para una sesión perdida. ¿Desea restaurar esta sesión?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7374" /> + <location filename="../UI/UserInterface.py" line="7432" /> <source>Drop Error</source> <translation>Error de volcado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7375" /> + <location filename="../UI/UserInterface.py" line="7433" /> <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="7552" /> - <source>&Cancel</source> - <translation>&Cancelar</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7554" /> - <source>%v/%m</source> - <translation>%v/%m</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7556" /> - <source>Version Check</source> - <translation>Verificación de Versión</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7561" /> - <source>Trying host {0}</source> - <translation>Probando host {0}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7630" /> - <location filename="../UI/UserInterface.py" line="7623" /> - <location filename="../UI/UserInterface.py" line="7574" /> - <source>Error getting versions information</source> - <translation>Error al obtener información de versiones</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7575" /> - <source>The versions information cannot not be downloaded because the Internet is <b>not reachable</b>. Please try again later.</source> - <translation>La información de versiones no se puede descargar porque la Internet está <b>no alcanzable</b>. Por favor, intentar más tarde.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7624" /> - <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="7597" /> + <source>Upgrade available</source> + <translation>Actualización disponible</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7598" /> + <source>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</source> + <translation>Una versión más reciente del package <b>eric ide</b> está disponible en <a href="{0}/eric-ide/">PyPI</a>.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7642" /> <location filename="../UI/UserInterface.py" line="7631" /> - <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> - <message> - <location filename="../UI/UserInterface.py" line="7722" /> - <location filename="../UI/UserInterface.py" line="7688" /> - <source>Update available</source> - <translation>Actualizaciones disponibles</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7723" /> - <location filename="../UI/UserInterface.py" line="7689" /> - <source>The update to <b>{0}</b> of eric is available at <b>{1}</b>. Would you like to get it?</source> - <translation>La actualización para <b>{0}</b> de eric está disponible en <b>{1}</b>. ¿Le gustaría obtenerla?</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7710" /> - <location filename="../UI/UserInterface.py" line="7700" /> - <source>Update Check</source> - <translation>Comprobación Actualización</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7701" /> - <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source> - <translation>Ésta es una snapshot release the eric. Una release estable más reciente podría estar disponible.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7711" /> - <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> - <translation>Ha instalado eric directamente a partir del código fuente. No es posible comprobar la disponibilidad de una actuación.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7734" /> - <source>eric is up to date</source> - <translation>eric está actualizado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7735" /> - <source>You are using the latest version of eric</source> - <translation>Está utilizando la última versión de eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7741" /> - <source>Error during updates check</source> - <translation>Error durante la verificación de actualización</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7742" /> - <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="7763" /> - <source><h3>Available versions</h3><table></source> - <translation><h3>Versiones disponibles</h3><table></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7829" /> - <location filename="../UI/UserInterface.py" line="7818" /> <source>First time usage</source> <translation>Usado por primera vez</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7819" /> + <location filename="../UI/UserInterface.py" line="7632" /> <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source> <translation>eric7 no está configurado todavía pero se ha encontrado configuración para eric6. ¿Importar esta configuración?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7830" /> + <location filename="../UI/UserInterface.py" line="7643" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation>eric todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7850" /> + <location filename="../UI/UserInterface.py" line="7663" /> <source>Select Workspace Directory</source> <translation>Seleccionar Directorio para el Espacio de Trabajo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8027" /> + <location filename="../UI/UserInterface.py" line="7840" /> <source>Unsaved Data Detected</source> <translation>Detectados Datos sin Guardar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8028" /> + <location filename="../UI/UserInterface.py" line="7841" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation>Algunos editores contienen datos sin guardar. ¿Desea guardarlos?</translation> </message> @@ -84072,6 +84277,49 @@ </message> </context> <context> + <name>VersionsDialog</name> + <message> + <location filename="../UI/VersionsDialog.py" line="49" /> + <source>Check for Upgrades...</source> + <translation>Buscar Actualizaciones...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="92" /> + <source>No upgrades available.</source> + <translation>No hay actualizaciones disponibles.</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="96" /> + <source>Upgrade eric7...</source> + <translation>Actualizar eric7...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="100" /> + <source><p>An upgrade of <b>eric7</b> is available.</p></source> + <translation><p>Hay disponible una actualización para <b>eric7</b>.</p></translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="105" /> + <source>Upgrade PyQt6...</source> + <translation>Actualizar PyQt6...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="109" /> + <source><p>An upgrade of <b>PyQt6</b> is available.</p></source> + <translation><p>Hay disponible una actualización para <b>PyQt6</b>.</p></translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="114" /> + <source>Upgrade Both...</source> + <translation>Actualizar Ambos...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="128" /> + <source>Check for Upgrades</source> + <translation>Buscar Actualizaciones</translation> + </message> + </context> + <context> <name>ViewManager</name> <message> <location filename="../HexEdit/HexEditMainWindow.py" line="518" /> @@ -88783,7 +89031,7 @@ <context> <name>VirtualenvInterpreterSelectionDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="45" /> + <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="47" /> <source>Python Interpreter</source> <translation>Intérprete de Python</translation> </message> @@ -88811,54 +89059,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="232" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="243" /> <source>Add Virtual Environment</source> <translation>Añadir Entorno Virtual</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="233" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="244" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation>Un entorno virtual llamado <b>{0}</b> ya existe. ¿Desea reemplazarlo?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="295" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="306" /> <source>Change Virtual Environment</source> <translation>Cambiar Entorno Virtual</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="346" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="296" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="307" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation>Un entorno virtual llamado <b>{0}</b> no existe. ¡Abortando!</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="345" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> <source>Rename Virtual Environment</source> <translation>Renombrar Entorno Virtual</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="433" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="369" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="444" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="380" /> <source>{0} - {1}</source> <translation>{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="377" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> <source>Delete Virtual Environments</source> <translation>Borrar Entornos Virtuales</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="378" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Do you really want to delete these virtual environments?</source> <translation>¿Desea borrar estos entornos virtuales?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="441" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="452" /> <source>Remove Virtual Environments</source> <translation>Eliminar Entornos Virtuales</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="453" /> <source>Do you really want to remove these virtual environments?</source> <translation>¿Desea eliminar estos entornos virtuales?</translation> </message> @@ -89787,22 +90035,22 @@ <context> <name>WebBrowserPage</name> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="195" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="189" /> <source>Suspicuous URL detected</source> <translation>Detectada URL sospechosa</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="196" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="190" /> <source><p>The URL <b>{0}</b> was found in the Safe Browsing database.</p>{1}</source> <translation><p>La URL <b>{0}</b> se ha encontrado en la base de datos de Navegación Segura.</p>{1}</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="663" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="657" /> <source>SSL Info</source> <translation>SSL Info</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="664" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="658" /> <source>This site does not contain SSL information.</source> <translation>Este site no contiene información SSL.</translation> </message> @@ -91141,12 +91389,12 @@ <translation>Guardar Página Web</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2282" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2287" /> <source>Quota Request</source> <translation>Solicitud de Cuota</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2288" /> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation><p> ¿Permitir al sitio web <b>{0}</b> utilizar <b>{1}</b> de almacenamiento persistente?</p></translation> </message>
--- a/eric7/i18n/eric7_fr.ts Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/i18n/eric7_fr.ts Sat Apr 02 11:23:11 2022 +0200 @@ -1534,6 +1534,26 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader Delay:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Enter the time the upgrader process should wait for eric to exit</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source> s</source> + <translation type="unfinished"> s</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> <source>Reporting</source> <translation>Rapports</translation> </message> @@ -48733,7 +48753,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="473" /> + <location filename="../Preferences/__init__.py" line="471" /> <location filename="../QScintilla/Lexers/__init__.py" line="415" /> <source>Python Files (*.py *.py3)</source> <translation>Fichiers Python (*.py *.py3)</translation> @@ -48986,7 +49006,7 @@ <translation>Tous fichiers (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="475" /> + <location filename="../Preferences/__init__.py" line="473" /> <location filename="../QScintilla/Lexers/__init__.py" line="585" /> <source>Python3 Files (*.py)</source> <translation>Fichiers Python3 (*.py)</translation> @@ -55075,123 +55095,121 @@ <context> <name>Pip</name> <message> - <location filename="../PipInterface/Pip.py" line="109" /> + <location filename="../PipInterface/Pip.py" line="123" /> <source>python exited with an error ({0}).</source> <translation>python a quitté avec l'erreur ({0}).</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="116" /> + <location filename="../PipInterface/Pip.py" line="130" /> <source>python did not finish within 30 seconds.</source> <translation>python n'a pas terminé dans les 30 secondes.</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="119" /> + <location filename="../PipInterface/Pip.py" line="133" /> <source>python could not be started.</source> <translation>python n'a pas pu être démarré.</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="179" /> + <location filename="../PipInterface/Pip.py" line="193" /> <source><project></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="208" /> + <location filename="../PipInterface/Pip.py" line="222" /> <source>Interpreter for Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="209" /> + <location filename="../PipInterface/Pip.py" line="223" /> <source>No interpreter configured for the selected virtual environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="244" /> + <location filename="../PipInterface/Pip.py" line="258" /> <source>Install PIP</source> <translation>Installer PIP</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="286" /> + <location filename="../PipInterface/Pip.py" line="300" /> <source>Repair PIP</source> <translation>Réparer PIP</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="359" /> - <location filename="../PipInterface/Pip.py" line="311" /> + <location filename="../PipInterface/Pip.py" line="383" /> <source>Upgrade Packages</source> <translation>Mise à jour des packages</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="312" /> - <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> - <translation>Vous êtes sur le point de mettre à jour les packages PyQt. Ceci risque de ne pas fonctionner sur l'instance courante de Python ({0}). Voulez-vous continuer ?</translation> - </message> - <message> - <location filename="../PipInterface/Pip.py" line="399" /> + <location filename="../PipInterface/Pip.py" line="423" /> <source>Install Packages</source> <translation>Installer des packages</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="428" /> + <location filename="../PipInterface/Pip.py" line="452" /> <source>Install Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="491" /> - <location filename="../PipInterface/Pip.py" line="460" /> - <location filename="../PipInterface/Pip.py" line="451" /> + <location filename="../PipInterface/Pip.py" line="515" /> + <location filename="../PipInterface/Pip.py" line="484" /> + <location filename="../PipInterface/Pip.py" line="475" /> <source>Uninstall Packages</source> <translation>Désinstaller les packages</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="492" /> - <location filename="../PipInterface/Pip.py" line="452" /> + <location filename="../PipInterface/Pip.py" line="516" /> + <location filename="../PipInterface/Pip.py" line="476" /> <source>Do you really want to uninstall these packages?</source> <translation>Voulez-vous vraiment désinstaller ces packages ?</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="503" /> + <location filename="../PipInterface/Pip.py" line="527" /> <source>Uninstall Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="721" /> + <location filename="../PipInterface/Pip.py" line="844" /> <source>Cache Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="746" /> - <location filename="../PipInterface/Pip.py" line="738" /> + <location filename="../PipInterface/Pip.py" line="869" /> + <location filename="../PipInterface/Pip.py" line="861" /> <source>List Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="739" /> + <location filename="../PipInterface/Pip.py" line="862" /> <source>Enter a file pattern (empty for all):</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="770" /> - <location filename="../PipInterface/Pip.py" line="764" /> + <location filename="../PipInterface/Pip.py" line="893" /> + <location filename="../PipInterface/Pip.py" line="887" /> <source>Remove Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="765" /> + <location filename="../PipInterface/Pip.py" line="888" /> <source>Enter a file pattern:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="793" /> - <location filename="../PipInterface/Pip.py" line="788" /> + <location filename="../PipInterface/Pip.py" line="916" /> + <location filename="../PipInterface/Pip.py" line="911" /> <source>Purge Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="789" /> + <location filename="../PipInterface/Pip.py" line="912" /> <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source> <translation type="unfinished" /> </message> <message> + <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> + <translation type="vanished">Vous êtes sur le point de mettre à jour les packages PyQt. Ceci risque de ne pas fonctionner sur l'instance courante de Python ({0}). Voulez-vous continuer ?</translation> + </message> + <message> <source>Configure</source> <translation type="vanished">Configuration</translation> </message> @@ -55314,18 +55332,18 @@ <location filename="../PipInterface/PipFreezeDialog.py" line="230" /> <location filename="../PipInterface/PipFreezeDialog.py" line="210" /> <location filename="../PipInterface/PipFreezeDialog.py" line="198" /> - <location filename="../PipInterface/PipFreezeDialog.py" line="118" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="122" /> <source>Generate Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="119" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="123" /> <source>The requirements were changed. Do you want to overwrite these changes?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="160" /> - <source>No output generated by 'pip freeze'.</source> + <location filename="../PipInterface/PipFreezeDialog.py" line="158" /> + <source>No package specifiers generated by 'pip freeze'.</source> <translation type="unfinished" /> </message> <message> @@ -55355,6 +55373,16 @@ </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>Select to show requirements for packages installed to the user-site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Requirements File:</source> <translation type="unfinished" /> </message> @@ -55415,6 +55443,65 @@ </message> </context> <context> + <name>PipLicensesDialog</name> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package Licenses</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Local packages only</source> + <translation type="unfinished">Packages locaux uniquement</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package</source> + <translation type="unfinished">Package</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Version</source> + <translation type="unfinished">Version</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>License</source> + <translation type="unfinished">Licence</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Count</source> + <translation type="unfinished">Nombre</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="61" /> + <source>Licenses of "{0}"</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="65" /> + <source>No environment specified.</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PipListDialog</name> <message> <source>Version</source> @@ -55710,11 +55797,17 @@ <name>PipPackagesWidget</name> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Toggle to show or hide the dependency tree view</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only locally-installed packages</source> <translation>Cocher pour montrer uniquement les packages installés localement</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Local packages only</source> <translation>Packages locaux uniquement</translation> </message> @@ -55735,11 +55828,23 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>User-Site only</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Perform vulnerability checks based on "Safety DB".</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Vulnerability Check</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Package</source> @@ -55747,13 +55852,19 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Installed Version</source> - <translation>Version installée</translation> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Installed</source> + <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Available Version</source> - <translation>Version disponible</translation> + <source>Available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Affected</source> + <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> @@ -55798,6 +55909,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Press to show details for the selected entry</source> <translation>Cliquer pour montrer les détails de l'entrée sélectionnée</translation> </message> @@ -55808,11 +55920,6 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Press to start the search</source> - <translation>Cliquer pour démarrer la recherche</translation> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Enter the search term for the package name</source> <translation>Entrer le terme de recherche pour le nom du package</translation> </message> @@ -55823,6 +55930,16 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to start the search</source> + <translation>Cliquer pour démarrer la recherche</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to search for more packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Version</source> <translation type="unfinished">Version</translation> </message> @@ -55847,104 +55964,150 @@ <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="169" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>View Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package requires other packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Requires</source> + <translation type="unfinished">Nécessitent</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package is required by others</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required By</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to refresh the dependency tree</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="185" /> <source>pip Menu</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="195" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="230" /> <source>Name:</source> <translation>Nom :</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="196" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="231" /> <source>Version:</source> <translation>Version :</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="197" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="232" /> <source>Location:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="198" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="233" /> <source>Requires:</source> <translation>Nécessite :</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="199" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="234" /> <source>Summary:</source> <translation>Bilan :</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="200" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="235" /> <source>Homepage:</source> <translation>Page d'accueil :</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="201" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="236" /> <source>Author:</source> <translation>Auteur :</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="202" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="237" /> <source>Author Email:</source> <translation>Courreil de l'auteur :</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="203" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="238" /> <source>License:</source> <translation>Licence :</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="204" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="239" /> <source>Metadata Version:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="205" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="240" /> <source>Installer:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="206" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="241" /> <source>Classifiers:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="207" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="242" /> <source>Entry Points:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="208" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="243" /> <source>Files:</source> <translation>Fichiers :</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="375" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="427" /> <source>Getting installed packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="390" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="443" /> <source>Getting outdated packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="975" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="812" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="790" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1141" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="972" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="961" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="930" /> <source>Search PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="791" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="931" /> <source><p>Received an error while searching for <b>{0}</b>.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../PipInterface/PipPackagesWidget.py" line="805" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="946" /> <source>%n package(s) found.</source> <translation> <numerusform>%n package trouvé.</numerusform> @@ -55952,117 +56115,166 @@ </translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="807" /> - <source>Showing first 20 packages found.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="815" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="813" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="950" /> + <source>Showing first {0} packages found.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="966" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="962" /> <source><p>There were no results for <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="976" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="973" /> + <source><p>There were no more results for <b>{0}</b>.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1142" /> <source><p>No package details info for <b>{0}</b> available.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="990" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1156" /> <source>Install Pip</source> <translation>Installer pip</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="993" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1159" /> <source>Install Pip to User-Site</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="996" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1162" /> <source>Repair Pip</source> <translation>Réparer Pip</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1116" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1000" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1299" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1166" /> <source>Install Packages</source> <translation>Installer des packages</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1003" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1169" /> <source>Install Local Package</source> <translation>Installer un package local</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1007" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1173" /> <source>Install Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1010" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1176" /> <source>Re-Install Selected Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1013" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1179" /> <source>Uninstall Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1016" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1182" /> <source>Generate Requirements...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1020" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1186" /> + <source>Show Licenses...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1190" /> + <source>Check Vulnerabilities</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1194" /> + <source>Update Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1198" /> <source>Show Cache Info...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1023" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1201" /> <source>Show Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1026" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1204" /> <source>Remove Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1029" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1207" /> <source>Purge Cache...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1034" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1212" /> <source>Edit User Configuration...</source> <translation>Éditer la configuration utilisateur...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1037" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1215" /> <source>Edit Environment Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1042" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1220" /> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1237" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1224" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1213" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1421" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1408" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1397" /> <source>Edit Configuration</source> <translation>Éditer la configuration</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1238" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1225" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1214" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1422" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1409" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1398" /> <source>No valid configuration path determined. Aborting</source> <translation>Pas de chemin de configuration déterminé. Annulation</translation> </message> <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1576" /> + <source>{0} {1}</source> + <comment>package name, package version</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1598" /> + <source>Affected Version:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1601" /> + <source>Advisory:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1716" /> + <source>any</source> + <translation type="unfinished" /> + </message> + <message> + <source>Installed Version</source> + <translation type="vanished">Version installée</translation> + </message> + <message> + <source>Available Version</source> + <translation type="vanished">Version disponible</translation> + </message> + <message> <source><p>The package search did not return anything.</p></source> <translation type="vanished"><p>La recherche de package n'a rien retourné.</p></translation> </message> @@ -56091,6 +56303,11 @@ <translation type="unfinished" /> </message> <message> + <location filename="../Preferences/ConfigurationPages/PipPage.py" line="34" /> + <source><b>Note:</b> Leave empty to use the default Safety DB URL ({0}).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source><b>Configure pip</b></source> <translation><b>Configuration pip</b></translation> @@ -56107,6 +56324,36 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Vulnerability Checks</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Safety DB URL:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the base URL for the Safety DB mirror to be used</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Cache Validity:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source> hours</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source>Environment</source> <translation type="unfinished">Environment</translation> </message> @@ -56133,6 +56380,19 @@ </message> </context> <context> + <name>PipVulnerabilityChecker</name> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="219" /> + <source>Fetching Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="220" /> + <source><p>The vulnerability database <b>{0}</b> could not be loaded from <b>{1}</b>.</p><p>The vulnerability check is not available.</p></source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PixmapDiagram</name> <message> <location filename="../Graphics/PixmapDiagram.py" line="164" /> @@ -56542,32 +56802,32 @@ <translation>Le module ne comporte pas le(s) attribut(s) 'pluginType' et/ou 'pluginTypename'.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="445" /> + <location filename="../PluginManager/PluginManager.py" line="449" /> <source>Module failed to load. Error: {0}</source> <translation>Échec de chargement du module . Erreur {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="622" /> + <location filename="../PluginManager/PluginManager.py" line="626" /> <source>Incompatible plugin activation method.</source> <translation>Méthode d'activation du plugin incompatible.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1204" /> + <location filename="../PluginManager/PluginManager.py" line="1208" /> <source>Plugin Manager Error</source> <translation>Erreur du gestionnaire de plugins</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1205" /> + <location filename="../PluginManager/PluginManager.py" line="1209" /> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>Le répertoire de téléchargement de plugin<b>{0}</b> n'a pas pu être créé. Veuillez le reconfigurer.</p><p>Raison : {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1271" /> + <location filename="../PluginManager/PluginManager.py" line="1275" /> <source>Error downloading file</source> <translation>Erreur de téléchargement du fichier</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1272" /> + <location filename="../PluginManager/PluginManager.py" line="1276" /> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>Ne peut télécharger le fichier demandé depuis {0}.</p><p>Erreur : {1}</p></translation> </message> @@ -56728,6 +56988,21 @@ <source>Edit URL</source> <translation>Modifier l'URL</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Startup Behavior</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Select, to check for missing plugin dependencies at startup and install them</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Automatic dependencies installation</source> + <translation type="unfinished" /> + </message> </context> <context> <name>PluginRepositoryDialog</name> @@ -57416,18 +57691,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1654" /> + <location filename="../Preferences/__init__.py" line="1658" /> <source>Export Preferences</source> <translation>Export des préférences</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1682" /> - <location filename="../Preferences/__init__.py" line="1656" /> + <location filename="../Preferences/__init__.py" line="1686" /> + <location filename="../Preferences/__init__.py" line="1660" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>Fichier propriétés (*.ini);;Tous les fichiers (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> + <location filename="../Preferences/__init__.py" line="1684" /> <source>Import Preferences</source> <translation>Import des préférences</translation> </message> @@ -83723,7 +83998,17 @@ <translation><h3>Numéros de version</h3><table></translation> </message> <message> - <location filename="../Tools/TrayStarter.py" line="582" /> + <location filename="../Tools/TrayStarter.py" line="600" /> + <source>Desktop</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="603" /> + <source>Session Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="605" /> <source></table></source> <translation></table></translation> </message> @@ -85320,2635 +85605,2601 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="256" /> + <location filename="../UI/UserInterface.py" line="253" /> <source>Initializing Basic Services...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="297" /> + <location filename="../UI/UserInterface.py" line="294" /> <source>Initializing Plugin Manager...</source> <translation>Initialisation du gestionnaire de plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="304" /> + <location filename="../UI/UserInterface.py" line="301" /> <source>Generating Main User Interface...</source> <translation>Création de l'interface utilisateur...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="346" /> + <location filename="../UI/UserInterface.py" line="343" /> <source>Setting up connections...</source> <translation>Définition des connexions...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="593" /> + <location filename="../UI/UserInterface.py" line="590" /> <source>Initializing Tools...</source> <translation>Initialisation des outils...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="603" /> + <location filename="../UI/UserInterface.py" line="600" /> <source>Registering Objects...</source> <translation>Enregistrement des objets...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="644" /> + <location filename="../UI/UserInterface.py" line="636" /> <source>Initializing Actions...</source> <translation>Initialisation des actions...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="646" /> + <location filename="../UI/UserInterface.py" line="638" /> <source>Initializing Menus...</source> <translation>Initialisation des menus...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="648" /> + <location filename="../UI/UserInterface.py" line="640" /> <source>Initializing Toolbars...</source> <translation>Initialisation des barres d'outils...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="650" /> + <location filename="../UI/UserInterface.py" line="642" /> <source>Initializing Statusbar...</source> <translation>Initialisation de la barre d'état...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="678" /> + <location filename="../UI/UserInterface.py" line="670" /> <source>Initializing Single Application Server...</source> <translation>Initialisation du serveur d'application...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="676" /> + <source>Initializing Plugins...</source> + <translation>Initialisation en cours des plugins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="679" /> + <source>Activating Plugins...</source> + <translation>Activation des plugins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="681" /> + <source>Generating Plugins Toolbars...</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="684" /> - <source>Initializing Plugins...</source> - <translation>Initialisation en cours des plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="687" /> - <source>Activating Plugins...</source> - <translation>Activation des plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="689" /> - <source>Generating Plugins Toolbars...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="692" /> <source>Cleaning Plugins Download Area...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="703" /> + <location filename="../UI/UserInterface.py" line="695" /> <source>Restoring Toolbarmanager...</source> <translation>Restauration des barres d'outils...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="712" /> + <location filename="../UI/UserInterface.py" line="704" /> <source>Setting View Profile...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="725" /> + <location filename="../UI/UserInterface.py" line="717" /> <source>Reading Tasks...</source> <translation>Lecture en cours des tâches...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="730" /> + <location filename="../UI/UserInterface.py" line="722" /> <source>Reading Templates...</source> <translation>Lecture en cours des gabarits...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="735" /> + <location filename="../UI/UserInterface.py" line="727" /> <source>Starting Debugger...</source> <translation>Démarrage du débuggeur...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2041" /> - <location filename="../UI/UserInterface.py" line="1065" /> + <location filename="../UI/UserInterface.py" line="2033" /> + <location filename="../UI/UserInterface.py" line="1057" /> <source>Left Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2072" /> - <location filename="../UI/UserInterface.py" line="1073" /> + <location filename="../UI/UserInterface.py" line="2064" /> + <location filename="../UI/UserInterface.py" line="1065" /> <source>Horizontal Toolbox</source> <translation>Barre horizontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2056" /> - <location filename="../UI/UserInterface.py" line="1081" /> + <location filename="../UI/UserInterface.py" line="2048" /> + <location filename="../UI/UserInterface.py" line="1073" /> <source>Right Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1915" /> - <location filename="../UI/UserInterface.py" line="1237" /> - <location filename="../UI/UserInterface.py" line="1089" /> + <location filename="../UI/UserInterface.py" line="1907" /> + <location filename="../UI/UserInterface.py" line="1229" /> + <location filename="../UI/UserInterface.py" line="1081" /> <source>Multiproject-Viewer</source> <translation>Gestionnaire de multi-projets</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1898" /> - <location filename="../UI/UserInterface.py" line="1242" /> - <location filename="../UI/UserInterface.py" line="1093" /> + <location filename="../UI/UserInterface.py" line="1890" /> + <location filename="../UI/UserInterface.py" line="1234" /> + <location filename="../UI/UserInterface.py" line="1085" /> <source>Project-Viewer</source> <translation>Gestionnaire de projet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2326" /> - <location filename="../UI/UserInterface.py" line="2325" /> - <location filename="../UI/UserInterface.py" line="1247" /> - <location filename="../UI/UserInterface.py" line="1097" /> + <location filename="../UI/UserInterface.py" line="2318" /> + <location filename="../UI/UserInterface.py" line="2317" /> + <location filename="../UI/UserInterface.py" line="1239" /> + <location filename="../UI/UserInterface.py" line="1089" /> <source>Find/Replace In Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2344" /> - <location filename="../UI/UserInterface.py" line="2343" /> - <location filename="../UI/UserInterface.py" line="1252" /> - <location filename="../UI/UserInterface.py" line="1101" /> + <location filename="../UI/UserInterface.py" line="2336" /> + <location filename="../UI/UserInterface.py" line="2335" /> + <location filename="../UI/UserInterface.py" line="1244" /> + <location filename="../UI/UserInterface.py" line="1093" /> <source>Find File</source> <translation type="unfinished">Trouver un fichier</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1257" /> - <location filename="../UI/UserInterface.py" line="1105" /> + <location filename="../UI/UserInterface.py" line="1249" /> + <location filename="../UI/UserInterface.py" line="1097" /> <source>VCS Status</source> <translation type="unfinished">VCS Status</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2022" /> - <location filename="../UI/UserInterface.py" line="1263" /> - <location filename="../UI/UserInterface.py" line="1110" /> + <location filename="../UI/UserInterface.py" line="2014" /> + <location filename="../UI/UserInterface.py" line="1255" /> + <location filename="../UI/UserInterface.py" line="1102" /> <source>Template-Viewer</source> <translation>Gestionnaire de gabarits</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1968" /> - <location filename="../UI/UserInterface.py" line="1269" /> - <location filename="../UI/UserInterface.py" line="1115" /> + <location filename="../UI/UserInterface.py" line="1960" /> + <location filename="../UI/UserInterface.py" line="1261" /> + <location filename="../UI/UserInterface.py" line="1107" /> <source>File-Browser</source> <translation>Navigateur de fichiers</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1275" /> - <location filename="../UI/UserInterface.py" line="1120" /> + <location filename="../UI/UserInterface.py" line="1267" /> + <location filename="../UI/UserInterface.py" line="1112" /> <source>Symbols</source> <translation>Symboles</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1933" /> - <location filename="../UI/UserInterface.py" line="1295" /> - <location filename="../UI/UserInterface.py" line="1290" /> - <location filename="../UI/UserInterface.py" line="1128" /> + <location filename="../UI/UserInterface.py" line="1925" /> + <location filename="../UI/UserInterface.py" line="1287" /> + <location filename="../UI/UserInterface.py" line="1282" /> + <location filename="../UI/UserInterface.py" line="1120" /> <source>Debug-Viewer</source> <translation>Gestionnaire de débogage</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2215" /> - <location filename="../UI/UserInterface.py" line="2214" /> - <location filename="../UI/UserInterface.py" line="1301" /> - <location filename="../UI/UserInterface.py" line="1133" /> + <location filename="../UI/UserInterface.py" line="2207" /> + <location filename="../UI/UserInterface.py" line="2206" /> + <location filename="../UI/UserInterface.py" line="1293" /> + <location filename="../UI/UserInterface.py" line="1125" /> <source>Code Documentation Viewer</source> <translation type="unfinished">Visionneur de documentation du code</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380" /> - <location filename="../UI/UserInterface.py" line="2379" /> - <location filename="../UI/UserInterface.py" line="1307" /> - <location filename="../UI/UserInterface.py" line="1138" /> + <location filename="../UI/UserInterface.py" line="2372" /> + <location filename="../UI/UserInterface.py" line="2371" /> + <location filename="../UI/UserInterface.py" line="1299" /> + <location filename="../UI/UserInterface.py" line="1130" /> <source>Help Viewer</source> <translation type="unfinished">Visionneur d'aide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3103" /> - <location filename="../UI/UserInterface.py" line="2289" /> - <location filename="../UI/UserInterface.py" line="2288" /> - <location filename="../UI/UserInterface.py" line="1312" /> - <location filename="../UI/UserInterface.py" line="1142" /> + <location filename="../UI/UserInterface.py" line="3069" /> + <location filename="../UI/UserInterface.py" line="2281" /> + <location filename="../UI/UserInterface.py" line="2280" /> + <location filename="../UI/UserInterface.py" line="1304" /> + <location filename="../UI/UserInterface.py" line="1134" /> <source>Plugin Repository</source> <translation>Référentiel de plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2307" /> - <location filename="../UI/UserInterface.py" line="2306" /> - <location filename="../UI/UserInterface.py" line="1317" /> - <location filename="../UI/UserInterface.py" line="1146" /> + <location filename="../UI/UserInterface.py" line="2299" /> + <location filename="../UI/UserInterface.py" line="2298" /> + <location filename="../UI/UserInterface.py" line="1309" /> + <location filename="../UI/UserInterface.py" line="1138" /> <source>Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2235" /> - <location filename="../UI/UserInterface.py" line="2234" /> - <location filename="../UI/UserInterface.py" line="1322" /> - <location filename="../UI/UserInterface.py" line="1151" /> + <location filename="../UI/UserInterface.py" line="2227" /> + <location filename="../UI/UserInterface.py" line="2226" /> + <location filename="../UI/UserInterface.py" line="1314" /> + <location filename="../UI/UserInterface.py" line="1143" /> <source>PyPI</source> <translation>PyPI</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2253" /> - <location filename="../UI/UserInterface.py" line="2252" /> - <location filename="../UI/UserInterface.py" line="1327" /> - <location filename="../UI/UserInterface.py" line="1156" /> + <location filename="../UI/UserInterface.py" line="2245" /> + <location filename="../UI/UserInterface.py" line="2244" /> + <location filename="../UI/UserInterface.py" line="1319" /> + <location filename="../UI/UserInterface.py" line="1148" /> <source>Conda</source> <translation>Conda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332" /> - <location filename="../UI/UserInterface.py" line="1161" /> + <location filename="../UI/UserInterface.py" line="1324" /> + <location filename="../UI/UserInterface.py" line="1153" /> <source>Cooperation</source> <translation>Coopération</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2158" /> - <location filename="../UI/UserInterface.py" line="1337" /> - <location filename="../UI/UserInterface.py" line="1166" /> + <location filename="../UI/UserInterface.py" line="2150" /> + <location filename="../UI/UserInterface.py" line="1329" /> + <location filename="../UI/UserInterface.py" line="1158" /> <source>IRC</source> <translation>IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2271" /> - <location filename="../UI/UserInterface.py" line="2270" /> - <location filename="../UI/UserInterface.py" line="1343" /> - <location filename="../UI/UserInterface.py" line="1171" /> + <location filename="../UI/UserInterface.py" line="2263" /> + <location filename="../UI/UserInterface.py" line="2262" /> + <location filename="../UI/UserInterface.py" line="1335" /> + <location filename="../UI/UserInterface.py" line="1163" /> <source>MicroPython</source> <translation>MicroPython</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1951" /> - <location filename="../UI/UserInterface.py" line="1351" /> - <location filename="../UI/UserInterface.py" line="1179" /> + <location filename="../UI/UserInterface.py" line="1943" /> + <location filename="../UI/UserInterface.py" line="1343" /> + <location filename="../UI/UserInterface.py" line="1171" /> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003" /> - <location filename="../UI/UserInterface.py" line="1355" /> - <location filename="../UI/UserInterface.py" line="1183" /> + <location filename="../UI/UserInterface.py" line="1995" /> + <location filename="../UI/UserInterface.py" line="1347" /> + <location filename="../UI/UserInterface.py" line="1175" /> <source>Task-Viewer</source> <translation>Visualisueur de tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1985" /> - <location filename="../UI/UserInterface.py" line="1359" /> - <location filename="../UI/UserInterface.py" line="1187" /> + <location filename="../UI/UserInterface.py" line="1977" /> + <location filename="../UI/UserInterface.py" line="1351" /> + <location filename="../UI/UserInterface.py" line="1179" /> <source>Log-Viewer</source> <translation>Fenêtre de log</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1364" /> - <location filename="../UI/UserInterface.py" line="1192" /> + <location filename="../UI/UserInterface.py" line="1356" /> + <location filename="../UI/UserInterface.py" line="1184" /> <source>Numbers</source> <translation>Nombres</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752" /> + <location filename="../UI/UserInterface.py" line="1744" /> <source>{0} - Passive Mode</source> <translation>{0} - Mode passif</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1759" /> - <location filename="../UI/UserInterface.py" line="1755" /> + <location filename="../UI/UserInterface.py" line="1751" /> + <location filename="../UI/UserInterface.py" line="1747" /> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - Mode Passif</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1763" /> + <location filename="../UI/UserInterface.py" line="1755" /> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - Mode Passif</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1786" /> + <location filename="../UI/UserInterface.py" line="1778" /> <source>Quit</source> <translation>Quitter</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1788" /> + <location filename="../UI/UserInterface.py" line="1780" /> <source>&Quit</source> <translation>&Quitter</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1789" /> + <location filename="../UI/UserInterface.py" line="1781" /> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1791" /> + <location filename="../UI/UserInterface.py" line="1783" /> <source>Quit the IDE</source> <translation>Quitter l'IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1792" /> + <location filename="../UI/UserInterface.py" line="1784" /> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Quitter l'IDE</b><p>Cette commande fait quitter l'IDE. Toutes les modifications non-enregistrées devraient d'abord être enregistrées. Tous les programmes Python débogués seront stoppés et les préférences seront écrites sur le disque.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1805" /> - <location filename="../UI/UserInterface.py" line="1803" /> + <location filename="../UI/UserInterface.py" line="1797" /> + <location filename="../UI/UserInterface.py" line="1795" /> <source>Restart</source> <translation>Redémarrer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806" /> + <location filename="../UI/UserInterface.py" line="1798" /> <source>Ctrl+Shift+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Shift+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1808" /> + <location filename="../UI/UserInterface.py" line="1800" /> <source>Restart the IDE</source> <translation>Rédémarrer l'IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1809" /> + <location filename="../UI/UserInterface.py" line="1801" /> <source><b>Restart the IDE</b><p>This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1822" /> - <location filename="../UI/UserInterface.py" line="1819" /> + <location filename="../UI/UserInterface.py" line="1814" /> + <location filename="../UI/UserInterface.py" line="1811" /> <source>Save session</source> <translation>Enregistrer la session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1820" /> + <location filename="../UI/UserInterface.py" line="1812" /> <source>Save session...</source> <translation>Enregistrer session...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823" /> + <location filename="../UI/UserInterface.py" line="1815" /> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation><b>Enregistrer session...</b><p>Ceci enregistre la session sur le disque. Une fenêtre s'ouvre pour sélectionner le nom de fichier.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7022" /> - <location filename="../UI/UserInterface.py" line="1835" /> - <location filename="../UI/UserInterface.py" line="1832" /> + <location filename="../UI/UserInterface.py" line="7080" /> + <location filename="../UI/UserInterface.py" line="1827" /> + <location filename="../UI/UserInterface.py" line="1824" /> <source>Load session</source> <translation>Charger la session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1833" /> + <location filename="../UI/UserInterface.py" line="1825" /> <source>Load session...</source> <translation>Charger la session...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836" /> + <location filename="../UI/UserInterface.py" line="1828" /> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation><b>Charger session...</b><p>Ceci charge une session enregistrée sur le disque auparant. Une fenêtre s'ouvre pour sélectionner le fichier.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1845" /> + <location filename="../UI/UserInterface.py" line="1837" /> <source>New Window</source> <translation>Nouvelle fenêtre</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1847" /> + <location filename="../UI/UserInterface.py" line="1839" /> <source>New &Window</source> <translation>&Nouvelle fenêtre</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848" /> + <location filename="../UI/UserInterface.py" line="1840" /> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1850" /> + <location filename="../UI/UserInterface.py" line="1842" /> <source>Open a new eric instance</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1852" /> + <location filename="../UI/UserInterface.py" line="1844" /> <source><b>New Window</b><p>This opens a new instance of the eric IDE.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1866" /> - <location filename="../UI/UserInterface.py" line="1864" /> + <location filename="../UI/UserInterface.py" line="1858" /> + <location filename="../UI/UserInterface.py" line="1856" /> <source>Edit Profile</source> <translation>Profil d'Edition</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1869" /> + <location filename="../UI/UserInterface.py" line="1861" /> <source>Activate the edit view profile</source> <translation>Active la fenêtre d'édition des profils Edition/Débogage</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871" /> + <location filename="../UI/UserInterface.py" line="1863" /> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Edition des profils</b><p>Active la fenêtre d'édition des profils Edition/Débogage. On peut y configurer les différentes fenêtres devant apparaitre en mode Edition ou Débogage.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1883" /> - <location filename="../UI/UserInterface.py" line="1881" /> + <location filename="../UI/UserInterface.py" line="1875" /> + <location filename="../UI/UserInterface.py" line="1873" /> <source>Debug Profile</source> <translation>Profil Débogage</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1887" /> + <location filename="../UI/UserInterface.py" line="1879" /> <source>Activate the debug view profile</source> <translation>Active le profil Débogage</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1888" /> + <location filename="../UI/UserInterface.py" line="1880" /> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Profil Debogage</b><p>Active le profil Bébogage. La fenêtre affichée dans ce mode peut être configurée avec la fenêtre "Edition des profils"</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899" /> + <location filename="../UI/UserInterface.py" line="1891" /> <source>&Project-Viewer</source> <translation>Gestionnaire de &projet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1900" /> + <location filename="../UI/UserInterface.py" line="1892" /> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1903" /> + <location filename="../UI/UserInterface.py" line="1895" /> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1905" /> + <location filename="../UI/UserInterface.py" line="1897" /> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1916" /> + <location filename="../UI/UserInterface.py" line="1908" /> <source>&Multiproject-Viewer</source> <translation>Gestionnaire de &multi-projet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1917" /> + <location filename="../UI/UserInterface.py" line="1909" /> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920" /> + <location filename="../UI/UserInterface.py" line="1912" /> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1922" /> + <location filename="../UI/UserInterface.py" line="1914" /> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1934" /> + <location filename="../UI/UserInterface.py" line="1926" /> <source>&Debug-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1935" /> + <location filename="../UI/UserInterface.py" line="1927" /> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1938" /> + <location filename="../UI/UserInterface.py" line="1930" /> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1940" /> + <location filename="../UI/UserInterface.py" line="1932" /> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1952" /> + <location filename="../UI/UserInterface.py" line="1944" /> <source>&Shell</source> <translation>&Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1953" /> + <location filename="../UI/UserInterface.py" line="1945" /> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1956" /> + <location filename="../UI/UserInterface.py" line="1948" /> <source>Switch the input focus to the Shell window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1958" /> + <location filename="../UI/UserInterface.py" line="1950" /> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1969" /> + <location filename="../UI/UserInterface.py" line="1961" /> <source>&File-Browser</source> <translation>Navigateur de &fichier</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1970" /> + <location filename="../UI/UserInterface.py" line="1962" /> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1973" /> + <location filename="../UI/UserInterface.py" line="1965" /> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1975" /> + <location filename="../UI/UserInterface.py" line="1967" /> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1986" /> + <location filename="../UI/UserInterface.py" line="1978" /> <source>Lo&g-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1987" /> + <location filename="../UI/UserInterface.py" line="1979" /> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1990" /> + <location filename="../UI/UserInterface.py" line="1982" /> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1992" /> + <location filename="../UI/UserInterface.py" line="1984" /> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2004" /> + <location filename="../UI/UserInterface.py" line="1996" /> <source>&Task-Viewer</source> <translation>Visionneur de &tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2005" /> + <location filename="../UI/UserInterface.py" line="1997" /> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2008" /> + <location filename="../UI/UserInterface.py" line="2000" /> <source>Switch the input focus to the Task-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2010" /> + <location filename="../UI/UserInterface.py" line="2002" /> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2023" /> + <location filename="../UI/UserInterface.py" line="2015" /> <source>Templ&ate-Viewer</source> <translation>Visionneur de g&abarits</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2024" /> + <location filename="../UI/UserInterface.py" line="2016" /> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2027" /> + <location filename="../UI/UserInterface.py" line="2019" /> <source>Switch the input focus to the Template-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2029" /> + <location filename="../UI/UserInterface.py" line="2021" /> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2042" /> + <location filename="../UI/UserInterface.py" line="2034" /> <source>&Left Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2043" /> + <location filename="../UI/UserInterface.py" line="2035" /> <source>Toggle the Left Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2044" /> + <location filename="../UI/UserInterface.py" line="2036" /> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2057" /> + <location filename="../UI/UserInterface.py" line="2049" /> <source>&Right Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2059" /> + <location filename="../UI/UserInterface.py" line="2051" /> <source>Toggle the Right Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2060" /> + <location filename="../UI/UserInterface.py" line="2052" /> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2073" /> + <location filename="../UI/UserInterface.py" line="2065" /> <source>&Horizontal Toolbox</source> <translation>Barre &horizontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2075" /> + <location filename="../UI/UserInterface.py" line="2067" /> <source>Toggle the Horizontal Toolbox window</source> <translation>Afficher/Masquer la barre d'outils horizontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2077" /> + <location filename="../UI/UserInterface.py" line="2069" /> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Afficher/Masquer la barre d'outils horizontale</b><p>Affiche ou masque la barre d'outils horizontale, selon.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2089" /> + <location filename="../UI/UserInterface.py" line="2081" /> <source>Left Sidebar</source> <translation>Barre latérale de gauche</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2090" /> + <location filename="../UI/UserInterface.py" line="2082" /> <source>&Left Sidebar</source> <translation>Barre latérale de &gauche</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2092" /> + <location filename="../UI/UserInterface.py" line="2084" /> <source>Toggle the left sidebar window</source> <translation>Affiche/Masque la barre latérale de gauche</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2093" /> + <location filename="../UI/UserInterface.py" line="2085" /> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Affiche/masque la barre latérale de gauche</b><p>Affiche ou maque la barre latérale de gauche.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2105" /> + <location filename="../UI/UserInterface.py" line="2097" /> <source>Right Sidebar</source> <translation type="unfinished">Barre latérale de droite</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2106" /> + <location filename="../UI/UserInterface.py" line="2098" /> <source>&Right Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2108" /> + <location filename="../UI/UserInterface.py" line="2100" /> <source>Toggle the right sidebar window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2110" /> + <location filename="../UI/UserInterface.py" line="2102" /> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2122" /> + <location filename="../UI/UserInterface.py" line="2114" /> <source>Bottom Sidebar</source> <translation>Barre du bas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2123" /> + <location filename="../UI/UserInterface.py" line="2115" /> <source>&Bottom Sidebar</source> <translation>&Barre du bas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2125" /> + <location filename="../UI/UserInterface.py" line="2117" /> <source>Toggle the bottom sidebar window</source> <translation>Affiche/Masque la barre du bas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2127" /> + <location filename="../UI/UserInterface.py" line="2119" /> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>A/ffiche/Masque la barre du bas</b><p>Affiche ou masque la barre du bas</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139" /> + <location filename="../UI/UserInterface.py" line="2131" /> <source>Cooperation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2140" /> + <location filename="../UI/UserInterface.py" line="2132" /> <source>Co&operation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2141" /> + <location filename="../UI/UserInterface.py" line="2133" /> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144" /> + <location filename="../UI/UserInterface.py" line="2136" /> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2146" /> + <location filename="../UI/UserInterface.py" line="2138" /> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2159" /> + <location filename="../UI/UserInterface.py" line="2151" /> <source>&IRC</source> <translation>&IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160" /> + <location filename="../UI/UserInterface.py" line="2152" /> <source>Ctrl+Alt+Shift+I</source> <translation>Ctrl+Alt+Shift+I</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2163" /> + <location filename="../UI/UserInterface.py" line="2155" /> <source>Switch the input focus to the IRC window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2165" /> + <location filename="../UI/UserInterface.py" line="2157" /> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2176" /> + <location filename="../UI/UserInterface.py" line="2168" /> <source>Symbols-Viewer</source> <translation>Visionneur de symbole</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2177" /> + <location filename="../UI/UserInterface.py" line="2169" /> <source>S&ymbols-Viewer</source> <translation>Visionneur de s&ymbole</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2178" /> + <location filename="../UI/UserInterface.py" line="2170" /> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2181" /> + <location filename="../UI/UserInterface.py" line="2173" /> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2183" /> + <location filename="../UI/UserInterface.py" line="2175" /> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2195" /> + <location filename="../UI/UserInterface.py" line="2187" /> <source>Numbers-Viewer</source> <translation>Visionneur de nombres</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196" /> + <location filename="../UI/UserInterface.py" line="2188" /> <source>Num&bers-Viewer</source> <translation>Visionneur de nom&bres</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2197" /> + <location filename="../UI/UserInterface.py" line="2189" /> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2200" /> + <location filename="../UI/UserInterface.py" line="2192" /> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2202" /> + <location filename="../UI/UserInterface.py" line="2194" /> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2216" /> + <location filename="../UI/UserInterface.py" line="2208" /> <source>Ctrl+Alt+Shift+D</source> <translation>Ctrl+Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2219" /> + <location filename="../UI/UserInterface.py" line="2211" /> <source>Switch the input focus to the Code Documentation Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2222" /> + <location filename="../UI/UserInterface.py" line="2214" /> <source><b>Code Documentation Viewer</b><p>This switches the input focus to the Code Documentation Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2236" /> + <location filename="../UI/UserInterface.py" line="2228" /> <source>Ctrl+Alt+Shift+P</source> <translation>Ctrl+Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239" /> + <location filename="../UI/UserInterface.py" line="2231" /> <source>Switch the input focus to the PyPI window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2241" /> + <location filename="../UI/UserInterface.py" line="2233" /> <source><b>PyPI</b><p>This switches the input focus to the PyPI window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2254" /> + <location filename="../UI/UserInterface.py" line="2246" /> <source>Ctrl+Alt+Shift+C</source> <translation>Ctrl+Alt+Shift+C</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2257" /> + <location filename="../UI/UserInterface.py" line="2249" /> <source>Switch the input focus to the Conda window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2259" /> + <location filename="../UI/UserInterface.py" line="2251" /> <source><b>Conda</b><p>This switches the input focus to the Conda window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2272" /> + <location filename="../UI/UserInterface.py" line="2264" /> <source>Ctrl+Alt+Shift+M</source> <translation>Ctrl+Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2275" /> + <location filename="../UI/UserInterface.py" line="2267" /> <source>Switch the input focus to the MicroPython window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2277" /> + <location filename="../UI/UserInterface.py" line="2269" /> <source><b>MicroPython</b><p>This switches the input focus to the MicroPython window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2290" /> + <location filename="../UI/UserInterface.py" line="2282" /> <source>Ctrl+Alt+Shift+R</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2293" /> + <location filename="../UI/UserInterface.py" line="2285" /> <source>Switch the input focus to the Plugin Repository window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2295" /> + <location filename="../UI/UserInterface.py" line="2287" /> <source><b>Plugin Repository</b><p>This switches the input focus to the Plugin Repository window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2308" /> + <location filename="../UI/UserInterface.py" line="2300" /> <source>Ctrl+Alt+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2311" /> + <location filename="../UI/UserInterface.py" line="2303" /> <source>Switch the input focus to the Virtual Environments Manager window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2314" /> + <location filename="../UI/UserInterface.py" line="2306" /> <source><b>Virtual Environments</b><p>This switches the input focus to the Virtual Environments Manager window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2327" /> + <location filename="../UI/UserInterface.py" line="2319" /> <source>Ctrl+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2330" /> + <location filename="../UI/UserInterface.py" line="2322" /> <source>Switch the input focus to the Find/Replace In Files window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2332" /> + <location filename="../UI/UserInterface.py" line="2324" /> <source><b>Find/Replace In Files</b><p>This switches the input focus to the Find/Replace In Files window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2345" /> + <location filename="../UI/UserInterface.py" line="2337" /> <source>Ctrl+Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2348" /> + <location filename="../UI/UserInterface.py" line="2340" /> <source>Switch the input focus to the Find File window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2350" /> + <location filename="../UI/UserInterface.py" line="2342" /> <source><b>Find File</b><p>This switches the input focus to the Find File window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2362" /> - <location filename="../UI/UserInterface.py" line="2361" /> + <location filename="../UI/UserInterface.py" line="2354" /> + <location filename="../UI/UserInterface.py" line="2353" /> <source>VCS Status List</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2363" /> + <location filename="../UI/UserInterface.py" line="2355" /> <source>Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2366" /> + <location filename="../UI/UserInterface.py" line="2358" /> <source>Switch the input focus to the VCS Status List window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2368" /> + <location filename="../UI/UserInterface.py" line="2360" /> <source><b>VCS Status List</b><p>This switches the input focus to the VCS Status List window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2381" /> + <location filename="../UI/UserInterface.py" line="2373" /> <source>Alt+Shift+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2384" /> + <location filename="../UI/UserInterface.py" line="2376" /> <source>Switch the input focus to the embedded Help Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2386" /> + <location filename="../UI/UserInterface.py" line="2378" /> <source><b>Help Viewer</b><p>This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2399" /> + <location filename="../UI/UserInterface.py" line="2391" /> <source>What's This?</source> <translation>Qu'est-ce que c'est ?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2401" /> + <location filename="../UI/UserInterface.py" line="2393" /> <source>&What's This?</source> <translation>&Qu'est-ce que c'est?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2402" /> + <location filename="../UI/UserInterface.py" line="2394" /> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404" /> + <location filename="../UI/UserInterface.py" line="2396" /> <source>Context sensitive help</source> <translation>Aide contextuelle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2405" /> + <location filename="../UI/UserInterface.py" line="2397" /> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Affiche l'aide contextuelle</b><p>Dans le mode "Qu'est-ce que c'est?", la souris est affichée avec un point d'interrogation, et on peut cliquer sur les éléments de l'interface pour obtenir une courte description de l'élément. Cette fonction peut être obtenue avec le bouton d'aide contextuelle de la barre principale.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2417" /> + <location filename="../UI/UserInterface.py" line="2409" /> <source>Helpviewer</source> <translation>Visionneur d'aide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419" /> + <location filename="../UI/UserInterface.py" line="2411" /> <source>&Helpviewer...</source> <translation>Visionneur d'&aide...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2420" /> + <location filename="../UI/UserInterface.py" line="2412" /> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2422" /> + <location filename="../UI/UserInterface.py" line="2414" /> <source>Open the helpviewer window</source> <translation>Ouvre le visualiseur d'aide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2424" /> + <location filename="../UI/UserInterface.py" line="2416" /> <source><b>Helpviewer</b><p>Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2443" /> + <location filename="../UI/UserInterface.py" line="2435" /> <source>Show Versions</source> <translation>Afficher les versions</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2444" /> + <location filename="../UI/UserInterface.py" line="2436" /> <source>Show &Versions</source> <translation>Afficher les &versions</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446" /> + <location filename="../UI/UserInterface.py" line="2438" /> <source>Display version information</source> <translation>Affiche les informations sur les versions</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2448" /> + <location filename="../UI/UserInterface.py" line="2440" /> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Afficher les versions</b><p>Affiche les informations sur les versions.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2458" /> - <location filename="../UI/UserInterface.py" line="2456" /> - <source>Check for Updates</source> - <translation>Rechercher des mises à jour</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2457" /> - <source>Check for &Updates...</source> - <translation>Rechercher des &mises à jour...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2459" /> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2467" /> - <source>Show downloadable versions</source> - <translation>Afficher les versions téléchargeables</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2468" /> - <source>Show &downloadable versions...</source> - <translation>Afficher les versions &téléchargeables...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2471" /> - <source>Show the versions available for download</source> - <translation>Affiche les versions disponibles pour le téléchargement</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2472" /> - <source><b>Show downloadable versions...</b><p>Shows the eric versions available for download from the internet.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2485" /> - <location filename="../UI/UserInterface.py" line="2482" /> + <location filename="../UI/UserInterface.py" line="2451" /> + <location filename="../UI/UserInterface.py" line="2448" /> <source>Show Error Log</source> <translation>Montrer l'historique d'erreur</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2483" /> + <location filename="../UI/UserInterface.py" line="2449" /> <source>Show Error &Log...</source> <translation>Montrer &l'historique d'erreur...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2452" /> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation><b>Montrer l'historique d'erreur...</b><p>Ouvre une fenêtre avec les messages d'erreur les plus récents.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2460" /> + <source>Show Install Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2461" /> + <source>Show Install &Info...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2463" /> + <source>Show Installation Information</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2465" /> + <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4083" /> + <location filename="../UI/UserInterface.py" line="2474" /> + <source>Report Bug</source> + <translation>Rapport de bogue</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2475" /> + <source>Report &Bug...</source> + <translation>Rapport de &bogue...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2477" /> + <source>Report a bug</source> + <translation>Envoyer un rapport de bogue</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2478" /> + <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <translation><b>Rapport de bogue...</b><p>Ouvre une fenêtre pour envoyer un rapport de bogue.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2486" /> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation><b>Montrer l'historique d'erreur...</b><p>Ouvre une fenêtre avec les messages d'erreur les plus récents.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2494" /> - <source>Show Install Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2495" /> - <source>Show Install &Info...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2497" /> - <source>Show Installation Information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2499" /> - <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4120" /> - <location filename="../UI/UserInterface.py" line="2508" /> - <source>Report Bug</source> - <translation>Rapport de bogue</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2509" /> - <source>Report &Bug...</source> - <translation>Rapport de &bogue...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2511" /> - <source>Report a bug</source> - <translation>Envoyer un rapport de bogue</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512" /> - <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> - <translation><b>Rapport de bogue...</b><p>Ouvre une fenêtre pour envoyer un rapport de bogue.</p></translation> + <source>Request Feature</source> + <translation>Suggestion d'amélioration</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2487" /> + <source>Request &Feature...</source> + <translation>Suggestion d'&amélioration...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2489" /> + <source>Send a feature request</source> + <translation>Envoyer une suggestion d'amélioration</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2491" /> + <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> + <translation><b>Demande d'amélioration...</b><p>Ouvre une fenêtre permettant d'envoyer une demande d'amélioration.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606" /> + <location filename="../UI/UserInterface.py" line="3583" /> + <location filename="../UI/UserInterface.py" line="2501" /> + <source>Unittest</source> + <translation>Tests unitaires</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2503" /> + <source>&Unittest...</source> + <translation>&Tests unitaires...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2505" /> + <source>Start unittest dialog</source> + <translation>Ouvre la fenêtre Unitest</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506" /> + <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <translation><b>Tests unitaires</b><p>Effectue les tests d'unitaires. Cette fenêtre permet de sélectionner et de lancer une suite de tests unitaires.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2515" /> + <source>Unittest Restart</source> + <translation>Relancer les tests unitaires</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2517" /> + <source>&Restart Unittest...</source> + <translation>&Relancer les tests unitaires...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2519" /> + <source>Restart last unittest</source> + <translation>Relancer le dernier test unitaire</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2520" /> - <source>Request Feature</source> - <translation>Suggestion d'amélioration</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2521" /> - <source>Request &Feature...</source> - <translation>Suggestion d'&amélioration...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2523" /> - <source>Send a feature request</source> - <translation>Envoyer une suggestion d'amélioration</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2525" /> - <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> - <translation><b>Demande d'amélioration...</b><p>Ouvre une fenêtre permettant d'envoyer une demande d'amélioration.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3643" /> - <location filename="../UI/UserInterface.py" line="3620" /> - <location filename="../UI/UserInterface.py" line="2535" /> - <source>Unittest</source> - <translation>Tests unitaires</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2537" /> - <source>&Unittest...</source> - <translation>&Tests unitaires...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2539" /> - <source>Start unittest dialog</source> - <translation>Ouvre la fenêtre Unitest</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2540" /> - <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> - <translation><b>Tests unitaires</b><p>Effectue les tests d'unitaires. Cette fenêtre permet de sélectionner et de lancer une suite de tests unitaires.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2549" /> - <source>Unittest Restart</source> - <translation>Relancer les tests unitaires</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2551" /> - <source>&Restart Unittest...</source> - <translation>&Relancer les tests unitaires...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2553" /> - <source>Restart last unittest</source> - <translation>Relancer le dernier test unitaire</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2554" /> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>Relancer le dernier test unitaire</b> <p>Relance le dernier test unitaire effectué.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2563" /> + <location filename="../UI/UserInterface.py" line="2529" /> <source>Unittest Rerun Failed</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2565" /> + <location filename="../UI/UserInterface.py" line="2531" /> <source>Rerun Failed Tests...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2567" /> + <location filename="../UI/UserInterface.py" line="2533" /> <source>Rerun failed tests of the last run</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2569" /> + <location filename="../UI/UserInterface.py" line="2535" /> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2579" /> + <location filename="../UI/UserInterface.py" line="2545" /> <source>Unittest Script</source> <translation>Script de tests unitaires</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2581" /> + <location filename="../UI/UserInterface.py" line="2547" /> <source>Unittest &Script...</source> <translation>&Script de tests unitaires...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583" /> + <location filename="../UI/UserInterface.py" line="2549" /> <source>Run unittest with current script</source> <translation>Lance les tests unitaires sur le script courant</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2585" /> + <location filename="../UI/UserInterface.py" line="2551" /> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Script de tests unitaires</b><p>Lance les tests unitaires sur le script en cours.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2594" /> + <location filename="../UI/UserInterface.py" line="2560" /> <source>Unittest Project</source> <translation>Projet de tests unitaires</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596" /> + <location filename="../UI/UserInterface.py" line="2562" /> <source>Unittest &Project...</source> <translation>&Projet de tests unitaires...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2598" /> + <location filename="../UI/UserInterface.py" line="2564" /> <source>Run unittest with current project</source> <translation>Lance les tests unitaires sur le projet courant</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600" /> + <location filename="../UI/UserInterface.py" line="2566" /> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Projet de tests unitaires</b><p>Lance les tests unitaires sur le projet en cours.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2621" /> + <location filename="../UI/UserInterface.py" line="2587" /> <source>Qt-Designer</source> <translation>Qt-Designer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2623" /> + <location filename="../UI/UserInterface.py" line="2589" /> <source>Qt-&Designer...</source> <translation>Qt-&Designer...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2625" /> + <location filename="../UI/UserInterface.py" line="2591" /> <source>Start Qt-Designer</source> <translation>Démarrer Qt-Designer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2626" /> + <location filename="../UI/UserInterface.py" line="2592" /> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation><b>Qt-Designer</b><p>Démarrer Qt-Designer.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2613" /> + <source>Qt-Linguist</source> + <translation>Qt-Linguist</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2615" /> + <source>Qt-&Linguist...</source> + <translation>Qt-&Linguist...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2617" /> + <source>Start Qt-Linguist</source> + <translation>Démarrer Qt-Linguist</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2618" /> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation><b>Qt-Linguist</b><p>Démarrer Qt-Linguist.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2628" /> + <source>UI Previewer</source> + <translation>Visionneur d'UI</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2630" /> + <source>&UI Previewer...</source> + <translation>Visionneur d'&UI...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2632" /> + <source>Start the UI Previewer</source> + <translation>Démarre le Visionneur d'UI</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2633" /> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation><b>Visulaiseur d'UI</b><p>Démarre le visualiseur d'UI.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2641" /> + <source>Translations Previewer</source> + <translation>Visionneur de traductions</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2643" /> + <source>&Translations Previewer...</source> + <translation>Visionneur de &Traductions...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2645" /> + <source>Start the Translations Previewer</source> + <translation>Démarre le visionneur de traductions</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2647" /> - <source>Qt-Linguist</source> - <translation>Qt-Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2649" /> - <source>Qt-&Linguist...</source> - <translation>Qt-&Linguist...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2651" /> - <source>Start Qt-Linguist</source> - <translation>Démarrer Qt-Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2652" /> - <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> - <translation><b>Qt-Linguist</b><p>Démarrer Qt-Linguist.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2662" /> - <source>UI Previewer</source> - <translation>Visionneur d'UI</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2664" /> - <source>&UI Previewer...</source> - <translation>Visionneur d'&UI...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2666" /> - <source>Start the UI Previewer</source> - <translation>Démarre le Visionneur d'UI</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2667" /> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation><b>Visulaiseur d'UI</b><p>Démarre le visualiseur d'UI.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2675" /> - <source>Translations Previewer</source> - <translation>Visionneur de traductions</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2677" /> - <source>&Translations Previewer...</source> - <translation>Visionneur de &Traductions...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2679" /> - <source>Start the Translations Previewer</source> - <translation>Démarre le visionneur de traductions</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2681" /> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Visionneur de traductions</b><p>Démarre le visionneur de traductions.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2689" /> + <location filename="../UI/UserInterface.py" line="2655" /> <source>Compare Files</source> <translation>Comparaison de fichiers</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691" /> + <location filename="../UI/UserInterface.py" line="2657" /> <source>&Compare Files...</source> <translation>&Comparaison de fichiers...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2706" /> - <location filename="../UI/UserInterface.py" line="2693" /> + <location filename="../UI/UserInterface.py" line="2672" /> + <location filename="../UI/UserInterface.py" line="2659" /> <source>Compare two files</source> <translation>Compare deux fichiers</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2694" /> + <location filename="../UI/UserInterface.py" line="2660" /> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Comparaison de Fichiers</b><p>Ouvre une fenêtre pour comparer deux fichiers.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2702" /> + <location filename="../UI/UserInterface.py" line="2668" /> <source>Compare Files side by side</source> <translation>Comparaison de fichiers côte à côte</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2704" /> + <location filename="../UI/UserInterface.py" line="2670" /> <source>Compare &Files side by side...</source> <translation>Comparer des &fichiers côte à côte...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2707" /> + <location filename="../UI/UserInterface.py" line="2673" /> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Comparaison de fichiers côte à côte</b><p>Ouvre une fenêtre pour comparer deux fichiers et affiche les différences côte à côte.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2716" /> + <location filename="../UI/UserInterface.py" line="2682" /> <source>SQL Browser</source> <translation>Navigateur SQL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2718" /> + <location filename="../UI/UserInterface.py" line="2684" /> <source>SQL &Browser...</source> <translation>&Navigateur SQL...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2720" /> + <location filename="../UI/UserInterface.py" line="2686" /> <source>Browse a SQL database</source> <translation>Parcourir une base de données SQL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2721" /> + <location filename="../UI/UserInterface.py" line="2687" /> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>Navigateur SQL</b><p>Parcourir une base de données SQL.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2733" /> - <location filename="../UI/UserInterface.py" line="2729" /> + <location filename="../UI/UserInterface.py" line="2699" /> + <location filename="../UI/UserInterface.py" line="2695" /> <source>Mini Editor</source> <translation>Mini-éditeur</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2731" /> + <location filename="../UI/UserInterface.py" line="2697" /> <source>Mini &Editor...</source> <translation>Mini édit&eur...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2734" /> + <location filename="../UI/UserInterface.py" line="2700" /> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Editeur</b><p>ouvre une fenêtre avec un éditeur simplifié.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2742" /> + <location filename="../UI/UserInterface.py" line="2708" /> <source>Hex Editor</source> <translation>Hex Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2744" /> + <location filename="../UI/UserInterface.py" line="2710" /> <source>&Hex Editor...</source> <translation>&Hex Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2746" /> + <location filename="../UI/UserInterface.py" line="2712" /> <source>Start the eric Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2748" /> + <location filename="../UI/UserInterface.py" line="2714" /> <source><b>Hex Editor</b><p>Starts the eric Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2723" /> + <source>eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2725" /> + <source>eric &Web Browser...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2727" /> + <source>Start the eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2729" /> + <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2737" /> + <source>Icon Editor</source> + <translation>Éditeur d'icone</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2739" /> + <source>&Icon Editor...</source> + <translation>Éditeur d'&icone...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2741" /> + <source>Start the eric Icon Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2743" /> + <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2751" /> + <source>Snapshot</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2753" /> + <source>&Snapshot...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2755" /> + <source>Take snapshots of a screen region</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757" /> - <source>eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2759" /> - <source>eric &Web Browser...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2761" /> - <source>Start the eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2763" /> - <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2771" /> - <source>Icon Editor</source> - <translation>Éditeur d'icone</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2773" /> - <source>&Icon Editor...</source> - <translation>Éditeur d'&icone...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2775" /> - <source>Start the eric Icon Editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2777" /> - <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2785" /> - <source>Snapshot</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2787" /> - <source>&Snapshot...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2789" /> - <source>Take snapshots of a screen region</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2791" /> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2766" /> + <source>Preferences</source> + <translation>Préférences</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768" /> + <source>&Preferences...</source> + <translation>&Préférences...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2770" /> + <source>Set the prefered configuration</source> + <translation>Édition des préférences</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2772" /> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation><b>Préférences</b><p>Edite les valeurs souhaitées pour la configuration du logiciel.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782" /> + <source>Export Preferences</source> + <translation>Exporte les préférences</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2784" /> + <source>E&xport Preferences...</source> + <translation>E&xporter les préférences...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2786" /> + <source>Export the current configuration</source> + <translation>Exporte la configuration courante</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2788" /> + <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <translation><b>Exporter les préférences</b><p>Export la configuration courante dans un fichier.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2796" /> + <source>Import Preferences</source> + <translation>Importe les préférences</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2798" /> + <source>I&mport Preferences...</source> + <translation>I&mporter les préférences...</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2800" /> - <source>Preferences</source> - <translation>Préférences</translation> + <source>Import a previously exported configuration</source> + <translation>Importe les préférences d'un fichier précédemment exporté</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2802" /> - <source>&Preferences...</source> - <translation>&Préférences...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2804" /> - <source>Set the prefered configuration</source> - <translation>Édition des préférences</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2806" /> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> - <translation><b>Préférences</b><p>Edite les valeurs souhaitées pour la configuration du logiciel.</p></translation> + <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> + <translation><b>Importer les préférences</b><p>Importe les préférences d'un fichier précédemment exporté.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2810" /> + <source>Export Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2812" /> + <source>Export Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2814" /> + <source>Export the current theme</source> + <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2816" /> - <source>Export Preferences</source> - <translation>Exporte les préférences</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2818" /> - <source>E&xport Preferences...</source> - <translation>E&xporter les préférences...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2820" /> - <source>Export the current configuration</source> - <translation>Exporte la configuration courante</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2822" /> - <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> - <translation><b>Exporter les préférences</b><p>Export la configuration courante dans un fichier.</p></translation> + <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2824" /> + <source>Import Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2826" /> + <source>Import Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2828" /> + <source>Import a previously exported theme</source> + <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2830" /> - <source>Import Preferences</source> - <translation>Importe les préférences</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2832" /> - <source>I&mport Preferences...</source> - <translation>I&mporter les préférences...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2834" /> - <source>Import a previously exported configuration</source> - <translation>Importe les préférences d'un fichier précédemment exporté</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2836" /> - <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> - <translation><b>Importer les préférences</b><p>Importe les préférences d'un fichier précédemment exporté.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2844" /> - <source>Export Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2846" /> - <source>Export Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2848" /> - <source>Export the current theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2850" /> - <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2858" /> - <source>Import Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2860" /> - <source>Import Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2862" /> - <source>Import a previously exported theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2864" /> <source><b>Import Theme</b><p>Import a previously exported theme.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2872" /> + <location filename="../UI/UserInterface.py" line="2838" /> <source>Reload APIs</source> <translation>Recharger les APIs</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2839" /> + <source>Reload &APIs</source> + <translation>Recharger les &APIs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2841" /> + <source>Reload the API information</source> + <translation>Recharger les informations des API</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2843" /> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation><b>Recharger les APIs</b><p>Recharger les informations des API.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2855" /> + <location filename="../UI/UserInterface.py" line="2851" /> + <source>Show external tools</source> + <translation>Afficher les outils externes</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2853" /> + <source>Show external &tools</source> + <translation>Afficher les &outils externes</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857" /> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2867" /> + <source>View Profiles</source> + <translation>Profils de visualisation</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2869" /> + <source>&View Profiles...</source> + <translation>Profils de &Visualisation...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2871" /> + <source>Configure view profiles</source> + <translation>Configuration des profils de visualisation</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2873" /> - <source>Reload &APIs</source> - <translation>Recharger les &APIs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2875" /> - <source>Reload the API information</source> - <translation>Recharger les informations des API</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2877" /> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> - <translation><b>Recharger les APIs</b><p>Recharger les informations des API.</p></translation> + <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <translation><b>Profils de Visualisation</b><p>Configure les modes de visualisation de l'éditeur (modes Edition/Débogage). Avec cet fenêtre de configuration, on peut sélectionner les sous-fenêtres actives par défaut pour chacun des mode de visualisation.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2884" /> + <source>Toolbars</source> + <translation>Barres d'outils</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2886" /> + <source>Tool&bars...</source> + <translation>&Barres d'outils...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2888" /> + <source>Configure toolbars</source> + <translation>Configuration des barres d'outils</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2889" /> - <location filename="../UI/UserInterface.py" line="2885" /> - <source>Show external tools</source> - <translation>Afficher les outils externes</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887" /> - <source>Show external &tools</source> - <translation>Afficher les &outils externes</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2891" /> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> - <translation type="unfinished" /> + <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> + <translation><b>Barres d'outils</b><p>Configuration des barres d'outils. Avec cette fenêtre vous pouvez modifier les actions des différentes barres affichées et créer vos propres barres d'outils</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2899" /> + <source>Keyboard Shortcuts</source> + <translation>Raccourcis clavier</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2901" /> - <source>View Profiles</source> - <translation>Profils de visualisation</translation> + <source>Keyboard &Shortcuts...</source> + <translation>&Raccourcis claviers...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2903" /> - <source>&View Profiles...</source> - <translation>Profils de &Visualisation...</translation> + <source>Set the keyboard shortcuts</source> + <translation>Définition des raccourcis clavier</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2905" /> - <source>Configure view profiles</source> - <translation>Configuration des profils de visualisation</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2907" /> - <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> - <translation><b>Profils de Visualisation</b><p>Configure les modes de visualisation de l'éditeur (modes Edition/Débogage). Avec cet fenêtre de configuration, on peut sélectionner les sous-fenêtres actives par défaut pour chacun des mode de visualisation.</p></translation> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation><b>Raccourcis claviers</b><p>Edite les raccourcis claviers pour l'application.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756" /> + <location filename="../UI/UserInterface.py" line="6738" /> + <location filename="../UI/UserInterface.py" line="2914" /> + <source>Export Keyboard Shortcuts</source> + <translation>Exporter les raccourcis clavier</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2916" /> + <source>&Export Keyboard Shortcuts...</source> + <translation>&Exporter les raccourcis claviers...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2918" /> - <source>Toolbars</source> - <translation>Barres d'outils</translation> + <source>Export the keyboard shortcuts</source> + <translation>Exporte les raccourcis claviers</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2920" /> - <source>Tool&bars...</source> - <translation>&Barres d'outils...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2922" /> - <source>Configure toolbars</source> - <translation>Configuration des barres d'outils</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2923" /> - <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> - <translation><b>Barres d'outils</b><p>Configuration des barres d'outils. Avec cette fenêtre vous pouvez modifier les actions des différentes barres affichées et créer vos propres barres d'outils</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2933" /> - <source>Keyboard Shortcuts</source> - <translation>Raccourcis clavier</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2935" /> - <source>Keyboard &Shortcuts...</source> - <translation>&Raccourcis claviers...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2937" /> - <source>Set the keyboard shortcuts</source> - <translation>Définition des raccourcis clavier</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2939" /> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation><b>Raccourcis claviers</b><p>Edite les raccourcis claviers pour l'application.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6698" /> - <location filename="../UI/UserInterface.py" line="6680" /> - <location filename="../UI/UserInterface.py" line="2948" /> - <source>Export Keyboard Shortcuts</source> - <translation>Exporter les raccourcis clavier</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2950" /> - <source>&Export Keyboard Shortcuts...</source> - <translation>&Exporter les raccourcis claviers...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2952" /> - <source>Export the keyboard shortcuts</source> - <translation>Exporte les raccourcis claviers</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2954" /> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Exporter les raccourcis clavier</b><p>Exporte les raccourcis claviers de l'application.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6715" /> - <location filename="../UI/UserInterface.py" line="2962" /> + <location filename="../UI/UserInterface.py" line="6773" /> + <location filename="../UI/UserInterface.py" line="2928" /> <source>Import Keyboard Shortcuts</source> <translation>Importer des raccourcis clavier</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2964" /> + <location filename="../UI/UserInterface.py" line="2930" /> <source>&Import Keyboard Shortcuts...</source> <translation>&Importer des raccourcis clavier...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2966" /> + <location filename="../UI/UserInterface.py" line="2932" /> <source>Import the keyboard shortcuts</source> <translation>Importe des raccourcis clavier</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2968" /> + <location filename="../UI/UserInterface.py" line="2934" /> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Importer des raccourcis clavier</b><p>Importe des raccourcis claviers de l'application.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2977" /> + <location filename="../UI/UserInterface.py" line="2943" /> <source>Manage SSL Certificates</source> <translation>Gestion des certificats SSL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2979" /> + <location filename="../UI/UserInterface.py" line="2945" /> <source>Manage SSL Certificates...</source> <translation>Gestion des certificats SSL...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2947" /> + <source>Manage the saved SSL certificates</source> + <translation>Gestion des certificats SSL enregistrés</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2949" /> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2959" /> + <source>Edit Message Filters</source> + <translation>Éditer les filtres de message</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2961" /> + <source>Edit Message Filters...</source> + <translation>Éditer les filtres de message...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2963" /> + <source>Edit the message filters used to suppress unwanted messages</source> + <translation type="unfinished">Éditer les filtres de message utilisés pour supprimer les messages indésirés</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2965" /> + <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2981" /> - <source>Manage the saved SSL certificates</source> - <translation>Gestion des certificats SSL enregistrés</translation> + <location filename="../UI/UserInterface.py" line="2978" /> + <location filename="../UI/UserInterface.py" line="2976" /> + <source>Clear private data</source> + <translation>Nettoyer les données privées</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2983" /> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation type="unfinished" /> - </message> - <message> + <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" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2994" /> <location filename="../UI/UserInterface.py" line="2993" /> - <source>Edit Message Filters</source> - <translation>Éditer les filtres de message</translation> + <source>Activate current editor</source> + <translation>Activer l'éditeur courant</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2995" /> - <source>Edit Message Filters...</source> - <translation>Éditer les filtres de message...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2997" /> - <source>Edit the message filters used to suppress unwanted messages</source> - <translation type="unfinished">Éditer les filtres de message utilisés pour supprimer les messages indésirés</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2999" /> - <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3015" /> - <location filename="../UI/UserInterface.py" line="3012" /> - <location filename="../UI/UserInterface.py" line="3010" /> - <source>Clear private data</source> - <translation>Nettoyer les données privées</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3017" /> - <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" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3028" /> - <location filename="../UI/UserInterface.py" line="3027" /> - <source>Activate current editor</source> - <translation>Activer l'éditeur courant</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3029" /> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3038" /> - <location filename="../UI/UserInterface.py" line="3037" /> + <location filename="../UI/UserInterface.py" line="3004" /> + <location filename="../UI/UserInterface.py" line="3003" /> <source>Show next</source> <translation>Afficher le suivant</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3039" /> + <location filename="../UI/UserInterface.py" line="3005" /> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="3013" /> + <location filename="../UI/UserInterface.py" line="3012" /> + <source>Show previous</source> + <translation>Afficher le précédent</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3014" /> + <source>Shift+Ctrl+Alt+Tab</source> + <translation>Shift+Ctrl+Alt+Tab</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3022" /> + <location filename="../UI/UserInterface.py" line="3021" /> + <source>Switch between tabs</source> + <translation>Intervertir les onglets</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3023" /> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3030" /> + <source>Plugin Infos</source> + <translation>Infos Plugins</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3032" /> + <source>&Plugin Infos...</source> + <translation>Infos &Plugins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3033" /> + <source>Show Plugin Infos</source> + <translation>Affiche les infos sur les plugins</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3034" /> + <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="3047" /> - <location filename="../UI/UserInterface.py" line="3046" /> - <source>Show previous</source> - <translation>Afficher le précédent</translation> + <location filename="../UI/UserInterface.py" line="3043" /> + <source>Install Plugins</source> + <translation>Installation de plugins</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3045" /> + <source>&Install Plugins...</source> + <translation>&Installation de plugins...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3048" /> - <source>Shift+Ctrl+Alt+Tab</source> - <translation>Shift+Ctrl+Alt+Tab</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3056" /> - <location filename="../UI/UserInterface.py" line="3055" /> - <source>Switch between tabs</source> - <translation>Intervertir les onglets</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3057" /> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3064" /> - <source>Plugin Infos</source> - <translation>Infos Plugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3066" /> - <source>&Plugin Infos...</source> - <translation>Infos &Plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3067" /> - <source>Show Plugin Infos</source> - <translation>Affiche les infos sur les plugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3068" /> - <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="3081" /> - <location filename="../UI/UserInterface.py" line="3077" /> - <source>Install Plugins</source> - <translation>Installation de plugins</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3079" /> - <source>&Install Plugins...</source> - <translation>&Installation de plugins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3082" /> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Installation de plugins...</b><p>Ouvre une fenêtre pour installer ou mettre à jour des plugins.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3094" /> - <location filename="../UI/UserInterface.py" line="3090" /> + <location filename="../UI/UserInterface.py" line="3060" /> + <location filename="../UI/UserInterface.py" line="3056" /> <source>Uninstall Plugin</source> <translation>Désinstaller un plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3092" /> + <location filename="../UI/UserInterface.py" line="3058" /> <source>&Uninstall Plugin...</source> <translation>&Désinstaller un plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3095" /> + <location filename="../UI/UserInterface.py" line="3061" /> <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> <message> - <location filename="../UI/UserInterface.py" line="3105" /> + <location filename="../UI/UserInterface.py" line="3071" /> <source>Plugin &Repository...</source> <translation>&Référentiel de plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3107" /> + <location filename="../UI/UserInterface.py" line="3073" /> <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="3109" /> + <location filename="../UI/UserInterface.py" line="3075" /> <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="3101" /> + <location filename="../UI/UserInterface.py" line="3100" /> + <source>Qt5 Documentation</source> + <translation>Documentation Qt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3103" /> + <source>Open Qt5 Documentation</source> + <translation>Lance la Documentation Qt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3104" /> + <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3116" /> + <location filename="../UI/UserInterface.py" line="3115" /> + <source>Qt6 Documentation</source> + <translation type="unfinished">Documentation Qt5 {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3118" /> + <source>Open Qt6 Documentation</source> + <translation type="unfinished">Lance la Documentation Qt5 {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3119" /> + <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3131" /> + <location filename="../UI/UserInterface.py" line="3130" /> + <source>PyQt5 Documentation</source> + <translation>Documentation PyQt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3133" /> + <source>Open PyQt5 Documentation</source> + <translation>Lance la documentation PyQt5</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="3135" /> - <location filename="../UI/UserInterface.py" line="3134" /> - <source>Qt5 Documentation</source> - <translation>Documentation Qt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3137" /> - <source>Open Qt5 Documentation</source> - <translation>Lance la Documentation Qt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3138" /> - <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> + <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3148" /> + <location filename="../UI/UserInterface.py" line="3147" /> + <source>PyQt6 Documentation</source> + <translation type="unfinished">Documentation PyQt5 {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3150" /> - <location filename="../UI/UserInterface.py" line="3149" /> - <source>Qt6 Documentation</source> - <translation type="unfinished">Documentation Qt5 {6 ?}</translation> + <source>Open PyQt6 Documentation</source> + <translation type="unfinished">Lance la documentation PyQt5 {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3152" /> - <source>Open Qt6 Documentation</source> - <translation type="unfinished">Lance la Documentation Qt5 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3153" /> - <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3165" /> - <location filename="../UI/UserInterface.py" line="3164" /> - <source>PyQt5 Documentation</source> - <translation>Documentation PyQt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3167" /> - <source>Open PyQt5 Documentation</source> - <translation>Lance la documentation PyQt5</translation> - </message> - <message> + <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3170" /> <location filename="../UI/UserInterface.py" line="3169" /> - <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3182" /> - <location filename="../UI/UserInterface.py" line="3181" /> - <source>PyQt6 Documentation</source> - <translation type="unfinished">Documentation PyQt5 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3184" /> - <source>Open PyQt6 Documentation</source> - <translation type="unfinished">Lance la documentation PyQt5 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3186" /> - <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3204" /> - <location filename="../UI/UserInterface.py" line="3203" /> <source>Python 3 Documentation</source> <translation>Documentation Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3206" /> + <location filename="../UI/UserInterface.py" line="3172" /> <source>Open Python 3 Documentation</source> <translation>Ouvrir la Documentation Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3208" /> + <location filename="../UI/UserInterface.py" line="3174" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3226" /> - <location filename="../UI/UserInterface.py" line="3225" /> + <location filename="../UI/UserInterface.py" line="3192" /> + <location filename="../UI/UserInterface.py" line="3191" /> <source>eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3228" /> + <location filename="../UI/UserInterface.py" line="3194" /> <source>Open eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3230" /> + <location filename="../UI/UserInterface.py" line="3196" /> <source><b>eric API Documentation</b><p>Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3247" /> - <location filename="../UI/UserInterface.py" line="3246" /> + <location filename="../UI/UserInterface.py" line="3213" /> + <location filename="../UI/UserInterface.py" line="3212" /> <source>PySide2 Documentation</source> <translation>Documentation PySide2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3249" /> + <location filename="../UI/UserInterface.py" line="3215" /> <source>Open PySide2 Documentation</source> <translation>Ouvrir la Documentation PySide2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3251" /> + <location filename="../UI/UserInterface.py" line="3217" /> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3267" /> - <location filename="../UI/UserInterface.py" line="3266" /> + <location filename="../UI/UserInterface.py" line="3233" /> + <location filename="../UI/UserInterface.py" line="3232" /> <source>PySide6 Documentation</source> <translation type="unfinished">Documentation PySide2 {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3269" /> + <location filename="../UI/UserInterface.py" line="3235" /> <source>Open PySide6 Documentation</source> <translation type="unfinished">Ouvrir la Documentation PySide2 {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3271" /> + <location filename="../UI/UserInterface.py" line="3237" /> <source><b>PySide6 Documentation</b><p>Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3373" /> + <location filename="../UI/UserInterface.py" line="3339" /> <source>E&xtras</source> <translation>E&xtras</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3383" /> + <location filename="../UI/UserInterface.py" line="3349" /> <source>Wi&zards</source> <translation>As&sistants</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3402" /> + <location filename="../UI/UserInterface.py" line="3368" /> <source>P&lugins</source> <translation>P&lugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3412" /> + <location filename="../UI/UserInterface.py" line="3378" /> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3421" /> + <location filename="../UI/UserInterface.py" line="3387" /> <source>&Unittest</source> <translation>Tests &unitaires</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3438" /> + <location filename="../UI/UserInterface.py" line="3404" /> <source>Select Tool Group</source> <translation>Sélection d'un groupe d'outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3449" /> + <location filename="../UI/UserInterface.py" line="3415" /> <source>Se&ttings</source> <translation>&Configuration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482" /> + <location filename="../UI/UserInterface.py" line="3448" /> <source>&Window</source> <translation>&Fenêtre</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3491" /> + <location filename="../UI/UserInterface.py" line="3457" /> <source>&Windows</source> <translation>&Fenêtres</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3496" /> + <location filename="../UI/UserInterface.py" line="3462" /> <source>Central Park</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3500" /> + <location filename="../UI/UserInterface.py" line="3466" /> <source>Left Side</source> <translation>Coté gauche</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3517" /> + <location filename="../UI/UserInterface.py" line="3483" /> <source>Right Side</source> <translation>Coté droit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3541" /> + <location filename="../UI/UserInterface.py" line="3507" /> <source>Bottom Side</source> <translation>Coté bas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3549" /> + <location filename="../UI/UserInterface.py" line="3515" /> <source>Plug-ins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3556" /> + <location filename="../UI/UserInterface.py" line="3522" /> <source>&Toolbars</source> <translation>&Barres d'Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3569" /> + <location filename="../UI/UserInterface.py" line="3535" /> <source>&Help</source> <translation>A&ide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3642" /> - <location filename="../UI/UserInterface.py" line="3619" /> + <location filename="../UI/UserInterface.py" line="3605" /> + <location filename="../UI/UserInterface.py" line="3582" /> <source>Tools</source> <translation>Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3644" /> - <location filename="../UI/UserInterface.py" line="3623" /> + <location filename="../UI/UserInterface.py" line="3607" /> + <location filename="../UI/UserInterface.py" line="3586" /> <source>Settings</source> <translation>Configuration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5541" /> - <location filename="../UI/UserInterface.py" line="3645" /> - <location filename="../UI/UserInterface.py" line="3624" /> + <location filename="../UI/UserInterface.py" line="5600" /> + <location filename="../UI/UserInterface.py" line="3608" /> + <location filename="../UI/UserInterface.py" line="3587" /> <source>Help</source> <translation>Aide</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3646" /> - <location filename="../UI/UserInterface.py" line="3625" /> + <location filename="../UI/UserInterface.py" line="3609" /> + <location filename="../UI/UserInterface.py" line="3588" /> <source>Profiles</source> <translation>Profils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3647" /> - <location filename="../UI/UserInterface.py" line="3626" /> + <location filename="../UI/UserInterface.py" line="3610" /> + <location filename="../UI/UserInterface.py" line="3589" /> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811" /> + <location filename="../UI/UserInterface.py" line="3774" /> <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="3818" /> + <location filename="../UI/UserInterface.py" line="3781" /> <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="3825" /> + <location filename="../UI/UserInterface.py" line="3788" /> <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="3832" /> + <location filename="../UI/UserInterface.py" line="3795" /> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Cette partie de la barre d'état affiche les droits d'écriture des fichiers en cours.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3839" /> + <location filename="../UI/UserInterface.py" line="3802" /> <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="3846" /> + <location filename="../UI/UserInterface.py" line="3809" /> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Cette zone de la barre d'état affiche la position du curseur.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3857" /> + <location filename="../UI/UserInterface.py" line="3820" /> <source><p>This part of the status bar allows zooming the current editor or shell.</p></source> <translation><p>Cette zone de la barre d'état permet de zoomer l'éditeur courant ou le shell.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3922" /> - <location filename="../UI/UserInterface.py" line="3882" /> + <location filename="../UI/UserInterface.py" line="3885" /> + <location filename="../UI/UserInterface.py" line="3845" /> <source>External Tools/{0}</source> <translation>Outils externe/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4028" /> + <location filename="../UI/UserInterface.py" line="3991" /> <source><h2>Version Numbers</h2><table></source> <translation><h2>Numéros de version</h2><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4082" /> + <location filename="../UI/UserInterface.py" line="4045" /> <source>Desktop</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4085" /> + <location filename="../UI/UserInterface.py" line="4048" /> <source>Session Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7778" /> - <location filename="../UI/UserInterface.py" line="4087" /> + <location filename="../UI/UserInterface.py" line="4050" /> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4121" /> + <location filename="../UI/UserInterface.py" line="4084" /> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>L'adresse mail ou l'adresse du serveur mail est vide. Veuillez configurer vos paramètres mails dans la fenêtre des Préférences.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4432" /> + <location filename="../UI/UserInterface.py" line="4395" /> <source>Restart application</source> <translation>Redémarrage de l'application</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4433" /> + <location filename="../UI/UserInterface.py" line="4396" /> <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="4420" /> + <source>Upgrade PyQt</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4421" /> + <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="4467" /> + <location filename="../UI/UserInterface.py" line="4443" /> + <source>Upgrade Eric</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4444" /> + <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4468" /> + <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time. + + Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4526" /> <source>&Builtin Tools</source> <translation>Outils &internes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4484" /> + <location filename="../UI/UserInterface.py" line="4543" /> <source>&Plugin Tools</source> <translation>Outils &plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4487" /> + <location filename="../UI/UserInterface.py" line="4546" /> <source>&User Tools</source> <translation>Outils &utilisateurs</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4513" /> + <location filename="../UI/UserInterface.py" line="4572" /> <source>Configure Tool Groups ...</source> <translation>Configuration des groupes d'outils...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517" /> + <location filename="../UI/UserInterface.py" line="4576" /> <source>Configure current Tool Group ...</source> <translation>Configuration du groupe d'outils courant...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4558" /> - <location filename="../UI/UserInterface.py" line="4538" /> + <location filename="../UI/UserInterface.py" line="4617" /> + <location filename="../UI/UserInterface.py" line="4597" /> <source>No User Tools Configured</source> <translation>Pas d'outils utilisateurs configuré</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4632" /> + <location filename="../UI/UserInterface.py" line="4691" /> <source>&Show all</source> <translation>Tout &afficher</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4634" /> + <location filename="../UI/UserInterface.py" line="4693" /> <source>&Hide all</source> <translation>Tout &masquer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5669" /> - <location filename="../UI/UserInterface.py" line="5659" /> - <location filename="../UI/UserInterface.py" line="5612" /> - <location filename="../UI/UserInterface.py" line="5603" /> - <location filename="../UI/UserInterface.py" line="5442" /> - <location filename="../UI/UserInterface.py" line="5433" /> - <location filename="../UI/UserInterface.py" line="5372" /> - <location filename="../UI/UserInterface.py" line="5363" /> + <location filename="../UI/UserInterface.py" line="5728" /> + <location filename="../UI/UserInterface.py" line="5718" /> + <location filename="../UI/UserInterface.py" line="5671" /> + <location filename="../UI/UserInterface.py" line="5662" /> + <location filename="../UI/UserInterface.py" line="5501" /> + <location filename="../UI/UserInterface.py" line="5492" /> + <location filename="../UI/UserInterface.py" line="5431" /> + <location filename="../UI/UserInterface.py" line="5422" /> <source>Problem</source> <translation>Problème</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5670" /> - <location filename="../UI/UserInterface.py" line="5660" /> - <location filename="../UI/UserInterface.py" line="5613" /> - <location filename="../UI/UserInterface.py" line="5604" /> - <location filename="../UI/UserInterface.py" line="5443" /> - <location filename="../UI/UserInterface.py" line="5434" /> - <location filename="../UI/UserInterface.py" line="5373" /> - <location filename="../UI/UserInterface.py" line="5364" /> + <location filename="../UI/UserInterface.py" line="5729" /> + <location filename="../UI/UserInterface.py" line="5719" /> + <location filename="../UI/UserInterface.py" line="5672" /> + <location filename="../UI/UserInterface.py" line="5663" /> + <location filename="../UI/UserInterface.py" line="5502" /> + <location filename="../UI/UserInterface.py" line="5493" /> + <location filename="../UI/UserInterface.py" line="5432" /> + <location filename="../UI/UserInterface.py" line="5423" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Le fichier <b>{0}</b> n'existe pas ou est de longeur nulle.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5877" /> - <location filename="../UI/UserInterface.py" line="5790" /> - <location filename="../UI/UserInterface.py" line="5705" /> - <location filename="../UI/UserInterface.py" line="5682" /> - <location filename="../UI/UserInterface.py" line="5625" /> - <location filename="../UI/UserInterface.py" line="5575" /> - <location filename="../UI/UserInterface.py" line="5555" /> - <location filename="../UI/UserInterface.py" line="5517" /> - <location filename="../UI/UserInterface.py" line="5508" /> - <location filename="../UI/UserInterface.py" line="5473" /> - <location filename="../UI/UserInterface.py" line="5464" /> - <location filename="../UI/UserInterface.py" line="5403" /> - <location filename="../UI/UserInterface.py" line="5394" /> + <location filename="../UI/UserInterface.py" line="5936" /> + <location filename="../UI/UserInterface.py" line="5849" /> + <location filename="../UI/UserInterface.py" line="5764" /> + <location filename="../UI/UserInterface.py" line="5741" /> + <location filename="../UI/UserInterface.py" line="5684" /> + <location filename="../UI/UserInterface.py" line="5634" /> + <location filename="../UI/UserInterface.py" line="5614" /> + <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5567" /> + <location filename="../UI/UserInterface.py" line="5532" /> + <location filename="../UI/UserInterface.py" line="5523" /> + <location filename="../UI/UserInterface.py" line="5462" /> + <location filename="../UI/UserInterface.py" line="5453" /> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5395" /> + <location filename="../UI/UserInterface.py" line="5454" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Ne peut lancer Qt-Designer.<br>Vérifier qu'il est disponible en tant que <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5404" /> + <location filename="../UI/UserInterface.py" line="5463" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5465" /> + <location filename="../UI/UserInterface.py" line="5524" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Ne peut lancer Qt-Linguist.<br>Vérifier qu'il est disponible en tant que <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5474" /> + <location filename="../UI/UserInterface.py" line="5533" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5509" /> + <location filename="../UI/UserInterface.py" line="5568" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Ne peut lancer Qt-Assistant.<br>Vérifier qu'il est disponible en tant que <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5518" /> + <location filename="../UI/UserInterface.py" line="5577" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5542" /> + <location filename="../UI/UserInterface.py" line="5601" /> <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="5556" /> + <location filename="../UI/UserInterface.py" line="5615" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5635" /> <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> <message> - <location filename="../UI/UserInterface.py" line="5626" /> + <location filename="../UI/UserInterface.py" line="5685" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5683" /> + <location filename="../UI/UserInterface.py" line="5742" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5706" /> + <location filename="../UI/UserInterface.py" line="5765" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Ne peut lancer le navigateur SQL.<br>Vérifier qu'il est disponible en tant que <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5791" /> + <location filename="../UI/UserInterface.py" line="5850" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5822" /> - <location filename="../UI/UserInterface.py" line="5813" /> + <location filename="../UI/UserInterface.py" line="5881" /> + <location filename="../UI/UserInterface.py" line="5872" /> <source>External Tools</source> <translation>Outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5814" /> + <location filename="../UI/UserInterface.py" line="5873" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5823" /> + <location filename="../UI/UserInterface.py" line="5882" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5859" /> + <location filename="../UI/UserInterface.py" line="5918" /> <source>Starting process '{0} {1}'. </source> <translation>Démarrage du processus '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5878" /> + <location filename="../UI/UserInterface.py" line="5937" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5953" /> + <location filename="../UI/UserInterface.py" line="6012" /> <source>Process '{0}' has exited. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6225" /> - <location filename="../UI/UserInterface.py" line="6167" /> - <location filename="../UI/UserInterface.py" line="6126" /> - <location filename="../UI/UserInterface.py" line="6058" /> - <location filename="../UI/UserInterface.py" line="5996" /> + <location filename="../UI/UserInterface.py" line="6284" /> + <location filename="../UI/UserInterface.py" line="6226" /> + <location filename="../UI/UserInterface.py" line="6185" /> + <location filename="../UI/UserInterface.py" line="6117" /> + <location filename="../UI/UserInterface.py" line="6055" /> <source>Documentation Missing</source> <translation>Documentation Manquante</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6226" /> - <location filename="../UI/UserInterface.py" line="6168" /> - <location filename="../UI/UserInterface.py" line="6127" /> - <location filename="../UI/UserInterface.py" line="6059" /> - <location filename="../UI/UserInterface.py" line="5997" /> + <location filename="../UI/UserInterface.py" line="6285" /> + <location filename="../UI/UserInterface.py" line="6227" /> + <location filename="../UI/UserInterface.py" line="6186" /> + <location filename="../UI/UserInterface.py" line="6118" /> + <location filename="../UI/UserInterface.py" line="6056" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6208" /> - <location filename="../UI/UserInterface.py" line="6099" /> + <location filename="../UI/UserInterface.py" line="6267" /> + <location filename="../UI/UserInterface.py" line="6158" /> <source>Documentation</source> <translation>Documentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6100" /> + <location filename="../UI/UserInterface.py" line="6159" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6209" /> + <location filename="../UI/UserInterface.py" line="6268" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6387" /> - <location filename="../UI/UserInterface.py" line="6323" /> + <location filename="../UI/UserInterface.py" line="6446" /> + <location filename="../UI/UserInterface.py" line="6382" /> <source>Start Web Browser</source> <translation>Démarrer le navigateur web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6324" /> + <location filename="../UI/UserInterface.py" line="6383" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6388" /> + <location filename="../UI/UserInterface.py" line="6447" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6430" /> + <location filename="../UI/UserInterface.py" line="6489" /> <source>Open Browser</source> <translation>Ouverture du navigateur</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6431" /> + <location filename="../UI/UserInterface.py" line="6490" /> <source>Could not start a web browser</source> <translation>Impossible de lancer le navigateur web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6682" /> + <location filename="../UI/UserInterface.py" line="6740" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6699" /> + <location filename="../UI/UserInterface.py" line="6757" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6717" /> + <location filename="../UI/UserInterface.py" line="6775" /> <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6909" /> + <location filename="../UI/UserInterface.py" line="6967" /> <source>Read Tasks</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6910" /> + <location filename="../UI/UserInterface.py" line="6968" /> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Le fichier tâche <b>{0}</b> ne peut être lu.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6957" /> + <location filename="../UI/UserInterface.py" line="7015" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6985" /> - <location filename="../UI/UserInterface.py" line="6958" /> + <location filename="../UI/UserInterface.py" line="7043" /> + <location filename="../UI/UserInterface.py" line="7016" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Le fichier de session <b>{0}</b> ne peut être lu.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6984" /> + <location filename="../UI/UserInterface.py" line="7042" /> <source>Read session</source> <translation>Chargement de session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7000" /> + <location filename="../UI/UserInterface.py" line="7058" /> <source>Save Session</source> <translation type="unfinished">Enregistrer la session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7002" /> + <location filename="../UI/UserInterface.py" line="7060" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="7082" /> <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7072" /> + <location filename="../UI/UserInterface.py" line="7130" /> <source>Crash Session found!</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7073" /> + <location filename="../UI/UserInterface.py" line="7131" /> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7374" /> + <location filename="../UI/UserInterface.py" line="7432" /> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7375" /> + <location filename="../UI/UserInterface.py" line="7433" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> n'est pas un fichier.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <source>&Cancel</source> - <translation>&Annuler</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7554" /> - <source>%v/%m</source> - <translation>%v/%m</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7556" /> - <source>Version Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7561" /> - <source>Trying host {0}</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7630" /> - <location filename="../UI/UserInterface.py" line="7623" /> - <location filename="../UI/UserInterface.py" line="7574" /> - <source>Error getting versions information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7575" /> - <source>The versions information cannot not be downloaded because the Internet is <b>not reachable</b>. Please try again later.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7624" /> - <source>The versions information could not be downloaded. Please go online and try again.</source> - <translation>Les informations de versions ne peuvent être téléchargées. Veuillez aller en ligne et réessayer.</translation> - </message> - <message> + <location filename="../UI/UserInterface.py" line="7597" /> + <source>Upgrade available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7598" /> + <source>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7642" /> <location filename="../UI/UserInterface.py" line="7631" /> - <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> - <translation>Les informations de versions ne peuvent être téléchargées depuis 7 jours. Veuillez aller en ligne et réessayer.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7722" /> - <location filename="../UI/UserInterface.py" line="7688" /> - <source>Update available</source> - <translation>Mise à jour disponible</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7723" /> - <location filename="../UI/UserInterface.py" line="7689" /> - <source>The update to <b>{0}</b> of eric is available at <b>{1}</b>. Would you like to get it?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7710" /> - <location filename="../UI/UserInterface.py" line="7700" /> - <source>Update Check</source> - <translation>Vérification de mise à jour</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7701" /> - <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7711" /> - <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7734" /> - <source>eric is up to date</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7735" /> - <source>You are using the latest version of eric</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7741" /> - <source>Error during updates check</source> - <translation>Erreur durant la recherche de mises à jour</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7742" /> - <source>Could not perform updates check.</source> - <translation>Impossible de vérifier les mises à jour.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7763" /> - <source><h3>Available versions</h3><table></source> - <translation><h3>Versions disponibles</h3><table></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7829" /> - <location filename="../UI/UserInterface.py" line="7818" /> <source>First time usage</source> <translation>Première utilisation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7819" /> + <location filename="../UI/UserInterface.py" line="7632" /> <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7830" /> + <location filename="../UI/UserInterface.py" line="7643" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7850" /> + <location filename="../UI/UserInterface.py" line="7663" /> <source>Select Workspace Directory</source> <translation>Sélectionner le répertoire de travail</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8027" /> + <location filename="../UI/UserInterface.py" line="7840" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8028" /> + <location filename="../UI/UserInterface.py" line="7841" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> <message> + <source>&Cancel</source> + <translation type="vanished">&Annuler</translation> + </message> + <message> + <source>%v/%m</source> + <translation type="vanished">%v/%m</translation> + </message> + <message> + <source>The versions information could not be downloaded. Please go online and try again.</source> + <translation type="vanished">Les informations de versions ne peuvent être téléchargées. Veuillez aller en ligne et réessayer.</translation> + </message> + <message> + <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> + <translation type="vanished">Les informations de versions ne peuvent être téléchargées depuis 7 jours. Veuillez aller en ligne et réessayer.</translation> + </message> + <message> + <source>Update available</source> + <translation type="vanished">Mise à jour disponible</translation> + </message> + <message> + <source>Update Check</source> + <translation type="vanished">Vérification de mise à jour</translation> + </message> + <message> + <source>Error during updates check</source> + <translation type="vanished">Erreur durant la recherche de mises à jour</translation> + </message> + <message> + <source>Could not perform updates check.</source> + <translation type="vanished">Impossible de vérifier les mises à jour.</translation> + </message> + <message> + <source><h3>Available versions</h3><table></source> + <translation type="vanished"><h3>Versions disponibles</h3><table></translation> + </message> + <message> + <source>Check for Updates</source> + <translation type="vanished">Rechercher des mises à jour</translation> + </message> + <message> + <source>Check for &Updates...</source> + <translation type="vanished">Rechercher des &mises à jour...</translation> + </message> + <message> + <source>Show downloadable versions</source> + <translation type="vanished">Afficher les versions téléchargeables</translation> + </message> + <message> + <source>Show &downloadable versions...</source> + <translation type="vanished">Afficher les versions &téléchargeables...</translation> + </message> + <message> + <source>Show the versions available for download</source> + <translation type="vanished">Affiche les versions disponibles pour le téléchargement</translation> + </message> + <message> <source>Eric API Documentation</source> <translation type="vanished">Documentation pour les API Eric</translation> </message> @@ -89346,6 +89597,49 @@ </message> </context> <context> + <name>VersionsDialog</name> + <message> + <location filename="../UI/VersionsDialog.py" line="49" /> + <source>Check for Upgrades...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="92" /> + <source>No upgrades available.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="96" /> + <source>Upgrade eric7...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="100" /> + <source><p>An upgrade of <b>eric7</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="105" /> + <source>Upgrade PyQt6...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="109" /> + <source><p>An upgrade of <b>PyQt6</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="114" /> + <source>Upgrade Both...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="128" /> + <source>Check for Upgrades</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>ViewManager</name> <message> <location filename="../HexEdit/HexEditMainWindow.py" line="518" /> @@ -94192,7 +94486,7 @@ <context> <name>VirtualenvInterpreterSelectionDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="45" /> + <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="47" /> <source>Python Interpreter</source> <translation>Interpréteur Python</translation> </message> @@ -94220,54 +94514,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="232" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="243" /> <source>Add Virtual Environment</source> <translation>Ajouter environnement virtuel</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="233" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="244" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation>Un environnement virtuel nommé <b>{0}</b> existe déjà. Faut il le remplacer ?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="295" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="306" /> <source>Change Virtual Environment</source> <translation>Modifier l'environnement virtuel</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="346" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="296" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="307" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="345" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> <source>Rename Virtual Environment</source> <translation>Renommer l'environnement virtuel</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="433" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="369" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="444" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="380" /> <source>{0} - {1}</source> <translation>{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="377" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> <source>Delete Virtual Environments</source> <translation>Supprimer les environnements virtuels</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="378" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Do you really want to delete these virtual environments?</source> <translation>Voulez-vous vraiment supprimer ces environnements virtuels ?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="441" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="452" /> <source>Remove Virtual Environments</source> <translation>Supprimer les environnements virtuels</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="453" /> <source>Do you really want to remove these virtual environments?</source> <translation>Voulez-vous vraiment supprimer ces environnements virtuels ?</translation> </message> @@ -95334,22 +95628,22 @@ <context> <name>WebBrowserPage</name> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="195" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="189" /> <source>Suspicuous URL detected</source> <translation>URL suspectes détectées</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="196" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="190" /> <source><p>The URL <b>{0}</b> was found in the Safe Browsing database.</p>{1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="663" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="657" /> <source>SSL Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="664" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="658" /> <source>This site does not contain SSL information.</source> <translation type="unfinished" /> </message> @@ -96671,12 +96965,12 @@ <translation>Enregistrer la page web</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2282" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2287" /> <source>Quota Request</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2288" /> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished" /> </message>
--- a/eric7/i18n/eric7_it.ts Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/i18n/eric7_it.ts Sat Apr 02 11:23:11 2022 +0200 @@ -1531,6 +1531,26 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader Delay:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Enter the time the upgrader process should wait for eric to exit</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source> s</source> + <translation type="unfinished"> s</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> <source>Reporting</source> <translation>Notifiche</translation> </message> @@ -50537,7 +50557,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="473" /> + <location filename="../Preferences/__init__.py" line="471" /> <location filename="../QScintilla/Lexers/__init__.py" line="415" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished">File Python (*.py *.py3)</translation> @@ -50790,7 +50810,7 @@ <translation>Tutti i file (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="475" /> + <location filename="../Preferences/__init__.py" line="473" /> <location filename="../QScintilla/Lexers/__init__.py" line="585" /> <source>Python3 Files (*.py)</source> <translation>Python3 Files (*.py)</translation> @@ -56905,119 +56925,113 @@ <context> <name>Pip</name> <message> - <location filename="../PipInterface/Pip.py" line="109" /> + <location filename="../PipInterface/Pip.py" line="123" /> <source>python exited with an error ({0}).</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="116" /> + <location filename="../PipInterface/Pip.py" line="130" /> <source>python did not finish within 30 seconds.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="119" /> + <location filename="../PipInterface/Pip.py" line="133" /> <source>python could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="179" /> + <location filename="../PipInterface/Pip.py" line="193" /> <source><project></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="208" /> + <location filename="../PipInterface/Pip.py" line="222" /> <source>Interpreter for Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="209" /> + <location filename="../PipInterface/Pip.py" line="223" /> <source>No interpreter configured for the selected virtual environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="244" /> + <location filename="../PipInterface/Pip.py" line="258" /> <source>Install PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="286" /> + <location filename="../PipInterface/Pip.py" line="300" /> <source>Repair PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="359" /> - <location filename="../PipInterface/Pip.py" line="311" /> + <location filename="../PipInterface/Pip.py" line="383" /> <source>Upgrade Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="312" /> - <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/Pip.py" line="399" /> + <location filename="../PipInterface/Pip.py" line="423" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="428" /> + <location filename="../PipInterface/Pip.py" line="452" /> <source>Install Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="491" /> - <location filename="../PipInterface/Pip.py" line="460" /> - <location filename="../PipInterface/Pip.py" line="451" /> + <location filename="../PipInterface/Pip.py" line="515" /> + <location filename="../PipInterface/Pip.py" line="484" /> + <location filename="../PipInterface/Pip.py" line="475" /> <source>Uninstall Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="492" /> - <location filename="../PipInterface/Pip.py" line="452" /> + <location filename="../PipInterface/Pip.py" line="516" /> + <location filename="../PipInterface/Pip.py" line="476" /> <source>Do you really want to uninstall these packages?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="503" /> + <location filename="../PipInterface/Pip.py" line="527" /> <source>Uninstall Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="721" /> + <location filename="../PipInterface/Pip.py" line="844" /> <source>Cache Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="746" /> - <location filename="../PipInterface/Pip.py" line="738" /> + <location filename="../PipInterface/Pip.py" line="869" /> + <location filename="../PipInterface/Pip.py" line="861" /> <source>List Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="739" /> + <location filename="../PipInterface/Pip.py" line="862" /> <source>Enter a file pattern (empty for all):</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="770" /> - <location filename="../PipInterface/Pip.py" line="764" /> + <location filename="../PipInterface/Pip.py" line="893" /> + <location filename="../PipInterface/Pip.py" line="887" /> <source>Remove Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="765" /> + <location filename="../PipInterface/Pip.py" line="888" /> <source>Enter a file pattern:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="793" /> - <location filename="../PipInterface/Pip.py" line="788" /> + <location filename="../PipInterface/Pip.py" line="916" /> + <location filename="../PipInterface/Pip.py" line="911" /> <source>Purge Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="789" /> + <location filename="../PipInterface/Pip.py" line="912" /> <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source> <translation type="unfinished" /> </message> @@ -57144,18 +57158,18 @@ <location filename="../PipInterface/PipFreezeDialog.py" line="230" /> <location filename="../PipInterface/PipFreezeDialog.py" line="210" /> <location filename="../PipInterface/PipFreezeDialog.py" line="198" /> - <location filename="../PipInterface/PipFreezeDialog.py" line="118" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="122" /> <source>Generate Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="119" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="123" /> <source>The requirements were changed. Do you want to overwrite these changes?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="160" /> - <source>No output generated by 'pip freeze'.</source> + <location filename="../PipInterface/PipFreezeDialog.py" line="158" /> + <source>No package specifiers generated by 'pip freeze'.</source> <translation type="unfinished" /> </message> <message> @@ -57185,6 +57199,16 @@ </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>Select to show requirements for packages installed to the user-site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Requirements File:</source> <translation type="unfinished" /> </message> @@ -57245,6 +57269,65 @@ </message> </context> <context> + <name>PipLicensesDialog</name> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package Licenses</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Local packages only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Version</source> + <translation type="unfinished">Versione</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>License</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Count</source> + <translation type="unfinished">Contatore</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="61" /> + <source>Licenses of "{0}"</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="65" /> + <source>No environment specified.</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PipListDialog</name> <message> <source>Version</source> @@ -57524,11 +57607,17 @@ <name>PipPackagesWidget</name> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Toggle to show or hide the dependency tree view</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only locally-installed packages</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Local packages only</source> <translation type="unfinished" /> </message> @@ -57549,11 +57638,23 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>User-Site only</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Perform vulnerability checks based on "Safety DB".</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Vulnerability Check</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Package</source> @@ -57561,12 +57662,18 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Installed Version</source> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Installed</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Available Version</source> + <source>Available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Affected</source> <translation type="unfinished" /> </message> <message> @@ -57612,6 +57719,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Press to show details for the selected entry</source> <translation type="unfinished" /> </message> @@ -57622,11 +57730,6 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Press to start the search</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Enter the search term for the package name</source> <translation type="unfinished" /> </message> @@ -57637,6 +57740,16 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to start the search</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to search for more packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Version</source> <translation type="unfinished">Versione</translation> </message> @@ -57661,104 +57774,150 @@ <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="169" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>View Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package requires other packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Requires</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package is required by others</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required By</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to refresh the dependency tree</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="185" /> <source>pip Menu</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="195" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="230" /> <source>Name:</source> <translation type="unfinished">Nome:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="196" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="231" /> <source>Version:</source> <translation type="unfinished">Versione:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="197" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="232" /> <source>Location:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="198" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="233" /> <source>Requires:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="199" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="234" /> <source>Summary:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="200" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="235" /> <source>Homepage:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="201" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="236" /> <source>Author:</source> <translation type="unfinished">Autore:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="202" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="237" /> <source>Author Email:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="203" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="238" /> <source>License:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="204" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="239" /> <source>Metadata Version:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="205" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="240" /> <source>Installer:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="206" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="241" /> <source>Classifiers:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="207" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="242" /> <source>Entry Points:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="208" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="243" /> <source>Files:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="375" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="427" /> <source>Getting installed packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="390" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="443" /> <source>Getting outdated packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="975" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="812" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="790" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1141" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="972" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="961" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="930" /> <source>Search PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="791" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="931" /> <source><p>Received an error while searching for <b>{0}</b>.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../PipInterface/PipPackagesWidget.py" line="805" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="946" /> <source>%n package(s) found.</source> <translation type="unfinished"> <numerusform /> @@ -57766,116 +57925,157 @@ </translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="807" /> - <source>Showing first 20 packages found.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="815" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="813" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="950" /> + <source>Showing first {0} packages found.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="966" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="962" /> <source><p>There were no results for <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="976" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="973" /> + <source><p>There were no more results for <b>{0}</b>.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1142" /> <source><p>No package details info for <b>{0}</b> available.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="990" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1156" /> <source>Install Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="993" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1159" /> <source>Install Pip to User-Site</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="996" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1162" /> <source>Repair Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1116" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1000" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1299" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1166" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1003" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1169" /> <source>Install Local Package</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1007" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1173" /> <source>Install Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1010" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1176" /> <source>Re-Install Selected Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1013" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1179" /> <source>Uninstall Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1016" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1182" /> <source>Generate Requirements...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1020" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1186" /> + <source>Show Licenses...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1190" /> + <source>Check Vulnerabilities</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1194" /> + <source>Update Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1198" /> <source>Show Cache Info...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1023" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1201" /> <source>Show Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1026" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1204" /> <source>Remove Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1029" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1207" /> <source>Purge Cache...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1034" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1212" /> <source>Edit User Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1037" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1215" /> <source>Edit Environment Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1042" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1220" /> <source>Configure...</source> <translation type="unfinished">Configura...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1237" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1224" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1213" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1421" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1408" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1397" /> <source>Edit Configuration</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1238" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1225" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1214" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1422" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1409" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1398" /> <source>No valid configuration path determined. Aborting</source> <translation type="unfinished" /> </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1576" /> + <source>{0} {1}</source> + <comment>package name, package version</comment> + <translation type="unfinished">{0} {1}</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1598" /> + <source>Affected Version:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1601" /> + <source>Advisory:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1716" /> + <source>any</source> + <translation type="unfinished" /> + </message> </context> <context> <name>PipPage</name> @@ -57885,6 +58085,11 @@ <translation type="unfinished" /> </message> <message> + <location filename="../Preferences/ConfigurationPages/PipPage.py" line="34" /> + <source><b>Note:</b> Leave empty to use the default Safety DB URL ({0}).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source><b>Configure pip</b></source> <translation type="unfinished" /> @@ -57901,6 +58106,36 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Vulnerability Checks</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Safety DB URL:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the base URL for the Safety DB mirror to be used</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Cache Validity:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source> hours</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source>Environment</source> <translation type="unfinished" /> </message> @@ -57927,6 +58162,19 @@ </message> </context> <context> + <name>PipVulnerabilityChecker</name> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="219" /> + <source>Fetching Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="220" /> + <source><p>The vulnerability database <b>{0}</b> could not be loaded from <b>{1}</b>.</p><p>The vulnerability check is not available.</p></source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PixmapDiagram</name> <message> <location filename="../Graphics/PixmapDiagram.py" line="164" /> @@ -58340,32 +58588,32 @@ <translation>Il modulo manca dell'attributo 'pluginType' e/oppure 'pluginTypename'.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="445" /> + <location filename="../PluginManager/PluginManager.py" line="449" /> <source>Module failed to load. Error: {0}</source> <translation>Il modulo ha fallito il caricamento. Errore: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="622" /> + <location filename="../PluginManager/PluginManager.py" line="626" /> <source>Incompatible plugin activation method.</source> <translation>Metodo di attivazione del plugin incompatibile.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1204" /> + <location filename="../PluginManager/PluginManager.py" line="1208" /> <source>Plugin Manager Error</source> <translation>Errore del gestore dei Plugin</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1205" /> + <location filename="../PluginManager/PluginManager.py" line="1209" /> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>La directory di download dei plugin <b>{0}</b> non può essere creata. Per favore configurarla con il dialogo di configurazione.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1271" /> + <location filename="../PluginManager/PluginManager.py" line="1275" /> <source>Error downloading file</source> <translation>Errone nello scaricamento del file</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1272" /> + <location filename="../PluginManager/PluginManager.py" line="1276" /> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>Non posso scaricare il file richiesto da {0}</p><p>Errore: {1}</p></translation> </message> @@ -58530,6 +58778,21 @@ <source>Edit URL</source> <translation type="unfinished">Modifica URL</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Startup Behavior</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Select, to check for missing plugin dependencies at startup and install them</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Automatic dependencies installation</source> + <translation type="unfinished" /> + </message> </context> <context> <name>PluginRepositoryDialog</name> @@ -59206,18 +59469,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1654" /> + <location filename="../Preferences/__init__.py" line="1658" /> <source>Export Preferences</source> <translation>Esporta Preferenze</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1682" /> - <location filename="../Preferences/__init__.py" line="1656" /> + <location filename="../Preferences/__init__.py" line="1686" /> + <location filename="../Preferences/__init__.py" line="1660" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>File proprietà (*.ini);;Tutti i file(*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> + <location filename="../Preferences/__init__.py" line="1684" /> <source>Import Preferences</source> <translation>Importa Preferenze</translation> </message> @@ -85760,7 +86023,17 @@ <translation type="unfinished"><h3>Numeri di versione</h3><table></translation> </message> <message> - <location filename="../Tools/TrayStarter.py" line="582" /> + <location filename="../Tools/TrayStarter.py" line="600" /> + <source>Desktop</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="603" /> + <source>Session Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="605" /> <source></table></source> <translation type="unfinished"></table></translation> </message> @@ -87367,2634 +87640,2588 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="256" /> + <location filename="../UI/UserInterface.py" line="253" /> <source>Initializing Basic Services...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="297" /> + <location filename="../UI/UserInterface.py" line="294" /> <source>Initializing Plugin Manager...</source> <translation>Inizializzazione Gestore Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="304" /> + <location filename="../UI/UserInterface.py" line="301" /> <source>Generating Main User Interface...</source> <translation>Generazione interfaccia utente principale...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="346" /> + <location filename="../UI/UserInterface.py" line="343" /> <source>Setting up connections...</source> <translation>Impostazione connessioni...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="593" /> + <location filename="../UI/UserInterface.py" line="590" /> <source>Initializing Tools...</source> <translation>Inizializzazione strumenti...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="603" /> + <location filename="../UI/UserInterface.py" line="600" /> <source>Registering Objects...</source> <translation>Registrazione Oggetti...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="644" /> + <location filename="../UI/UserInterface.py" line="636" /> <source>Initializing Actions...</source> <translation>Inizializzazione Azioni...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="646" /> + <location filename="../UI/UserInterface.py" line="638" /> <source>Initializing Menus...</source> <translation>Inizializzazione Menù...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="648" /> + <location filename="../UI/UserInterface.py" line="640" /> <source>Initializing Toolbars...</source> <translation>Inizializzazione barre degli strumenti...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="650" /> + <location filename="../UI/UserInterface.py" line="642" /> <source>Initializing Statusbar...</source> <translation>Inizializzazione barra di stato...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="678" /> + <location filename="../UI/UserInterface.py" line="670" /> <source>Initializing Single Application Server...</source> <translation>Inizializzazione Single Application Server...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="676" /> + <source>Initializing Plugins...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="679" /> + <source>Activating Plugins...</source> + <translation>Attivazione Plugin...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="681" /> + <source>Generating Plugins Toolbars...</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="684" /> - <source>Initializing Plugins...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="687" /> - <source>Activating Plugins...</source> - <translation>Attivazione Plugin...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="689" /> - <source>Generating Plugins Toolbars...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="692" /> <source>Cleaning Plugins Download Area...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="703" /> + <location filename="../UI/UserInterface.py" line="695" /> <source>Restoring Toolbarmanager...</source> <translation>Ripristino toolbarmanager...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="712" /> + <location filename="../UI/UserInterface.py" line="704" /> <source>Setting View Profile...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="725" /> + <location filename="../UI/UserInterface.py" line="717" /> <source>Reading Tasks...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="730" /> + <location filename="../UI/UserInterface.py" line="722" /> <source>Reading Templates...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="735" /> + <location filename="../UI/UserInterface.py" line="727" /> <source>Starting Debugger...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2041" /> - <location filename="../UI/UserInterface.py" line="1065" /> + <location filename="../UI/UserInterface.py" line="2033" /> + <location filename="../UI/UserInterface.py" line="1057" /> <source>Left Toolbox</source> <translation type="unfinished">Barra degli strumenti sinistra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2072" /> - <location filename="../UI/UserInterface.py" line="1073" /> + <location filename="../UI/UserInterface.py" line="2064" /> + <location filename="../UI/UserInterface.py" line="1065" /> <source>Horizontal Toolbox</source> <translation>Barra dei comandi orizzontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2056" /> - <location filename="../UI/UserInterface.py" line="1081" /> + <location filename="../UI/UserInterface.py" line="2048" /> + <location filename="../UI/UserInterface.py" line="1073" /> <source>Right Toolbox</source> <translation type="unfinished">Barra degli strumenti destra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915" /> - <location filename="../UI/UserInterface.py" line="1237" /> - <location filename="../UI/UserInterface.py" line="1089" /> + <location filename="../UI/UserInterface.py" line="1907" /> + <location filename="../UI/UserInterface.py" line="1229" /> + <location filename="../UI/UserInterface.py" line="1081" /> <source>Multiproject-Viewer</source> <translation>Multiproject-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1898" /> - <location filename="../UI/UserInterface.py" line="1242" /> - <location filename="../UI/UserInterface.py" line="1093" /> + <location filename="../UI/UserInterface.py" line="1890" /> + <location filename="../UI/UserInterface.py" line="1234" /> + <location filename="../UI/UserInterface.py" line="1085" /> <source>Project-Viewer</source> <translation>Project-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2326" /> - <location filename="../UI/UserInterface.py" line="2325" /> - <location filename="../UI/UserInterface.py" line="1247" /> - <location filename="../UI/UserInterface.py" line="1097" /> + <location filename="../UI/UserInterface.py" line="2318" /> + <location filename="../UI/UserInterface.py" line="2317" /> + <location filename="../UI/UserInterface.py" line="1239" /> + <location filename="../UI/UserInterface.py" line="1089" /> <source>Find/Replace In Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2344" /> - <location filename="../UI/UserInterface.py" line="2343" /> - <location filename="../UI/UserInterface.py" line="1252" /> - <location filename="../UI/UserInterface.py" line="1101" /> + <location filename="../UI/UserInterface.py" line="2336" /> + <location filename="../UI/UserInterface.py" line="2335" /> + <location filename="../UI/UserInterface.py" line="1244" /> + <location filename="../UI/UserInterface.py" line="1093" /> <source>Find File</source> <translation type="unfinished">Trova file</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1257" /> - <location filename="../UI/UserInterface.py" line="1105" /> + <location filename="../UI/UserInterface.py" line="1249" /> + <location filename="../UI/UserInterface.py" line="1097" /> <source>VCS Status</source> <translation type="unfinished">Stato VCS</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2022" /> - <location filename="../UI/UserInterface.py" line="1263" /> - <location filename="../UI/UserInterface.py" line="1110" /> + <location filename="../UI/UserInterface.py" line="2014" /> + <location filename="../UI/UserInterface.py" line="1255" /> + <location filename="../UI/UserInterface.py" line="1102" /> <source>Template-Viewer</source> <translation>Templates-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1968" /> - <location filename="../UI/UserInterface.py" line="1269" /> - <location filename="../UI/UserInterface.py" line="1115" /> + <location filename="../UI/UserInterface.py" line="1960" /> + <location filename="../UI/UserInterface.py" line="1261" /> + <location filename="../UI/UserInterface.py" line="1107" /> <source>File-Browser</source> <translation>File Browser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1275" /> - <location filename="../UI/UserInterface.py" line="1120" /> + <location filename="../UI/UserInterface.py" line="1267" /> + <location filename="../UI/UserInterface.py" line="1112" /> <source>Symbols</source> <translation>Simboli</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1933" /> - <location filename="../UI/UserInterface.py" line="1295" /> - <location filename="../UI/UserInterface.py" line="1290" /> - <location filename="../UI/UserInterface.py" line="1128" /> + <location filename="../UI/UserInterface.py" line="1925" /> + <location filename="../UI/UserInterface.py" line="1287" /> + <location filename="../UI/UserInterface.py" line="1282" /> + <location filename="../UI/UserInterface.py" line="1120" /> <source>Debug-Viewer</source> <translation>Debug-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2215" /> - <location filename="../UI/UserInterface.py" line="2214" /> - <location filename="../UI/UserInterface.py" line="1301" /> - <location filename="../UI/UserInterface.py" line="1133" /> + <location filename="../UI/UserInterface.py" line="2207" /> + <location filename="../UI/UserInterface.py" line="2206" /> + <location filename="../UI/UserInterface.py" line="1293" /> + <location filename="../UI/UserInterface.py" line="1125" /> <source>Code Documentation Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2380" /> - <location filename="../UI/UserInterface.py" line="2379" /> - <location filename="../UI/UserInterface.py" line="1307" /> - <location filename="../UI/UserInterface.py" line="1138" /> + <location filename="../UI/UserInterface.py" line="2372" /> + <location filename="../UI/UserInterface.py" line="2371" /> + <location filename="../UI/UserInterface.py" line="1299" /> + <location filename="../UI/UserInterface.py" line="1130" /> <source>Help Viewer</source> <translation type="unfinished">Visualizzatore dell'Aiuto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3103" /> - <location filename="../UI/UserInterface.py" line="2289" /> - <location filename="../UI/UserInterface.py" line="2288" /> - <location filename="../UI/UserInterface.py" line="1312" /> - <location filename="../UI/UserInterface.py" line="1142" /> + <location filename="../UI/UserInterface.py" line="3069" /> + <location filename="../UI/UserInterface.py" line="2281" /> + <location filename="../UI/UserInterface.py" line="2280" /> + <location filename="../UI/UserInterface.py" line="1304" /> + <location filename="../UI/UserInterface.py" line="1134" /> <source>Plugin Repository</source> <translation>Repository Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2307" /> - <location filename="../UI/UserInterface.py" line="2306" /> - <location filename="../UI/UserInterface.py" line="1317" /> - <location filename="../UI/UserInterface.py" line="1146" /> + <location filename="../UI/UserInterface.py" line="2299" /> + <location filename="../UI/UserInterface.py" line="2298" /> + <location filename="../UI/UserInterface.py" line="1309" /> + <location filename="../UI/UserInterface.py" line="1138" /> <source>Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2235" /> - <location filename="../UI/UserInterface.py" line="2234" /> - <location filename="../UI/UserInterface.py" line="1322" /> - <location filename="../UI/UserInterface.py" line="1151" /> + <location filename="../UI/UserInterface.py" line="2227" /> + <location filename="../UI/UserInterface.py" line="2226" /> + <location filename="../UI/UserInterface.py" line="1314" /> + <location filename="../UI/UserInterface.py" line="1143" /> <source>PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2253" /> - <location filename="../UI/UserInterface.py" line="2252" /> - <location filename="../UI/UserInterface.py" line="1327" /> - <location filename="../UI/UserInterface.py" line="1156" /> + <location filename="../UI/UserInterface.py" line="2245" /> + <location filename="../UI/UserInterface.py" line="2244" /> + <location filename="../UI/UserInterface.py" line="1319" /> + <location filename="../UI/UserInterface.py" line="1148" /> <source>Conda</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1332" /> - <location filename="../UI/UserInterface.py" line="1161" /> + <location filename="../UI/UserInterface.py" line="1324" /> + <location filename="../UI/UserInterface.py" line="1153" /> <source>Cooperation</source> <translation>Cooperazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2158" /> - <location filename="../UI/UserInterface.py" line="1337" /> - <location filename="../UI/UserInterface.py" line="1166" /> + <location filename="../UI/UserInterface.py" line="2150" /> + <location filename="../UI/UserInterface.py" line="1329" /> + <location filename="../UI/UserInterface.py" line="1158" /> <source>IRC</source> <translation type="unfinished">IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2271" /> - <location filename="../UI/UserInterface.py" line="2270" /> + <location filename="../UI/UserInterface.py" line="2263" /> + <location filename="../UI/UserInterface.py" line="2262" /> + <location filename="../UI/UserInterface.py" line="1335" /> + <location filename="../UI/UserInterface.py" line="1163" /> + <source>MicroPython</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1943" /> <location filename="../UI/UserInterface.py" line="1343" /> <location filename="../UI/UserInterface.py" line="1171" /> - <source>MicroPython</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1951" /> - <location filename="../UI/UserInterface.py" line="1351" /> - <location filename="../UI/UserInterface.py" line="1179" /> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003" /> - <location filename="../UI/UserInterface.py" line="1355" /> - <location filename="../UI/UserInterface.py" line="1183" /> + <location filename="../UI/UserInterface.py" line="1995" /> + <location filename="../UI/UserInterface.py" line="1347" /> + <location filename="../UI/UserInterface.py" line="1175" /> <source>Task-Viewer</source> <translation>Task-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1985" /> - <location filename="../UI/UserInterface.py" line="1359" /> - <location filename="../UI/UserInterface.py" line="1187" /> + <location filename="../UI/UserInterface.py" line="1977" /> + <location filename="../UI/UserInterface.py" line="1351" /> + <location filename="../UI/UserInterface.py" line="1179" /> <source>Log-Viewer</source> <translation>Log-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1364" /> - <location filename="../UI/UserInterface.py" line="1192" /> + <location filename="../UI/UserInterface.py" line="1356" /> + <location filename="../UI/UserInterface.py" line="1184" /> <source>Numbers</source> <translation>Numeri</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752" /> + <location filename="../UI/UserInterface.py" line="1744" /> <source>{0} - Passive Mode</source> <translation>{0} - Passive Debug Mode</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1759" /> - <location filename="../UI/UserInterface.py" line="1755" /> + <location filename="../UI/UserInterface.py" line="1751" /> + <location filename="../UI/UserInterface.py" line="1747" /> <source>{0} - {1} - Passive Mode</source> <translation>{0} -{1} Passive Debug Mode</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1763" /> + <location filename="../UI/UserInterface.py" line="1755" /> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} -{1} - {2} - Passive Debug Mode</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1786" /> + <location filename="../UI/UserInterface.py" line="1778" /> <source>Quit</source> <translation>Esci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1788" /> + <location filename="../UI/UserInterface.py" line="1780" /> <source>&Quit</source> <translation>&Esci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1789" /> + <location filename="../UI/UserInterface.py" line="1781" /> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1791" /> + <location filename="../UI/UserInterface.py" line="1783" /> <source>Quit the IDE</source> <translation>Esci dall'IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1792" /> + <location filename="../UI/UserInterface.py" line="1784" /> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Esci dall'IDE</b><p>Esci dall'IDE. Ogni cambiamento non salvato dovrebbe essere salvato prima. Ogni programma python in debug verrà fermato e le impostazioni scritte su disco.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1805" /> - <location filename="../UI/UserInterface.py" line="1803" /> + <location filename="../UI/UserInterface.py" line="1797" /> + <location filename="../UI/UserInterface.py" line="1795" /> <source>Restart</source> <translation type="unfinished">Riavvio</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806" /> + <location filename="../UI/UserInterface.py" line="1798" /> <source>Ctrl+Shift+Q</source> <comment>File|Quit</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1808" /> + <location filename="../UI/UserInterface.py" line="1800" /> <source>Restart the IDE</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1809" /> + <location filename="../UI/UserInterface.py" line="1801" /> <source><b>Restart the IDE</b><p>This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1822" /> - <location filename="../UI/UserInterface.py" line="1819" /> + <location filename="../UI/UserInterface.py" line="1814" /> + <location filename="../UI/UserInterface.py" line="1811" /> <source>Save session</source> <translation>Salva sessione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1820" /> + <location filename="../UI/UserInterface.py" line="1812" /> <source>Save session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1823" /> + <location filename="../UI/UserInterface.py" line="1815" /> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7022" /> - <location filename="../UI/UserInterface.py" line="1835" /> - <location filename="../UI/UserInterface.py" line="1832" /> + <location filename="../UI/UserInterface.py" line="7080" /> + <location filename="../UI/UserInterface.py" line="1827" /> + <location filename="../UI/UserInterface.py" line="1824" /> <source>Load session</source> <translation type="unfinished">Carica sessione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1833" /> + <location filename="../UI/UserInterface.py" line="1825" /> <source>Load session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1836" /> + <location filename="../UI/UserInterface.py" line="1828" /> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1845" /> + <location filename="../UI/UserInterface.py" line="1837" /> <source>New Window</source> <translation type="unfinished">Nuova finestra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1847" /> + <location filename="../UI/UserInterface.py" line="1839" /> <source>New &Window</source> <translation type="unfinished">Nuova &Finestra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848" /> + <location filename="../UI/UserInterface.py" line="1840" /> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1850" /> + <location filename="../UI/UserInterface.py" line="1842" /> <source>Open a new eric instance</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1852" /> + <location filename="../UI/UserInterface.py" line="1844" /> <source><b>New Window</b><p>This opens a new instance of the eric IDE.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1866" /> - <location filename="../UI/UserInterface.py" line="1864" /> + <location filename="../UI/UserInterface.py" line="1858" /> + <location filename="../UI/UserInterface.py" line="1856" /> <source>Edit Profile</source> <translation>Modifica profilo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1869" /> + <location filename="../UI/UserInterface.py" line="1861" /> <source>Activate the edit view profile</source> <translation>Attiva il profilo della vista di editing</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871" /> + <location filename="../UI/UserInterface.py" line="1863" /> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Profilo di edit</p><p>Attiva il "Profilo di Edit". Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo "Configura Profili.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1883" /> - <location filename="../UI/UserInterface.py" line="1881" /> + <location filename="../UI/UserInterface.py" line="1875" /> + <location filename="../UI/UserInterface.py" line="1873" /> <source>Debug Profile</source> <translation>Profilo Debug</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1887" /> + <location filename="../UI/UserInterface.py" line="1879" /> <source>Activate the debug view profile</source> <translation>Attiva profilo Debug</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1888" /> + <location filename="../UI/UserInterface.py" line="1880" /> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Profilo di debug</p><p>Attiva il "Profilo di Debug". Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo "Configura Profili.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899" /> + <location filename="../UI/UserInterface.py" line="1891" /> <source>&Project-Viewer</source> <translation>&Project-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1900" /> + <location filename="../UI/UserInterface.py" line="1892" /> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1903" /> + <location filename="../UI/UserInterface.py" line="1895" /> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1905" /> + <location filename="../UI/UserInterface.py" line="1897" /> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1916" /> + <location filename="../UI/UserInterface.py" line="1908" /> <source>&Multiproject-Viewer</source> <translation>&Multiproject-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1917" /> + <location filename="../UI/UserInterface.py" line="1909" /> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920" /> + <location filename="../UI/UserInterface.py" line="1912" /> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1922" /> + <location filename="../UI/UserInterface.py" line="1914" /> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1934" /> + <location filename="../UI/UserInterface.py" line="1926" /> <source>&Debug-Viewer</source> <translation>&Debug-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935" /> + <location filename="../UI/UserInterface.py" line="1927" /> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1938" /> + <location filename="../UI/UserInterface.py" line="1930" /> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1940" /> + <location filename="../UI/UserInterface.py" line="1932" /> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1952" /> + <location filename="../UI/UserInterface.py" line="1944" /> <source>&Shell</source> <translation>&Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1953" /> + <location filename="../UI/UserInterface.py" line="1945" /> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1956" /> + <location filename="../UI/UserInterface.py" line="1948" /> <source>Switch the input focus to the Shell window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1958" /> + <location filename="../UI/UserInterface.py" line="1950" /> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1969" /> + <location filename="../UI/UserInterface.py" line="1961" /> <source>&File-Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1970" /> + <location filename="../UI/UserInterface.py" line="1962" /> <source>Alt+Shift+F</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1973" /> + <location filename="../UI/UserInterface.py" line="1965" /> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1975" /> + <location filename="../UI/UserInterface.py" line="1967" /> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1986" /> + <location filename="../UI/UserInterface.py" line="1978" /> <source>Lo&g-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1987" /> + <location filename="../UI/UserInterface.py" line="1979" /> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1990" /> + <location filename="../UI/UserInterface.py" line="1982" /> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1992" /> + <location filename="../UI/UserInterface.py" line="1984" /> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2004" /> + <location filename="../UI/UserInterface.py" line="1996" /> <source>&Task-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2005" /> + <location filename="../UI/UserInterface.py" line="1997" /> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2008" /> + <location filename="../UI/UserInterface.py" line="2000" /> <source>Switch the input focus to the Task-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2010" /> + <location filename="../UI/UserInterface.py" line="2002" /> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2023" /> + <location filename="../UI/UserInterface.py" line="2015" /> <source>Templ&ate-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2024" /> + <location filename="../UI/UserInterface.py" line="2016" /> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2027" /> + <location filename="../UI/UserInterface.py" line="2019" /> <source>Switch the input focus to the Template-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2029" /> + <location filename="../UI/UserInterface.py" line="2021" /> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2042" /> + <location filename="../UI/UserInterface.py" line="2034" /> <source>&Left Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2043" /> + <location filename="../UI/UserInterface.py" line="2035" /> <source>Toggle the Left Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2044" /> + <location filename="../UI/UserInterface.py" line="2036" /> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2057" /> + <location filename="../UI/UserInterface.py" line="2049" /> <source>&Right Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2059" /> + <location filename="../UI/UserInterface.py" line="2051" /> <source>Toggle the Right Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2060" /> + <location filename="../UI/UserInterface.py" line="2052" /> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2073" /> + <location filename="../UI/UserInterface.py" line="2065" /> <source>&Horizontal Toolbox</source> <translation>Toolbox &Orizzontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2075" /> + <location filename="../UI/UserInterface.py" line="2067" /> <source>Toggle the Horizontal Toolbox window</source> <translation>Abilita/Disabilita una finestra la toolbox orizzontale</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2077" /> + <location filename="../UI/UserInterface.py" line="2069" /> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra della toolbox orizzontale</b><p>Se la finestra della toolbox orizzontale è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2089" /> + <location filename="../UI/UserInterface.py" line="2081" /> <source>Left Sidebar</source> <translation>Barra laterale sinistra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2090" /> + <location filename="../UI/UserInterface.py" line="2082" /> <source>&Left Sidebar</source> <translation>Barra &laterale sinistra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2092" /> + <location filename="../UI/UserInterface.py" line="2084" /> <source>Toggle the left sidebar window</source> <translation>Abilita/Disabilita la finestra della barra laterale sinistra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2093" /> + <location filename="../UI/UserInterface.py" line="2085" /> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra della barra laterale sinistra</b><p>Se la finestra della barra laterale sinistra è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2105" /> + <location filename="../UI/UserInterface.py" line="2097" /> <source>Right Sidebar</source> <translation type="unfinished">Barra laterale destra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2106" /> + <location filename="../UI/UserInterface.py" line="2098" /> <source>&Right Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2108" /> + <location filename="../UI/UserInterface.py" line="2100" /> <source>Toggle the right sidebar window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2110" /> + <location filename="../UI/UserInterface.py" line="2102" /> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2122" /> + <location filename="../UI/UserInterface.py" line="2114" /> <source>Bottom Sidebar</source> <translation>Barra in basso</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2123" /> + <location filename="../UI/UserInterface.py" line="2115" /> <source>&Bottom Sidebar</source> <translation>Barra in &basso</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2125" /> + <location filename="../UI/UserInterface.py" line="2117" /> <source>Toggle the bottom sidebar window</source> <translation>Abilita/Disabilita la finestra della barra in basso</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2127" /> + <location filename="../UI/UserInterface.py" line="2119" /> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra della barra in basso</b><p>Se la finestra della barra in basso è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139" /> + <location filename="../UI/UserInterface.py" line="2131" /> <source>Cooperation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2140" /> + <location filename="../UI/UserInterface.py" line="2132" /> <source>Co&operation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2141" /> + <location filename="../UI/UserInterface.py" line="2133" /> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144" /> + <location filename="../UI/UserInterface.py" line="2136" /> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2146" /> + <location filename="../UI/UserInterface.py" line="2138" /> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2159" /> + <location filename="../UI/UserInterface.py" line="2151" /> <source>&IRC</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2160" /> + <location filename="../UI/UserInterface.py" line="2152" /> <source>Ctrl+Alt+Shift+I</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2163" /> + <location filename="../UI/UserInterface.py" line="2155" /> <source>Switch the input focus to the IRC window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2165" /> + <location filename="../UI/UserInterface.py" line="2157" /> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2176" /> + <location filename="../UI/UserInterface.py" line="2168" /> <source>Symbols-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2177" /> + <location filename="../UI/UserInterface.py" line="2169" /> <source>S&ymbols-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2178" /> + <location filename="../UI/UserInterface.py" line="2170" /> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2181" /> + <location filename="../UI/UserInterface.py" line="2173" /> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2183" /> + <location filename="../UI/UserInterface.py" line="2175" /> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2195" /> + <location filename="../UI/UserInterface.py" line="2187" /> <source>Numbers-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2196" /> + <location filename="../UI/UserInterface.py" line="2188" /> <source>Num&bers-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2197" /> + <location filename="../UI/UserInterface.py" line="2189" /> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2200" /> + <location filename="../UI/UserInterface.py" line="2192" /> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2202" /> + <location filename="../UI/UserInterface.py" line="2194" /> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2216" /> + <location filename="../UI/UserInterface.py" line="2208" /> <source>Ctrl+Alt+Shift+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2219" /> + <location filename="../UI/UserInterface.py" line="2211" /> <source>Switch the input focus to the Code Documentation Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2222" /> + <location filename="../UI/UserInterface.py" line="2214" /> <source><b>Code Documentation Viewer</b><p>This switches the input focus to the Code Documentation Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2236" /> + <location filename="../UI/UserInterface.py" line="2228" /> <source>Ctrl+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2239" /> + <location filename="../UI/UserInterface.py" line="2231" /> <source>Switch the input focus to the PyPI window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2241" /> + <location filename="../UI/UserInterface.py" line="2233" /> <source><b>PyPI</b><p>This switches the input focus to the PyPI window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2254" /> + <location filename="../UI/UserInterface.py" line="2246" /> <source>Ctrl+Alt+Shift+C</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2257" /> + <location filename="../UI/UserInterface.py" line="2249" /> <source>Switch the input focus to the Conda window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2259" /> + <location filename="../UI/UserInterface.py" line="2251" /> <source><b>Conda</b><p>This switches the input focus to the Conda window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2272" /> + <location filename="../UI/UserInterface.py" line="2264" /> <source>Ctrl+Alt+Shift+M</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2275" /> + <location filename="../UI/UserInterface.py" line="2267" /> <source>Switch the input focus to the MicroPython window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2277" /> + <location filename="../UI/UserInterface.py" line="2269" /> <source><b>MicroPython</b><p>This switches the input focus to the MicroPython window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2290" /> + <location filename="../UI/UserInterface.py" line="2282" /> <source>Ctrl+Alt+Shift+R</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2293" /> + <location filename="../UI/UserInterface.py" line="2285" /> <source>Switch the input focus to the Plugin Repository window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2295" /> + <location filename="../UI/UserInterface.py" line="2287" /> <source><b>Plugin Repository</b><p>This switches the input focus to the Plugin Repository window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2308" /> + <location filename="../UI/UserInterface.py" line="2300" /> <source>Ctrl+Alt+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2311" /> + <location filename="../UI/UserInterface.py" line="2303" /> <source>Switch the input focus to the Virtual Environments Manager window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2314" /> + <location filename="../UI/UserInterface.py" line="2306" /> <source><b>Virtual Environments</b><p>This switches the input focus to the Virtual Environments Manager window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2327" /> + <location filename="../UI/UserInterface.py" line="2319" /> <source>Ctrl+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2330" /> + <location filename="../UI/UserInterface.py" line="2322" /> <source>Switch the input focus to the Find/Replace In Files window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2332" /> + <location filename="../UI/UserInterface.py" line="2324" /> <source><b>Find/Replace In Files</b><p>This switches the input focus to the Find/Replace In Files window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2345" /> + <location filename="../UI/UserInterface.py" line="2337" /> <source>Ctrl+Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2348" /> + <location filename="../UI/UserInterface.py" line="2340" /> <source>Switch the input focus to the Find File window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2350" /> + <location filename="../UI/UserInterface.py" line="2342" /> <source><b>Find File</b><p>This switches the input focus to the Find File window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2362" /> - <location filename="../UI/UserInterface.py" line="2361" /> + <location filename="../UI/UserInterface.py" line="2354" /> + <location filename="../UI/UserInterface.py" line="2353" /> <source>VCS Status List</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2363" /> + <location filename="../UI/UserInterface.py" line="2355" /> <source>Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2366" /> + <location filename="../UI/UserInterface.py" line="2358" /> <source>Switch the input focus to the VCS Status List window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2368" /> + <location filename="../UI/UserInterface.py" line="2360" /> <source><b>VCS Status List</b><p>This switches the input focus to the VCS Status List window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2381" /> + <location filename="../UI/UserInterface.py" line="2373" /> <source>Alt+Shift+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2384" /> + <location filename="../UI/UserInterface.py" line="2376" /> <source>Switch the input focus to the embedded Help Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2386" /> + <location filename="../UI/UserInterface.py" line="2378" /> <source><b>Help Viewer</b><p>This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2399" /> + <location filename="../UI/UserInterface.py" line="2391" /> <source>What's This?</source> <translation>Cos'è questo ?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2401" /> + <location filename="../UI/UserInterface.py" line="2393" /> <source>&What's This?</source> <translation>C&os'è Questo ?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2402" /> + <location filename="../UI/UserInterface.py" line="2394" /> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404" /> + <location filename="../UI/UserInterface.py" line="2396" /> <source>Context sensitive help</source> <translation>Help sensibile al contesto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2405" /> + <location filename="../UI/UserInterface.py" line="2397" /> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Mostra helo sensibile al contesto</b><p>Nella modalità Cos'è Questo, il cursore del mouse mostra una freccia con un punto interrogativo e puoi premere sugli elementi dell'interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nel dialoghi questa funzionalità è accessibile usando il bottone di help contestuale nella fisestra del titolo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2417" /> + <location filename="../UI/UserInterface.py" line="2409" /> <source>Helpviewer</source> <translation>Visualizzatore Help</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419" /> + <location filename="../UI/UserInterface.py" line="2411" /> <source>&Helpviewer...</source> <translation>Visualizzatore &Help...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2420" /> + <location filename="../UI/UserInterface.py" line="2412" /> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2422" /> + <location filename="../UI/UserInterface.py" line="2414" /> <source>Open the helpviewer window</source> <translation>Apri il visualizzatore di help</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2424" /> + <location filename="../UI/UserInterface.py" line="2416" /> <source><b>Helpviewer</b><p>Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2443" /> + <location filename="../UI/UserInterface.py" line="2435" /> <source>Show Versions</source> <translation>Mostra versione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2444" /> + <location filename="../UI/UserInterface.py" line="2436" /> <source>Show &Versions</source> <translation>Mostra &Versione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446" /> + <location filename="../UI/UserInterface.py" line="2438" /> <source>Display version information</source> <translation>Mostra informazioni sulla versione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2448" /> + <location filename="../UI/UserInterface.py" line="2440" /> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Mostra versioni</b><p>Mostra delle informazioni sulla versione.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2458" /> - <location filename="../UI/UserInterface.py" line="2456" /> - <source>Check for Updates</source> - <translation>Controlla per aggiornamenti</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2457" /> - <source>Check for &Updates...</source> - <translation>Controlla per &Aggiornamenti...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2459" /> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2467" /> - <source>Show downloadable versions</source> - <translation>Mostra versioni scaricabili</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2468" /> - <source>Show &downloadable versions...</source> - <translation>Mostra &versioni scaricabili...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2471" /> - <source>Show the versions available for download</source> - <translation>Mostra le versioni disponibili per il download</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2472" /> - <source><b>Show downloadable versions...</b><p>Shows the eric versions available for download from the internet.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2485" /> - <location filename="../UI/UserInterface.py" line="2482" /> + <location filename="../UI/UserInterface.py" line="2451" /> + <location filename="../UI/UserInterface.py" line="2448" /> <source>Show Error Log</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2483" /> + <location filename="../UI/UserInterface.py" line="2449" /> <source>Show Error &Log...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2452" /> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2460" /> + <source>Show Install Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2461" /> + <source>Show Install &Info...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2463" /> + <source>Show Installation Information</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2465" /> + <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4083" /> + <location filename="../UI/UserInterface.py" line="2474" /> + <source>Report Bug</source> + <translation>Segnala Bug</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2475" /> + <source>Report &Bug...</source> + <translation>Segnala &Bug...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2477" /> + <source>Report a bug</source> + <translation>Segnala un bug</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2478" /> + <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <translation><b>>Segnala Bug...</b><p>Apre un dialogo per segnalare un bug.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2486" /> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2494" /> - <source>Show Install Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2495" /> - <source>Show Install &Info...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2497" /> - <source>Show Installation Information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2499" /> - <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4120" /> - <location filename="../UI/UserInterface.py" line="2508" /> - <source>Report Bug</source> - <translation>Segnala Bug</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2509" /> - <source>Report &Bug...</source> - <translation>Segnala &Bug...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2511" /> - <source>Report a bug</source> - <translation>Segnala un bug</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512" /> - <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> - <translation><b>>Segnala Bug...</b><p>Apre un dialogo per segnalare un bug.</p></translation> + <source>Request Feature</source> + <translation>Richiedi funzionalità</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2487" /> + <source>Request &Feature...</source> + <translation>Richiedi &funzionalità...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2489" /> + <source>Send a feature request</source> + <translation>Invia una richiesta di funzionalità</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2491" /> + <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> + <translation><b>Richiedi funzionalità...</b><p>Apre un dialogo per mandare una richiesta di funzionalità.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606" /> + <location filename="../UI/UserInterface.py" line="3583" /> + <location filename="../UI/UserInterface.py" line="2501" /> + <source>Unittest</source> + <translation>Unittest</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2503" /> + <source>&Unittest...</source> + <translation>&Unittest...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2505" /> + <source>Start unittest dialog</source> + <translation>Avvia dialogo unittest</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506" /> + <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <translation><b>Unittes</b><p>Esegui unit test. Il dialogo offre la possibilità di selezionare ed eseguire uno unittest.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2515" /> + <source>Unittest Restart</source> + <translation>Riavvia Unittest</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2517" /> + <source>&Restart Unittest...</source> + <translation>&Riavvia Unittest...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2519" /> + <source>Restart last unittest</source> + <translation>Riavvia l'ultima unittest</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2520" /> - <source>Request Feature</source> - <translation>Richiedi funzionalità</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2521" /> - <source>Request &Feature...</source> - <translation>Richiedi &funzionalità...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2523" /> - <source>Send a feature request</source> - <translation>Invia una richiesta di funzionalità</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2525" /> - <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> - <translation><b>Richiedi funzionalità...</b><p>Apre un dialogo per mandare una richiesta di funzionalità.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3643" /> - <location filename="../UI/UserInterface.py" line="3620" /> + <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> + <translation><b>Riavvia Unittest</b><p>Riavvia l'ultima unittest eseguita.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2529" /> + <source>Unittest Rerun Failed</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2531" /> + <source>Rerun Failed Tests...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2533" /> + <source>Rerun failed tests of the last run</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2535" /> - <source>Unittest</source> - <translation>Unittest</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2537" /> - <source>&Unittest...</source> - <translation>&Unittest...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2539" /> - <source>Start unittest dialog</source> - <translation>Avvia dialogo unittest</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2540" /> - <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> - <translation><b>Unittes</b><p>Esegui unit test. Il dialogo offre la possibilità di selezionare ed eseguire uno unittest.</p></translation> + <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2545" /> + <source>Unittest Script</source> + <translation>Script unittest</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2547" /> + <source>Unittest &Script...</source> + <translation>&Script Unittest...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2549" /> - <source>Unittest Restart</source> - <translation>Riavvia Unittest</translation> + <source>Run unittest with current script</source> + <translation>Esegui unittest con lo script corrente</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2551" /> - <source>&Restart Unittest...</source> - <translation>&Riavvia Unittest...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2553" /> - <source>Restart last unittest</source> - <translation>Riavvia l'ultima unittest</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2554" /> - <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> - <translation><b>Riavvia Unittest</b><p>Riavvia l'ultima unittest eseguita.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2563" /> - <source>Unittest Rerun Failed</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2565" /> - <source>Rerun Failed Tests...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2567" /> - <source>Rerun failed tests of the last run</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2569" /> - <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2579" /> - <source>Unittest Script</source> - <translation>Script unittest</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2581" /> - <source>Unittest &Script...</source> - <translation>&Script Unittest...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2583" /> - <source>Run unittest with current script</source> - <translation>Esegui unittest con lo script corrente</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2585" /> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Script Unittest</b><p>Esegui unittest con lo script corrente.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2594" /> + <location filename="../UI/UserInterface.py" line="2560" /> <source>Unittest Project</source> <translation>Progetto Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596" /> + <location filename="../UI/UserInterface.py" line="2562" /> <source>Unittest &Project...</source> <translation>&Progetto Unittest...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2598" /> + <location filename="../UI/UserInterface.py" line="2564" /> <source>Run unittest with current project</source> <translation>Esegui unittest con il progetto corrente</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600" /> + <location filename="../UI/UserInterface.py" line="2566" /> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Progetto Unittest</b><p>Esegui unittest con il progetto corrente.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2621" /> + <location filename="../UI/UserInterface.py" line="2587" /> <source>Qt-Designer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2623" /> + <location filename="../UI/UserInterface.py" line="2589" /> <source>Qt-&Designer...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2625" /> + <location filename="../UI/UserInterface.py" line="2591" /> <source>Start Qt-Designer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2626" /> + <location filename="../UI/UserInterface.py" line="2592" /> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2613" /> + <source>Qt-Linguist</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2615" /> + <source>Qt-&Linguist...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2617" /> + <source>Start Qt-Linguist</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2618" /> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2628" /> + <source>UI Previewer</source> + <translation>Anteprima UI</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2630" /> + <source>&UI Previewer...</source> + <translation>Antreprima &UI...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2632" /> + <source>Start the UI Previewer</source> + <translation>Avvia UI Previewer</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2633" /> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation><b>UI Previewer</b><p>Avvia UI Previewer.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2641" /> + <source>Translations Previewer</source> + <translation>Anteprima traduzioni</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2643" /> + <source>&Translations Previewer...</source> + <translation>Anteprima &Traduzioni...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2645" /> + <source>Start the Translations Previewer</source> + <translation>Avvia l'anteprima delle traduzioni</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2647" /> - <source>Qt-Linguist</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2649" /> - <source>Qt-&Linguist...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2651" /> - <source>Start Qt-Linguist</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2652" /> - <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2662" /> - <source>UI Previewer</source> - <translation>Anteprima UI</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2664" /> - <source>&UI Previewer...</source> - <translation>Antreprima &UI...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2666" /> - <source>Start the UI Previewer</source> - <translation>Avvia UI Previewer</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2667" /> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation><b>UI Previewer</b><p>Avvia UI Previewer.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2675" /> - <source>Translations Previewer</source> - <translation>Anteprima traduzioni</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2677" /> - <source>&Translations Previewer...</source> - <translation>Anteprima &Traduzioni...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2679" /> - <source>Start the Translations Previewer</source> - <translation>Avvia l'anteprima delle traduzioni</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2681" /> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Anteprima traduzioni</b><p>Avvia l'anteprima delle traduzioni.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2689" /> + <location filename="../UI/UserInterface.py" line="2655" /> <source>Compare Files</source> <translation>Confronta file</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691" /> + <location filename="../UI/UserInterface.py" line="2657" /> <source>&Compare Files...</source> <translation>&Confronta file...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2706" /> - <location filename="../UI/UserInterface.py" line="2693" /> + <location filename="../UI/UserInterface.py" line="2672" /> + <location filename="../UI/UserInterface.py" line="2659" /> <source>Compare two files</source> <translation>Confronta due file</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2694" /> + <location filename="../UI/UserInterface.py" line="2660" /> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Confronta file</b><p>Apre un dialogo per confrontare due file.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2702" /> + <location filename="../UI/UserInterface.py" line="2668" /> <source>Compare Files side by side</source> <translation>Confronta file affiancati</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2704" /> + <location filename="../UI/UserInterface.py" line="2670" /> <source>Compare &Files side by side...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2707" /> + <location filename="../UI/UserInterface.py" line="2673" /> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Confronta file affiancati</b><p>Apri un dialogo per confrontare due file e mostrare i risultati affiancati.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2716" /> + <location filename="../UI/UserInterface.py" line="2682" /> <source>SQL Browser</source> <translation>SQL Browser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2718" /> + <location filename="../UI/UserInterface.py" line="2684" /> <source>SQL &Browser...</source> <translation>SQL &Browser...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2720" /> + <location filename="../UI/UserInterface.py" line="2686" /> <source>Browse a SQL database</source> <translation>Naviga un database SQL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2721" /> + <location filename="../UI/UserInterface.py" line="2687" /> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL Browser</b><p>Naviga un database SQL.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2733" /> - <location filename="../UI/UserInterface.py" line="2729" /> + <location filename="../UI/UserInterface.py" line="2699" /> + <location filename="../UI/UserInterface.py" line="2695" /> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2731" /> + <location filename="../UI/UserInterface.py" line="2697" /> <source>Mini &Editor...</source> <translation>Mini &Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2734" /> + <location filename="../UI/UserInterface.py" line="2700" /> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Editor</b><p>Apre un dialogo con un semplice editor.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2742" /> + <location filename="../UI/UserInterface.py" line="2708" /> <source>Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2744" /> + <location filename="../UI/UserInterface.py" line="2710" /> <source>&Hex Editor...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2746" /> + <location filename="../UI/UserInterface.py" line="2712" /> <source>Start the eric Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2748" /> + <location filename="../UI/UserInterface.py" line="2714" /> <source><b>Hex Editor</b><p>Starts the eric Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2723" /> + <source>eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2725" /> + <source>eric &Web Browser...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2727" /> + <source>Start the eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2729" /> + <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2737" /> + <source>Icon Editor</source> + <translation>Editor di icone</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2739" /> + <source>&Icon Editor...</source> + <translation>Editor di &icone...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2741" /> + <source>Start the eric Icon Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2743" /> + <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2751" /> + <source>Snapshot</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2753" /> + <source>&Snapshot...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2755" /> + <source>Take snapshots of a screen region</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757" /> - <source>eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2759" /> - <source>eric &Web Browser...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2761" /> - <source>Start the eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2763" /> - <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2771" /> - <source>Icon Editor</source> - <translation>Editor di icone</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2773" /> - <source>&Icon Editor...</source> - <translation>Editor di &icone...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2775" /> - <source>Start the eric Icon Editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2777" /> - <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2785" /> - <source>Snapshot</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2787" /> - <source>&Snapshot...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2789" /> - <source>Take snapshots of a screen region</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2791" /> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2766" /> + <source>Preferences</source> + <translation>Preferenze</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768" /> + <source>&Preferences...</source> + <translation>&Preferenze...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2770" /> + <source>Set the prefered configuration</source> + <translation>Imposta la configurazione preferita</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2772" /> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation><b>Preferenze</b><p>Imposta i valori di configurazione dell'applicazione ai valori preferiti</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782" /> + <source>Export Preferences</source> + <translation>Esporta preferenze</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2784" /> + <source>E&xport Preferences...</source> + <translation>E&sporta preferenze...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2786" /> + <source>Export the current configuration</source> + <translation>Esporta la configurazione attuale</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2788" /> + <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <translation><b>Esporta preferenze</b><p>Esporta la configurazione attuale su un file.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2796" /> + <source>Import Preferences</source> + <translation>Importa preferenze</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2798" /> + <source>I&mport Preferences...</source> + <translation>I&mporta preferenze...</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2800" /> - <source>Preferences</source> - <translation>Preferenze</translation> + <source>Import a previously exported configuration</source> + <translation>Importa una configurazione precedentemente esportata</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2802" /> - <source>&Preferences...</source> - <translation>&Preferenze...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2804" /> - <source>Set the prefered configuration</source> - <translation>Imposta la configurazione preferita</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2806" /> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> - <translation><b>Preferenze</b><p>Imposta i valori di configurazione dell'applicazione ai valori preferiti</p></translation> + <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> + <translation><b>Importa preferenze</b><p>Importa una configurazione precedentemente esportata.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2810" /> + <source>Export Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2812" /> + <source>Export Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2814" /> + <source>Export the current theme</source> + <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2816" /> - <source>Export Preferences</source> - <translation>Esporta preferenze</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2818" /> - <source>E&xport Preferences...</source> - <translation>E&sporta preferenze...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2820" /> - <source>Export the current configuration</source> - <translation>Esporta la configurazione attuale</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2822" /> - <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> - <translation><b>Esporta preferenze</b><p>Esporta la configurazione attuale su un file.</p></translation> + <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2824" /> + <source>Import Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2826" /> + <source>Import Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2828" /> + <source>Import a previously exported theme</source> + <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2830" /> - <source>Import Preferences</source> - <translation>Importa preferenze</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2832" /> - <source>I&mport Preferences...</source> - <translation>I&mporta preferenze...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2834" /> - <source>Import a previously exported configuration</source> - <translation>Importa una configurazione precedentemente esportata</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2836" /> - <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> - <translation><b>Importa preferenze</b><p>Importa una configurazione precedentemente esportata.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2844" /> - <source>Export Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2846" /> - <source>Export Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2848" /> - <source>Export the current theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2850" /> - <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2858" /> - <source>Import Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2860" /> - <source>Import Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2862" /> - <source>Import a previously exported theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2864" /> <source><b>Import Theme</b><p>Import a previously exported theme.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2872" /> + <location filename="../UI/UserInterface.py" line="2838" /> <source>Reload APIs</source> <translation>Ricarica APIs</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2839" /> + <source>Reload &APIs</source> + <translation>Ricarica &APIs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2841" /> + <source>Reload the API information</source> + <translation>Ricarica le informazioni delle API</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2843" /> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation><b>Ricarica APIs</b><p>Ricarica le informazioni delle API.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2855" /> + <location filename="../UI/UserInterface.py" line="2851" /> + <source>Show external tools</source> + <translation>Mostra tool esterni</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2853" /> + <source>Show external &tools</source> + <translation>Mostra toll &esterni</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857" /> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2867" /> + <source>View Profiles</source> + <translation>Vista Profili</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2869" /> + <source>&View Profiles...</source> + <translation>&Vista profili...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2871" /> + <source>Configure view profiles</source> + <translation>Configura i profili</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2873" /> - <source>Reload &APIs</source> - <translation>Ricarica &APIs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2875" /> - <source>Reload the API information</source> - <translation>Ricarica le informazioni delle API</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2877" /> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> - <translation><b>Ricarica APIs</b><p>Ricarica le informazioni delle API.</p></translation> + <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <translation><b>Vista Profili</b><p>Configura la visualizzazione dei profili. Con questo dialogo si possono impostare la visibilità delle varie finestre per i profili predefiniti.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2884" /> + <source>Toolbars</source> + <translation>Toolbars</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2886" /> + <source>Tool&bars...</source> + <translation>Tool&bars...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2888" /> + <source>Configure toolbars</source> + <translation>Configura toolbars</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2889" /> - <location filename="../UI/UserInterface.py" line="2885" /> - <source>Show external tools</source> - <translation>Mostra tool esterni</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887" /> - <source>Show external &tools</source> - <translation>Mostra toll &esterni</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2891" /> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> - <translation type="unfinished" /> + <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> + <translation><b>Toolbars</b><p>Configura le toolbars. Con questo dialogo puoi cambiare le azioni mostrate sulle varie toolbar e definire le tue.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2899" /> + <source>Keyboard Shortcuts</source> + <translation>Scorciatoie da tastiera</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2901" /> - <source>View Profiles</source> - <translation>Vista Profili</translation> + <source>Keyboard &Shortcuts...</source> + <translation>&Scorciatoie da tastiera...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2903" /> - <source>&View Profiles...</source> - <translation>&Vista profili...</translation> + <source>Set the keyboard shortcuts</source> + <translation>Imposta le scorciatoie da tastiera</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2905" /> - <source>Configure view profiles</source> - <translation>Configura i profili</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2907" /> - <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> - <translation><b>Vista Profili</b><p>Configura la visualizzazione dei profili. Con questo dialogo si possono impostare la visibilità delle varie finestre per i profili predefiniti.</p></translation> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation><b>Scorciatoie da tastiera</b><p>Imposta le scorciatoie da tastiera dell'applicazione con i valori personalizzati.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756" /> + <location filename="../UI/UserInterface.py" line="6738" /> + <location filename="../UI/UserInterface.py" line="2914" /> + <source>Export Keyboard Shortcuts</source> + <translation>Esporta scorciatoie da tastiera</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2916" /> + <source>&Export Keyboard Shortcuts...</source> + <translation>&Esporta scorciatoie da tastiera...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2918" /> - <source>Toolbars</source> - <translation>Toolbars</translation> + <source>Export the keyboard shortcuts</source> + <translation>Esporta le scorciatoie da tastiera</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2920" /> - <source>Tool&bars...</source> - <translation>Tool&bars...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2922" /> - <source>Configure toolbars</source> - <translation>Configura toolbars</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2923" /> - <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> - <translation><b>Toolbars</b><p>Configura le toolbars. Con questo dialogo puoi cambiare le azioni mostrate sulle varie toolbar e definire le tue.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2933" /> - <source>Keyboard Shortcuts</source> - <translation>Scorciatoie da tastiera</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2935" /> - <source>Keyboard &Shortcuts...</source> - <translation>&Scorciatoie da tastiera...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2937" /> - <source>Set the keyboard shortcuts</source> - <translation>Imposta le scorciatoie da tastiera</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2939" /> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation><b>Scorciatoie da tastiera</b><p>Imposta le scorciatoie da tastiera dell'applicazione con i valori personalizzati.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6698" /> - <location filename="../UI/UserInterface.py" line="6680" /> - <location filename="../UI/UserInterface.py" line="2948" /> - <source>Export Keyboard Shortcuts</source> - <translation>Esporta scorciatoie da tastiera</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2950" /> - <source>&Export Keyboard Shortcuts...</source> - <translation>&Esporta scorciatoie da tastiera...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2952" /> - <source>Export the keyboard shortcuts</source> - <translation>Esporta le scorciatoie da tastiera</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2954" /> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Esporta scorciatoie da tastiera</b><p>Esporta le scorciatoie da tastiera dell'applicazione.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6715" /> - <location filename="../UI/UserInterface.py" line="2962" /> + <location filename="../UI/UserInterface.py" line="6773" /> + <location filename="../UI/UserInterface.py" line="2928" /> <source>Import Keyboard Shortcuts</source> <translation>Importa scorciatoie da tastiera</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2964" /> + <location filename="../UI/UserInterface.py" line="2930" /> <source>&Import Keyboard Shortcuts...</source> <translation>&Importa scorciatoie da tastiera...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2966" /> + <location filename="../UI/UserInterface.py" line="2932" /> <source>Import the keyboard shortcuts</source> <translation>Importa le scorciatoie da tastiera</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2968" /> + <location filename="../UI/UserInterface.py" line="2934" /> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Importa scorciatoie da tastiera</b><p>Importa le scorciatoie da tastiera dell'applicazione.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2977" /> + <location filename="../UI/UserInterface.py" line="2943" /> <source>Manage SSL Certificates</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2979" /> + <location filename="../UI/UserInterface.py" line="2945" /> <source>Manage SSL Certificates...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2947" /> + <source>Manage the saved SSL certificates</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2949" /> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2959" /> + <source>Edit Message Filters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2961" /> + <source>Edit Message Filters...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2963" /> + <source>Edit the message filters used to suppress unwanted messages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2965" /> + <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2981" /> - <source>Manage the saved SSL certificates</source> - <translation type="unfinished" /> + <location filename="../UI/UserInterface.py" line="2978" /> + <location filename="../UI/UserInterface.py" line="2976" /> + <source>Clear private data</source> + <translation type="unfinished">Pulisci dati privati</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2983" /> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation type="unfinished" /> - </message> - <message> + <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" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2994" /> <location filename="../UI/UserInterface.py" line="2993" /> - <source>Edit Message Filters</source> - <translation type="unfinished" /> + <source>Activate current editor</source> + <translation>Attiva editor corrente</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2995" /> - <source>Edit Message Filters...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2997" /> - <source>Edit the message filters used to suppress unwanted messages</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2999" /> - <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3015" /> - <location filename="../UI/UserInterface.py" line="3012" /> - <location filename="../UI/UserInterface.py" line="3010" /> - <source>Clear private data</source> - <translation type="unfinished">Pulisci dati privati</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3017" /> - <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" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3028" /> - <location filename="../UI/UserInterface.py" line="3027" /> - <source>Activate current editor</source> - <translation>Attiva editor corrente</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3029" /> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3038" /> - <location filename="../UI/UserInterface.py" line="3037" /> + <location filename="../UI/UserInterface.py" line="3004" /> + <location filename="../UI/UserInterface.py" line="3003" /> <source>Show next</source> <translation>Mostra successivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3039" /> + <location filename="../UI/UserInterface.py" line="3005" /> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="3013" /> + <location filename="../UI/UserInterface.py" line="3012" /> + <source>Show previous</source> + <translation>Mostra precedente</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3014" /> + <source>Shift+Ctrl+Alt+Tab</source> + <translation>Shift+Ctrl+Alt+Tab</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3022" /> + <location filename="../UI/UserInterface.py" line="3021" /> + <source>Switch between tabs</source> + <translation>Cicla tra le linguette</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3023" /> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3030" /> + <source>Plugin Infos</source> + <translation>Informazioni su Plugin</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3032" /> + <source>&Plugin Infos...</source> + <translation>Informazioni su &Plugin...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3033" /> + <source>Show Plugin Infos</source> + <translation>Mostra informazioni sui Plugin</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3034" /> + <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="3047" /> - <location filename="../UI/UserInterface.py" line="3046" /> - <source>Show previous</source> - <translation>Mostra precedente</translation> + <location filename="../UI/UserInterface.py" line="3043" /> + <source>Install Plugins</source> + <translation>Installa Plugin</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3045" /> + <source>&Install Plugins...</source> + <translation>&Installa Plugin...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3048" /> - <source>Shift+Ctrl+Alt+Tab</source> - <translation>Shift+Ctrl+Alt+Tab</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3056" /> - <location filename="../UI/UserInterface.py" line="3055" /> - <source>Switch between tabs</source> - <translation>Cicla tra le linguette</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3057" /> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3064" /> - <source>Plugin Infos</source> - <translation>Informazioni su Plugin</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3066" /> - <source>&Plugin Infos...</source> - <translation>Informazioni su &Plugin...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3067" /> - <source>Show Plugin Infos</source> - <translation>Mostra informazioni sui Plugin</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3068" /> - <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="3081" /> - <location filename="../UI/UserInterface.py" line="3077" /> - <source>Install Plugins</source> - <translation>Installa Plugin</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3079" /> - <source>&Install Plugins...</source> - <translation>&Installa Plugin...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3082" /> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Installa Plugin...<b><p>Apre un dialogo per installare o aggiornare i plugin.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3094" /> - <location filename="../UI/UserInterface.py" line="3090" /> + <location filename="../UI/UserInterface.py" line="3060" /> + <location filename="../UI/UserInterface.py" line="3056" /> <source>Uninstall Plugin</source> <translation>Disinstalla Plugin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3092" /> + <location filename="../UI/UserInterface.py" line="3058" /> <source>&Uninstall Plugin...</source> <translation>Disinstalla Pl&ugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3095" /> + <location filename="../UI/UserInterface.py" line="3061" /> <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> <message> - <location filename="../UI/UserInterface.py" line="3105" /> + <location filename="../UI/UserInterface.py" line="3071" /> <source>Plugin &Repository...</source> <translation>&Repository Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3107" /> + <location filename="../UI/UserInterface.py" line="3073" /> <source>Show Plugins available for download</source> <translation>Mostra Plugin disponibili per il download</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3109" /> + <location filename="../UI/UserInterface.py" line="3075" /> <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="3101" /> + <location filename="../UI/UserInterface.py" line="3100" /> + <source>Qt5 Documentation</source> + <translation type="unfinished">Documentazione Qt4 {5 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3103" /> + <source>Open Qt5 Documentation</source> + <translation type="unfinished">Apri documentazione su Qt4 {5 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3104" /> + <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3116" /> + <location filename="../UI/UserInterface.py" line="3115" /> + <source>Qt6 Documentation</source> + <translation type="unfinished">Documentazione Qt4 {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3118" /> + <source>Open Qt6 Documentation</source> + <translation type="unfinished">Apri documentazione su Qt4 {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3119" /> + <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3131" /> + <location filename="../UI/UserInterface.py" line="3130" /> + <source>PyQt5 Documentation</source> + <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3133" /> + <source>Open PyQt5 Documentation</source> + <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="3135" /> - <location filename="../UI/UserInterface.py" line="3134" /> - <source>Qt5 Documentation</source> - <translation type="unfinished">Documentazione Qt4 {5 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3137" /> - <source>Open Qt5 Documentation</source> - <translation type="unfinished">Apri documentazione su Qt4 {5 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3138" /> - <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> + <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3148" /> + <location filename="../UI/UserInterface.py" line="3147" /> + <source>PyQt6 Documentation</source> + <translation type="unfinished">Documentazione PyQt4 {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3150" /> - <location filename="../UI/UserInterface.py" line="3149" /> - <source>Qt6 Documentation</source> - <translation type="unfinished">Documentazione Qt4 {6 ?}</translation> + <source>Open PyQt6 Documentation</source> + <translation type="unfinished">Apri documentazione su PyQt4 {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3152" /> - <source>Open Qt6 Documentation</source> - <translation type="unfinished">Apri documentazione su Qt4 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3153" /> - <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3165" /> - <location filename="../UI/UserInterface.py" line="3164" /> - <source>PyQt5 Documentation</source> - <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3167" /> - <source>Open PyQt5 Documentation</source> - <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation> - </message> - <message> + <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3170" /> <location filename="../UI/UserInterface.py" line="3169" /> - <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3182" /> - <location filename="../UI/UserInterface.py" line="3181" /> - <source>PyQt6 Documentation</source> - <translation type="unfinished">Documentazione PyQt4 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3184" /> - <source>Open PyQt6 Documentation</source> - <translation type="unfinished">Apri documentazione su PyQt4 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3186" /> - <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3204" /> - <location filename="../UI/UserInterface.py" line="3203" /> <source>Python 3 Documentation</source> <translation>Documentazione Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3206" /> + <location filename="../UI/UserInterface.py" line="3172" /> <source>Open Python 3 Documentation</source> <translation>Apri documentazione Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3208" /> + <location filename="../UI/UserInterface.py" line="3174" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3226" /> - <location filename="../UI/UserInterface.py" line="3225" /> + <location filename="../UI/UserInterface.py" line="3192" /> + <location filename="../UI/UserInterface.py" line="3191" /> <source>eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3228" /> + <location filename="../UI/UserInterface.py" line="3194" /> <source>Open eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3230" /> + <location filename="../UI/UserInterface.py" line="3196" /> <source><b>eric API Documentation</b><p>Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3247" /> - <location filename="../UI/UserInterface.py" line="3246" /> + <location filename="../UI/UserInterface.py" line="3213" /> + <location filename="../UI/UserInterface.py" line="3212" /> <source>PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3249" /> + <location filename="../UI/UserInterface.py" line="3215" /> <source>Open PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3251" /> + <location filename="../UI/UserInterface.py" line="3217" /> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3267" /> - <location filename="../UI/UserInterface.py" line="3266" /> + <location filename="../UI/UserInterface.py" line="3233" /> + <location filename="../UI/UserInterface.py" line="3232" /> <source>PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3269" /> + <location filename="../UI/UserInterface.py" line="3235" /> <source>Open PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3271" /> + <location filename="../UI/UserInterface.py" line="3237" /> <source><b>PySide6 Documentation</b><p>Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3373" /> + <location filename="../UI/UserInterface.py" line="3339" /> <source>E&xtras</source> <translation>E&xtra</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3383" /> + <location filename="../UI/UserInterface.py" line="3349" /> <source>Wi&zards</source> <translation>Wi&zards</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3402" /> + <location filename="../UI/UserInterface.py" line="3368" /> <source>P&lugins</source> <translation>P&lugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3412" /> + <location filename="../UI/UserInterface.py" line="3378" /> <source>Configure...</source> <translation>Configura...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3421" /> + <location filename="../UI/UserInterface.py" line="3387" /> <source>&Unittest</source> <translation>&Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3438" /> + <location filename="../UI/UserInterface.py" line="3404" /> <source>Select Tool Group</source> <translation>Seleziona Tool Group</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3449" /> + <location filename="../UI/UserInterface.py" line="3415" /> <source>Se&ttings</source> <translation>Impos&tazioni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482" /> + <location filename="../UI/UserInterface.py" line="3448" /> <source>&Window</source> <translation>&Finestre</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3491" /> + <location filename="../UI/UserInterface.py" line="3457" /> <source>&Windows</source> <translation type="unfinished">&Finestre</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3496" /> + <location filename="../UI/UserInterface.py" line="3462" /> <source>Central Park</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3500" /> + <location filename="../UI/UserInterface.py" line="3466" /> <source>Left Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3517" /> + <location filename="../UI/UserInterface.py" line="3483" /> <source>Right Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3541" /> + <location filename="../UI/UserInterface.py" line="3507" /> <source>Bottom Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3549" /> + <location filename="../UI/UserInterface.py" line="3515" /> <source>Plug-ins</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3556" /> + <location filename="../UI/UserInterface.py" line="3522" /> <source>&Toolbars</source> <translation>&Toolbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3569" /> + <location filename="../UI/UserInterface.py" line="3535" /> <source>&Help</source> <translation>&Help</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3642" /> - <location filename="../UI/UserInterface.py" line="3619" /> + <location filename="../UI/UserInterface.py" line="3605" /> + <location filename="../UI/UserInterface.py" line="3582" /> <source>Tools</source> <translation>Strumenti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3644" /> - <location filename="../UI/UserInterface.py" line="3623" /> + <location filename="../UI/UserInterface.py" line="3607" /> + <location filename="../UI/UserInterface.py" line="3586" /> <source>Settings</source> <translation>Impostazioni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5541" /> - <location filename="../UI/UserInterface.py" line="3645" /> - <location filename="../UI/UserInterface.py" line="3624" /> + <location filename="../UI/UserInterface.py" line="5600" /> + <location filename="../UI/UserInterface.py" line="3608" /> + <location filename="../UI/UserInterface.py" line="3587" /> <source>Help</source> <translation>Aiuto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3646" /> - <location filename="../UI/UserInterface.py" line="3625" /> + <location filename="../UI/UserInterface.py" line="3609" /> + <location filename="../UI/UserInterface.py" line="3588" /> <source>Profiles</source> <translation>Profili</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3647" /> - <location filename="../UI/UserInterface.py" line="3626" /> + <location filename="../UI/UserInterface.py" line="3610" /> + <location filename="../UI/UserInterface.py" line="3589" /> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811" /> + <location filename="../UI/UserInterface.py" line="3774" /> <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="3818" /> + <location filename="../UI/UserInterface.py" line="3781" /> <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="3825" /> + <location filename="../UI/UserInterface.py" line="3788" /> <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="3832" /> + <location filename="../UI/UserInterface.py" line="3795" /> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Questa zona della barra di stato mostra la possibilità di scrittura del file.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3839" /> + <location filename="../UI/UserInterface.py" line="3802" /> <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="3846" /> + <location filename="../UI/UserInterface.py" line="3809" /> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Questa parte della barra di stato mostra la posizione del cursore.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3857" /> + <location filename="../UI/UserInterface.py" line="3820" /> <source><p>This part of the status bar allows zooming the current editor or shell.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3922" /> - <location filename="../UI/UserInterface.py" line="3882" /> + <location filename="../UI/UserInterface.py" line="3885" /> + <location filename="../UI/UserInterface.py" line="3845" /> <source>External Tools/{0}</source> <translation>Tool Esterni/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4028" /> + <location filename="../UI/UserInterface.py" line="3991" /> <source><h2>Version Numbers</h2><table></source> <translation type="unfinished"><h3>Numeri di versione</h3><table> {2>?} {2>?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4082" /> + <location filename="../UI/UserInterface.py" line="4045" /> <source>Desktop</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4085" /> + <location filename="../UI/UserInterface.py" line="4048" /> <source>Session Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7778" /> - <location filename="../UI/UserInterface.py" line="4087" /> + <location filename="../UI/UserInterface.py" line="4050" /> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4121" /> + <location filename="../UI/UserInterface.py" line="4084" /> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>L'indirizzo di posta o il server si posta sono vuoti. Per cortesia configura le opzioni per l'Email nel dialogo delle preferenze.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4432" /> + <location filename="../UI/UserInterface.py" line="4395" /> <source>Restart application</source> <translation>Riavvia applicazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4433" /> + <location filename="../UI/UserInterface.py" line="4396" /> <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="4420" /> + <source>Upgrade PyQt</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4421" /> + <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="4467" /> + <location filename="../UI/UserInterface.py" line="4443" /> + <source>Upgrade Eric</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4444" /> + <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4468" /> + <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time. + + Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4526" /> <source>&Builtin Tools</source> <translation>Tool &Builtin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4484" /> + <location filename="../UI/UserInterface.py" line="4543" /> <source>&Plugin Tools</source> <translation>Informazioni sui &Plugin Tools</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4487" /> + <location filename="../UI/UserInterface.py" line="4546" /> <source>&User Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4513" /> + <location filename="../UI/UserInterface.py" line="4572" /> <source>Configure Tool Groups ...</source> <translation>Configura Tools Groups...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517" /> + <location filename="../UI/UserInterface.py" line="4576" /> <source>Configure current Tool Group ...</source> <translation>Configura Tools Groups correnti...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4558" /> - <location filename="../UI/UserInterface.py" line="4538" /> + <location filename="../UI/UserInterface.py" line="4617" /> + <location filename="../UI/UserInterface.py" line="4597" /> <source>No User Tools Configured</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4632" /> + <location filename="../UI/UserInterface.py" line="4691" /> <source>&Show all</source> <translation>Mo&stra tutti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4634" /> + <location filename="../UI/UserInterface.py" line="4693" /> <source>&Hide all</source> <translation>Nascondi &tutti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5669" /> - <location filename="../UI/UserInterface.py" line="5659" /> - <location filename="../UI/UserInterface.py" line="5612" /> - <location filename="../UI/UserInterface.py" line="5603" /> - <location filename="../UI/UserInterface.py" line="5442" /> - <location filename="../UI/UserInterface.py" line="5433" /> - <location filename="../UI/UserInterface.py" line="5372" /> - <location filename="../UI/UserInterface.py" line="5363" /> + <location filename="../UI/UserInterface.py" line="5728" /> + <location filename="../UI/UserInterface.py" line="5718" /> + <location filename="../UI/UserInterface.py" line="5671" /> + <location filename="../UI/UserInterface.py" line="5662" /> + <location filename="../UI/UserInterface.py" line="5501" /> + <location filename="../UI/UserInterface.py" line="5492" /> + <location filename="../UI/UserInterface.py" line="5431" /> + <location filename="../UI/UserInterface.py" line="5422" /> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5670" /> - <location filename="../UI/UserInterface.py" line="5660" /> - <location filename="../UI/UserInterface.py" line="5613" /> - <location filename="../UI/UserInterface.py" line="5604" /> - <location filename="../UI/UserInterface.py" line="5443" /> - <location filename="../UI/UserInterface.py" line="5434" /> - <location filename="../UI/UserInterface.py" line="5373" /> - <location filename="../UI/UserInterface.py" line="5364" /> + <location filename="../UI/UserInterface.py" line="5729" /> + <location filename="../UI/UserInterface.py" line="5719" /> + <location filename="../UI/UserInterface.py" line="5672" /> + <location filename="../UI/UserInterface.py" line="5663" /> + <location filename="../UI/UserInterface.py" line="5502" /> + <location filename="../UI/UserInterface.py" line="5493" /> + <location filename="../UI/UserInterface.py" line="5432" /> + <location filename="../UI/UserInterface.py" line="5423" /> <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="5877" /> - <location filename="../UI/UserInterface.py" line="5790" /> - <location filename="../UI/UserInterface.py" line="5705" /> - <location filename="../UI/UserInterface.py" line="5682" /> - <location filename="../UI/UserInterface.py" line="5625" /> - <location filename="../UI/UserInterface.py" line="5575" /> - <location filename="../UI/UserInterface.py" line="5555" /> - <location filename="../UI/UserInterface.py" line="5517" /> - <location filename="../UI/UserInterface.py" line="5508" /> - <location filename="../UI/UserInterface.py" line="5473" /> - <location filename="../UI/UserInterface.py" line="5464" /> - <location filename="../UI/UserInterface.py" line="5403" /> - <location filename="../UI/UserInterface.py" line="5394" /> + <location filename="../UI/UserInterface.py" line="5936" /> + <location filename="../UI/UserInterface.py" line="5849" /> + <location filename="../UI/UserInterface.py" line="5764" /> + <location filename="../UI/UserInterface.py" line="5741" /> + <location filename="../UI/UserInterface.py" line="5684" /> + <location filename="../UI/UserInterface.py" line="5634" /> + <location filename="../UI/UserInterface.py" line="5614" /> + <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5567" /> + <location filename="../UI/UserInterface.py" line="5532" /> + <location filename="../UI/UserInterface.py" line="5523" /> + <location filename="../UI/UserInterface.py" line="5462" /> + <location filename="../UI/UserInterface.py" line="5453" /> <source>Process Generation Error</source> <translation>Errore Generazione Processo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5395" /> + <location filename="../UI/UserInterface.py" line="5454" /> <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="5404" /> + <location filename="../UI/UserInterface.py" line="5463" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5465" /> + <location filename="../UI/UserInterface.py" line="5524" /> <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="5474" /> + <location filename="../UI/UserInterface.py" line="5533" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5509" /> + <location filename="../UI/UserInterface.py" line="5568" /> <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="5518" /> + <location filename="../UI/UserInterface.py" line="5577" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5542" /> + <location filename="../UI/UserInterface.py" line="5601" /> <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="5556" /> + <location filename="../UI/UserInterface.py" line="5615" /> <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="5576" /> + <location filename="../UI/UserInterface.py" line="5635" /> <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> <message> - <location filename="../UI/UserInterface.py" line="5626" /> + <location filename="../UI/UserInterface.py" line="5685" /> <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="5683" /> + <location filename="../UI/UserInterface.py" line="5742" /> <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="5706" /> + <location filename="../UI/UserInterface.py" line="5765" /> <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="5791" /> + <location filename="../UI/UserInterface.py" line="5850" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5822" /> - <location filename="../UI/UserInterface.py" line="5813" /> + <location filename="../UI/UserInterface.py" line="5881" /> + <location filename="../UI/UserInterface.py" line="5872" /> <source>External Tools</source> <translation>Tool esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5814" /> + <location filename="../UI/UserInterface.py" line="5873" /> <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="5823" /> + <location filename="../UI/UserInterface.py" line="5882" /> <source>No toolgroup entry '{0}' found.</source> <translation>Nessun gruppo '{0}' trovato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5859" /> + <location filename="../UI/UserInterface.py" line="5918" /> <source>Starting process '{0} {1}'. </source> <translation>Avvio processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5878" /> + <location filename="../UI/UserInterface.py" line="5937" /> <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="5953" /> + <location filename="../UI/UserInterface.py" line="6012" /> <source>Process '{0}' has exited. </source> <translation>Il processo '{0}' è terminato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6225" /> - <location filename="../UI/UserInterface.py" line="6167" /> - <location filename="../UI/UserInterface.py" line="6126" /> - <location filename="../UI/UserInterface.py" line="6058" /> - <location filename="../UI/UserInterface.py" line="5996" /> + <location filename="../UI/UserInterface.py" line="6284" /> + <location filename="../UI/UserInterface.py" line="6226" /> + <location filename="../UI/UserInterface.py" line="6185" /> + <location filename="../UI/UserInterface.py" line="6117" /> + <location filename="../UI/UserInterface.py" line="6055" /> <source>Documentation Missing</source> <translation>Documentazione mancante</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6226" /> - <location filename="../UI/UserInterface.py" line="6168" /> - <location filename="../UI/UserInterface.py" line="6127" /> - <location filename="../UI/UserInterface.py" line="6059" /> - <location filename="../UI/UserInterface.py" line="5997" /> + <location filename="../UI/UserInterface.py" line="6285" /> + <location filename="../UI/UserInterface.py" line="6227" /> + <location filename="../UI/UserInterface.py" line="6186" /> + <location filename="../UI/UserInterface.py" line="6118" /> + <location filename="../UI/UserInterface.py" line="6056" /> <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="6208" /> - <location filename="../UI/UserInterface.py" line="6099" /> + <location filename="../UI/UserInterface.py" line="6267" /> + <location filename="../UI/UserInterface.py" line="6158" /> <source>Documentation</source> <translation>Documentazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6100" /> + <location filename="../UI/UserInterface.py" line="6159" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6209" /> + <location filename="../UI/UserInterface.py" line="6268" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6387" /> - <location filename="../UI/UserInterface.py" line="6323" /> + <location filename="../UI/UserInterface.py" line="6446" /> + <location filename="../UI/UserInterface.py" line="6382" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6324" /> + <location filename="../UI/UserInterface.py" line="6383" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6388" /> + <location filename="../UI/UserInterface.py" line="6447" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6430" /> + <location filename="../UI/UserInterface.py" line="6489" /> <source>Open Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6431" /> + <location filename="../UI/UserInterface.py" line="6490" /> <source>Could not start a web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6682" /> + <location filename="../UI/UserInterface.py" line="6740" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6699" /> + <location filename="../UI/UserInterface.py" line="6757" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6717" /> + <location filename="../UI/UserInterface.py" line="6775" /> <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6909" /> + <location filename="../UI/UserInterface.py" line="6967" /> <source>Read Tasks</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6910" /> + <location filename="../UI/UserInterface.py" line="6968" /> <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="6957" /> + <location filename="../UI/UserInterface.py" line="7015" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6985" /> - <location filename="../UI/UserInterface.py" line="6958" /> + <location filename="../UI/UserInterface.py" line="7043" /> + <location filename="../UI/UserInterface.py" line="7016" /> <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="6984" /> + <location filename="../UI/UserInterface.py" line="7042" /> <source>Read session</source> <translation>Leggi sessione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7000" /> + <location filename="../UI/UserInterface.py" line="7058" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7002" /> + <location filename="../UI/UserInterface.py" line="7060" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="7082" /> <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7072" /> + <location filename="../UI/UserInterface.py" line="7130" /> <source>Crash Session found!</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7073" /> + <location filename="../UI/UserInterface.py" line="7131" /> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7374" /> + <location filename="../UI/UserInterface.py" line="7432" /> <source>Drop Error</source> <translation>Errore Drop</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7375" /> + <location filename="../UI/UserInterface.py" line="7433" /> <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="7552" /> - <source>&Cancel</source> - <translation>&Cancella</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7554" /> - <source>%v/%m</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7556" /> - <source>Version Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7561" /> - <source>Trying host {0}</source> - <translation>Tento su host {0}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7630" /> - <location filename="../UI/UserInterface.py" line="7623" /> - <location filename="../UI/UserInterface.py" line="7574" /> - <source>Error getting versions information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7575" /> - <source>The versions information cannot not be downloaded because the Internet is <b>not reachable</b>. Please try again later.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7624" /> - <source>The versions information could not be downloaded. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> + <location filename="../UI/UserInterface.py" line="7597" /> + <source>Upgrade available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7598" /> + <source>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7642" /> <location filename="../UI/UserInterface.py" line="7631" /> - <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7722" /> - <location filename="../UI/UserInterface.py" line="7688" /> - <source>Update available</source> - <translation>Aggiornamento disponibile</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7723" /> - <location filename="../UI/UserInterface.py" line="7689" /> - <source>The update to <b>{0}</b> of eric is available at <b>{1}</b>. Would you like to get it?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7710" /> - <location filename="../UI/UserInterface.py" line="7700" /> - <source>Update Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7701" /> - <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7711" /> - <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7734" /> - <source>eric is up to date</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7735" /> - <source>You are using the latest version of eric</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7741" /> - <source>Error during updates check</source> - <translation>Errore nel controllo per gli update</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7742" /> - <source>Could not perform updates check.</source> - <translation>Non posso controllare per gli update.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7763" /> - <source><h3>Available versions</h3><table></source> - <translation><h3>Versioni disponibili</h3><table></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7829" /> - <location filename="../UI/UserInterface.py" line="7818" /> <source>First time usage</source> <translation>Primo avvio</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7819" /> + <location filename="../UI/UserInterface.py" line="7632" /> <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7830" /> + <location filename="../UI/UserInterface.py" line="7643" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7850" /> + <location filename="../UI/UserInterface.py" line="7663" /> <source>Select Workspace Directory</source> <translation type="unfinished">Seleziona cartella di lavoro</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8027" /> + <location filename="../UI/UserInterface.py" line="7840" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8028" /> + <location filename="../UI/UserInterface.py" line="7841" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> <message> + <source>&Cancel</source> + <translation type="vanished">&Cancella</translation> + </message> + <message> + <source>Trying host {0}</source> + <translation type="vanished">Tento su host {0}</translation> + </message> + <message> + <source>Update available</source> + <translation type="vanished">Aggiornamento disponibile</translation> + </message> + <message> + <source>Error during updates check</source> + <translation type="vanished">Errore nel controllo per gli update</translation> + </message> + <message> + <source>Could not perform updates check.</source> + <translation type="vanished">Non posso controllare per gli update.</translation> + </message> + <message> + <source><h3>Available versions</h3><table></source> + <translation type="vanished"><h3>Versioni disponibili</h3><table></translation> + </message> + <message> + <source>Check for Updates</source> + <translation type="vanished">Controlla per aggiornamenti</translation> + </message> + <message> + <source>Check for &Updates...</source> + <translation type="vanished">Controlla per &Aggiornamenti...</translation> + </message> + <message> + <source>Show downloadable versions</source> + <translation type="vanished">Mostra versioni scaricabili</translation> + </message> + <message> + <source>Show &downloadable versions...</source> + <translation type="vanished">Mostra &versioni scaricabili...</translation> + </message> + <message> + <source>Show the versions available for download</source> + <translation type="vanished">Mostra le versioni disponibili per il download</translation> + </message> + <message> <source>Eric API Documentation</source> <translation type="vanished">Documentazione API di Eric</translation> </message> @@ -91385,6 +91612,49 @@ </message> </context> <context> + <name>VersionsDialog</name> + <message> + <location filename="../UI/VersionsDialog.py" line="49" /> + <source>Check for Upgrades...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="92" /> + <source>No upgrades available.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="96" /> + <source>Upgrade eric7...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="100" /> + <source><p>An upgrade of <b>eric7</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="105" /> + <source>Upgrade PyQt6...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="109" /> + <source><p>An upgrade of <b>PyQt6</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="114" /> + <source>Upgrade Both...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="128" /> + <source>Check for Upgrades</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>ViewManager</name> <message> <location filename="../HexEdit/HexEditMainWindow.py" line="518" /> @@ -96183,7 +96453,7 @@ <context> <name>VirtualenvInterpreterSelectionDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="45" /> + <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="47" /> <source>Python Interpreter</source> <translation type="unfinished" /> </message> @@ -96211,54 +96481,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="232" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="243" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="233" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="244" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="295" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="306" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="346" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="296" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="307" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="345" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="433" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="369" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="444" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="380" /> <source>{0} - {1}</source> <translation type="unfinished">{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="377" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="378" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="441" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="452" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="453" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -97267,22 +97537,22 @@ <context> <name>WebBrowserPage</name> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="195" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="189" /> <source>Suspicuous URL detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="196" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="190" /> <source><p>The URL <b>{0}</b> was found in the Safe Browsing database.</p>{1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="663" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="657" /> <source>SSL Info</source> <translation type="unfinished">Informazioni SSL</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="664" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="658" /> <source>This site does not contain SSL information.</source> <translation type="unfinished">Questo sito non contiene informazioni SSL.</translation> </message> @@ -98605,12 +98875,12 @@ <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2282" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2287" /> <source>Quota Request</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2288" /> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished" /> </message>
--- a/eric7/i18n/eric7_pt.ts Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/i18n/eric7_pt.ts Sat Apr 02 11:23:11 2022 +0200 @@ -1529,6 +1529,26 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader Delay:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Enter the time the upgrader process should wait for eric to exit</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source> s</source> + <translation type="unfinished"> s</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> <source>Reporting</source> <translation>Informes</translation> </message> @@ -50115,7 +50135,7 @@ <translation /> </message> <message> - <location filename="../Preferences/__init__.py" line="473" /> + <location filename="../Preferences/__init__.py" line="471" /> <location filename="../QScintilla/Lexers/__init__.py" line="415" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished">Ficheiros Python (*.py *.py3)</translation> @@ -50368,7 +50388,7 @@ <translation>Ficheiros Todos (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="475" /> + <location filename="../Preferences/__init__.py" line="473" /> <location filename="../QScintilla/Lexers/__init__.py" line="585" /> <source>Python3 Files (*.py)</source> <translation>Ficheiros Python3 (*.py)</translation> @@ -56394,119 +56414,113 @@ <context> <name>Pip</name> <message> - <location filename="../PipInterface/Pip.py" line="109" /> + <location filename="../PipInterface/Pip.py" line="123" /> <source>python exited with an error ({0}).</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="116" /> + <location filename="../PipInterface/Pip.py" line="130" /> <source>python did not finish within 30 seconds.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="119" /> + <location filename="../PipInterface/Pip.py" line="133" /> <source>python could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="179" /> + <location filename="../PipInterface/Pip.py" line="193" /> <source><project></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="208" /> + <location filename="../PipInterface/Pip.py" line="222" /> <source>Interpreter for Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="209" /> + <location filename="../PipInterface/Pip.py" line="223" /> <source>No interpreter configured for the selected virtual environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="244" /> + <location filename="../PipInterface/Pip.py" line="258" /> <source>Install PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="286" /> + <location filename="../PipInterface/Pip.py" line="300" /> <source>Repair PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="359" /> - <location filename="../PipInterface/Pip.py" line="311" /> + <location filename="../PipInterface/Pip.py" line="383" /> <source>Upgrade Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="312" /> - <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/Pip.py" line="399" /> + <location filename="../PipInterface/Pip.py" line="423" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="428" /> + <location filename="../PipInterface/Pip.py" line="452" /> <source>Install Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="491" /> - <location filename="../PipInterface/Pip.py" line="460" /> - <location filename="../PipInterface/Pip.py" line="451" /> + <location filename="../PipInterface/Pip.py" line="515" /> + <location filename="../PipInterface/Pip.py" line="484" /> + <location filename="../PipInterface/Pip.py" line="475" /> <source>Uninstall Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="492" /> - <location filename="../PipInterface/Pip.py" line="452" /> + <location filename="../PipInterface/Pip.py" line="516" /> + <location filename="../PipInterface/Pip.py" line="476" /> <source>Do you really want to uninstall these packages?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="503" /> + <location filename="../PipInterface/Pip.py" line="527" /> <source>Uninstall Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="721" /> + <location filename="../PipInterface/Pip.py" line="844" /> <source>Cache Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="746" /> - <location filename="../PipInterface/Pip.py" line="738" /> + <location filename="../PipInterface/Pip.py" line="869" /> + <location filename="../PipInterface/Pip.py" line="861" /> <source>List Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="739" /> + <location filename="../PipInterface/Pip.py" line="862" /> <source>Enter a file pattern (empty for all):</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="770" /> - <location filename="../PipInterface/Pip.py" line="764" /> + <location filename="../PipInterface/Pip.py" line="893" /> + <location filename="../PipInterface/Pip.py" line="887" /> <source>Remove Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="765" /> + <location filename="../PipInterface/Pip.py" line="888" /> <source>Enter a file pattern:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="793" /> - <location filename="../PipInterface/Pip.py" line="788" /> + <location filename="../PipInterface/Pip.py" line="916" /> + <location filename="../PipInterface/Pip.py" line="911" /> <source>Purge Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="789" /> + <location filename="../PipInterface/Pip.py" line="912" /> <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source> <translation type="unfinished" /> </message> @@ -56633,18 +56647,18 @@ <location filename="../PipInterface/PipFreezeDialog.py" line="230" /> <location filename="../PipInterface/PipFreezeDialog.py" line="210" /> <location filename="../PipInterface/PipFreezeDialog.py" line="198" /> - <location filename="../PipInterface/PipFreezeDialog.py" line="118" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="122" /> <source>Generate Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="119" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="123" /> <source>The requirements were changed. Do you want to overwrite these changes?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="160" /> - <source>No output generated by 'pip freeze'.</source> + <location filename="../PipInterface/PipFreezeDialog.py" line="158" /> + <source>No package specifiers generated by 'pip freeze'.</source> <translation type="unfinished" /> </message> <message> @@ -56674,6 +56688,16 @@ </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>Select to show requirements for packages installed to the user-site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Requirements File:</source> <translation type="unfinished" /> </message> @@ -56734,6 +56758,65 @@ </message> </context> <context> + <name>PipLicensesDialog</name> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package Licenses</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Local packages only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Version</source> + <translation type="unfinished">Versão</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>License</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Count</source> + <translation type="unfinished">Contagem</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="61" /> + <source>Licenses of "{0}"</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="65" /> + <source>No environment specified.</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PipListDialog</name> <message> <source>&Refresh</source> @@ -57021,11 +57104,17 @@ <name>PipPackagesWidget</name> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Toggle to show or hide the dependency tree view</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only locally-installed packages</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Local packages only</source> <translation type="unfinished" /> </message> @@ -57046,11 +57135,23 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>User-Site only</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Perform vulnerability checks based on "Safety DB".</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Vulnerability Check</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Package</source> @@ -57058,12 +57159,18 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Installed Version</source> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Installed</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Available Version</source> + <source>Available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Affected</source> <translation type="unfinished" /> </message> <message> @@ -57109,6 +57216,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Press to show details for the selected entry</source> <translation type="unfinished" /> </message> @@ -57119,11 +57227,6 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Press to start the search</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Enter the search term for the package name</source> <translation type="unfinished" /> </message> @@ -57134,6 +57237,16 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to start the search</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to search for more packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Version</source> <translation type="unfinished">Versão</translation> </message> @@ -57158,104 +57271,150 @@ <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="169" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>View Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package requires other packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Requires</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package is required by others</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required By</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to refresh the dependency tree</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="185" /> <source>pip Menu</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="195" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="230" /> <source>Name:</source> <translation type="unfinished">Nome:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="196" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="231" /> <source>Version:</source> <translation type="unfinished">Versão:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="197" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="232" /> <source>Location:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="198" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="233" /> <source>Requires:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="199" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="234" /> <source>Summary:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="200" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="235" /> <source>Homepage:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="201" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="236" /> <source>Author:</source> <translation type="unfinished">Autor:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="202" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="237" /> <source>Author Email:</source> <translation type="unfinished">Correio Eletrónico do Autor:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="203" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="238" /> <source>License:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="204" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="239" /> <source>Metadata Version:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="205" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="240" /> <source>Installer:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="206" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="241" /> <source>Classifiers:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="207" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="242" /> <source>Entry Points:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="208" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="243" /> <source>Files:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="375" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="427" /> <source>Getting installed packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="390" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="443" /> <source>Getting outdated packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="975" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="812" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="790" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1141" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="972" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="961" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="930" /> <source>Search PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="791" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="931" /> <source><p>Received an error while searching for <b>{0}</b>.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../PipInterface/PipPackagesWidget.py" line="805" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="946" /> <source>%n package(s) found.</source> <translation type="unfinished"> <numerusform /> @@ -57263,117 +57422,158 @@ </translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="807" /> - <source>Showing first 20 packages found.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="815" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="813" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="950" /> + <source>Showing first {0} packages found.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="966" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="962" /> <source><p>There were no results for <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="976" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="973" /> + <source><p>There were no more results for <b>{0}</b>.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1142" /> <source><p>No package details info for <b>{0}</b> available.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="990" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1156" /> <source>Install Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="993" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1159" /> <source>Install Pip to User-Site</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="996" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1162" /> <source>Repair Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1116" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1000" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1299" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1166" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1003" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1169" /> <source>Install Local Package</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1007" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1173" /> <source>Install Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1010" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1176" /> <source>Re-Install Selected Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1013" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1179" /> <source>Uninstall Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1016" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1182" /> <source>Generate Requirements...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1020" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1186" /> + <source>Show Licenses...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1190" /> + <source>Check Vulnerabilities</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1194" /> + <source>Update Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1198" /> <source>Show Cache Info...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1023" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1201" /> <source>Show Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1026" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1204" /> <source>Remove Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1029" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1207" /> <source>Purge Cache...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1034" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1212" /> <source>Edit User Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1037" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1215" /> <source>Edit Environment Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1042" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1220" /> <source>Configure...</source> <translation type="unfinished">Configurar...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1237" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1224" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1213" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1421" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1408" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1397" /> <source>Edit Configuration</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1238" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1225" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1214" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1422" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1409" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1398" /> <source>No valid configuration path determined. Aborting</source> <translation type="unfinished" /> </message> <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1576" /> + <source>{0} {1}</source> + <comment>package name, package version</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1598" /> + <source>Affected Version:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1601" /> + <source>Advisory:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1716" /> + <source>any</source> + <translation type="unfinished" /> + </message> + <message> <source>Error: {0}</source> <translation type="vanished">Erro: {0}</translation> </message> @@ -57386,6 +57586,11 @@ <translation type="unfinished" /> </message> <message> + <location filename="../Preferences/ConfigurationPages/PipPage.py" line="34" /> + <source><b>Note:</b> Leave empty to use the default Safety DB URL ({0}).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source><b>Configure pip</b></source> <translation type="unfinished" /> @@ -57402,6 +57607,36 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Vulnerability Checks</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Safety DB URL:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the base URL for the Safety DB mirror to be used</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Cache Validity:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source> hours</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source>Environment</source> <translation type="unfinished" /> </message> @@ -57432,6 +57667,19 @@ </message> </context> <context> + <name>PipVulnerabilityChecker</name> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="219" /> + <source>Fetching Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="220" /> + <source><p>The vulnerability database <b>{0}</b> could not be loaded from <b>{1}</b>.</p><p>The vulnerability check is not available.</p></source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PixmapDiagram</name> <message> <location filename="../Graphics/PixmapDiagram.py" line="164" /> @@ -57845,32 +58093,32 @@ <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="445" /> + <location filename="../PluginManager/PluginManager.py" line="449" /> <source>Module failed to load. Error: {0}</source> <translation>Falho na carga de módulo. Erro: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="622" /> + <location filename="../PluginManager/PluginManager.py" line="626" /> <source>Incompatible plugin activation method.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1204" /> + <location filename="../PluginManager/PluginManager.py" line="1208" /> <source>Plugin Manager Error</source> <translation>Erro do Gestor de Complementos</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1205" /> + <location filename="../PluginManager/PluginManager.py" line="1209" /> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1271" /> + <location filename="../PluginManager/PluginManager.py" line="1275" /> <source>Error downloading file</source> <translation>Erro ao descarregar ficheiro</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1272" /> + <location filename="../PluginManager/PluginManager.py" line="1276" /> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> @@ -58039,6 +58287,21 @@ <source>Edit URL</source> <translation>Editar URL</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Startup Behavior</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Select, to check for missing plugin dependencies at startup and install them</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Automatic dependencies installation</source> + <translation type="unfinished" /> + </message> </context> <context> <name>PluginRepositoryDialog</name> @@ -58710,18 +58973,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1654" /> + <location filename="../Preferences/__init__.py" line="1658" /> <source>Export Preferences</source> <translation>Exportar Preferências</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1682" /> - <location filename="../Preferences/__init__.py" line="1656" /> + <location filename="../Preferences/__init__.py" line="1686" /> + <location filename="../Preferences/__init__.py" line="1660" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>Ficheiro de Propriedades (*.ini);;Ficheiros Todos (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> + <location filename="../Preferences/__init__.py" line="1684" /> <source>Import Preferences</source> <translation>Importar Preferências</translation> </message> @@ -84386,7 +84649,17 @@ <translation type="unfinished"><h3>Números de Versão</h3><table></translation> </message> <message> - <location filename="../Tools/TrayStarter.py" line="582" /> + <location filename="../Tools/TrayStarter.py" line="600" /> + <source>Desktop</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="603" /> + <source>Session Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="605" /> <source></table></source> <translation type="unfinished" /> </message> @@ -85992,2634 +86265,2588 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="256" /> + <location filename="../UI/UserInterface.py" line="253" /> <source>Initializing Basic Services...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="297" /> + <location filename="../UI/UserInterface.py" line="294" /> <source>Initializing Plugin Manager...</source> <translation>A iniciar Gestor de Complementos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="304" /> + <location filename="../UI/UserInterface.py" line="301" /> <source>Generating Main User Interface...</source> <translation>A criar Interface Principal de Usuário...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="346" /> + <location filename="../UI/UserInterface.py" line="343" /> <source>Setting up connections...</source> <translation>A definir coneções...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="593" /> + <location filename="../UI/UserInterface.py" line="590" /> <source>Initializing Tools...</source> <translation>A iniciar Ferramentas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="603" /> + <location filename="../UI/UserInterface.py" line="600" /> <source>Registering Objects...</source> <translation>A registar Objetos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="644" /> + <location filename="../UI/UserInterface.py" line="636" /> <source>Initializing Actions...</source> <translation>A iniciar Ações...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="646" /> + <location filename="../UI/UserInterface.py" line="638" /> <source>Initializing Menus...</source> <translation>A iniciar Menús...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="648" /> + <location filename="../UI/UserInterface.py" line="640" /> <source>Initializing Toolbars...</source> <translation>A iniciar Barras de Ferramentas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="650" /> + <location filename="../UI/UserInterface.py" line="642" /> <source>Initializing Statusbar...</source> <translation>A iniciar Barra de Estado...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="678" /> + <location filename="../UI/UserInterface.py" line="670" /> <source>Initializing Single Application Server...</source> <translation>A iniciar Servidor de Aplicação Única...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="676" /> + <source>Initializing Plugins...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="679" /> + <source>Activating Plugins...</source> + <translation>A ativar Complementos...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="681" /> + <source>Generating Plugins Toolbars...</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="684" /> - <source>Initializing Plugins...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="687" /> - <source>Activating Plugins...</source> - <translation>A ativar Complementos...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="689" /> - <source>Generating Plugins Toolbars...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="692" /> <source>Cleaning Plugins Download Area...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="703" /> + <location filename="../UI/UserInterface.py" line="695" /> <source>Restoring Toolbarmanager...</source> <translation>A restaurar Gestor da Barra de Ferramentas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="712" /> + <location filename="../UI/UserInterface.py" line="704" /> <source>Setting View Profile...</source> <translation>A definir Perfil de Vista...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="725" /> + <location filename="../UI/UserInterface.py" line="717" /> <source>Reading Tasks...</source> <translation>A Ler Tarefas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="730" /> + <location filename="../UI/UserInterface.py" line="722" /> <source>Reading Templates...</source> <translation>A ler Modelos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="735" /> + <location filename="../UI/UserInterface.py" line="727" /> <source>Starting Debugger...</source> <translation>A iniciar Depurador...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2041" /> - <location filename="../UI/UserInterface.py" line="1065" /> + <location filename="../UI/UserInterface.py" line="2033" /> + <location filename="../UI/UserInterface.py" line="1057" /> <source>Left Toolbox</source> <translation>Caixa de Ferramentas Esquerda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2072" /> - <location filename="../UI/UserInterface.py" line="1073" /> + <location filename="../UI/UserInterface.py" line="2064" /> + <location filename="../UI/UserInterface.py" line="1065" /> <source>Horizontal Toolbox</source> <translation>Caixa de Ferramentas Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2056" /> - <location filename="../UI/UserInterface.py" line="1081" /> + <location filename="../UI/UserInterface.py" line="2048" /> + <location filename="../UI/UserInterface.py" line="1073" /> <source>Right Toolbox</source> <translation>Caixa de Ferramentas Direita</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915" /> - <location filename="../UI/UserInterface.py" line="1237" /> - <location filename="../UI/UserInterface.py" line="1089" /> + <location filename="../UI/UserInterface.py" line="1907" /> + <location filename="../UI/UserInterface.py" line="1229" /> + <location filename="../UI/UserInterface.py" line="1081" /> <source>Multiproject-Viewer</source> <translation>Visor de Multiprojeto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1898" /> - <location filename="../UI/UserInterface.py" line="1242" /> - <location filename="../UI/UserInterface.py" line="1093" /> + <location filename="../UI/UserInterface.py" line="1890" /> + <location filename="../UI/UserInterface.py" line="1234" /> + <location filename="../UI/UserInterface.py" line="1085" /> <source>Project-Viewer</source> <translation>Visor de Projeto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2326" /> - <location filename="../UI/UserInterface.py" line="2325" /> - <location filename="../UI/UserInterface.py" line="1247" /> - <location filename="../UI/UserInterface.py" line="1097" /> + <location filename="../UI/UserInterface.py" line="2318" /> + <location filename="../UI/UserInterface.py" line="2317" /> + <location filename="../UI/UserInterface.py" line="1239" /> + <location filename="../UI/UserInterface.py" line="1089" /> <source>Find/Replace In Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2344" /> - <location filename="../UI/UserInterface.py" line="2343" /> - <location filename="../UI/UserInterface.py" line="1252" /> - <location filename="../UI/UserInterface.py" line="1101" /> + <location filename="../UI/UserInterface.py" line="2336" /> + <location filename="../UI/UserInterface.py" line="2335" /> + <location filename="../UI/UserInterface.py" line="1244" /> + <location filename="../UI/UserInterface.py" line="1093" /> <source>Find File</source> <translation type="unfinished">Encontrar Ficheiro</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1257" /> - <location filename="../UI/UserInterface.py" line="1105" /> + <location filename="../UI/UserInterface.py" line="1249" /> + <location filename="../UI/UserInterface.py" line="1097" /> <source>VCS Status</source> <translation type="unfinished">Estado VCS</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2022" /> - <location filename="../UI/UserInterface.py" line="1263" /> - <location filename="../UI/UserInterface.py" line="1110" /> + <location filename="../UI/UserInterface.py" line="2014" /> + <location filename="../UI/UserInterface.py" line="1255" /> + <location filename="../UI/UserInterface.py" line="1102" /> <source>Template-Viewer</source> <translation>Visor de Modelos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1968" /> - <location filename="../UI/UserInterface.py" line="1269" /> - <location filename="../UI/UserInterface.py" line="1115" /> + <location filename="../UI/UserInterface.py" line="1960" /> + <location filename="../UI/UserInterface.py" line="1261" /> + <location filename="../UI/UserInterface.py" line="1107" /> <source>File-Browser</source> <translation>Navegador de Ficheiros</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1275" /> - <location filename="../UI/UserInterface.py" line="1120" /> + <location filename="../UI/UserInterface.py" line="1267" /> + <location filename="../UI/UserInterface.py" line="1112" /> <source>Symbols</source> <translation>Símbolos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1933" /> - <location filename="../UI/UserInterface.py" line="1295" /> - <location filename="../UI/UserInterface.py" line="1290" /> - <location filename="../UI/UserInterface.py" line="1128" /> + <location filename="../UI/UserInterface.py" line="1925" /> + <location filename="../UI/UserInterface.py" line="1287" /> + <location filename="../UI/UserInterface.py" line="1282" /> + <location filename="../UI/UserInterface.py" line="1120" /> <source>Debug-Viewer</source> <translation>Visor de Depuração</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2215" /> - <location filename="../UI/UserInterface.py" line="2214" /> - <location filename="../UI/UserInterface.py" line="1301" /> - <location filename="../UI/UserInterface.py" line="1133" /> + <location filename="../UI/UserInterface.py" line="2207" /> + <location filename="../UI/UserInterface.py" line="2206" /> + <location filename="../UI/UserInterface.py" line="1293" /> + <location filename="../UI/UserInterface.py" line="1125" /> <source>Code Documentation Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2380" /> - <location filename="../UI/UserInterface.py" line="2379" /> - <location filename="../UI/UserInterface.py" line="1307" /> - <location filename="../UI/UserInterface.py" line="1138" /> + <location filename="../UI/UserInterface.py" line="2372" /> + <location filename="../UI/UserInterface.py" line="2371" /> + <location filename="../UI/UserInterface.py" line="1299" /> + <location filename="../UI/UserInterface.py" line="1130" /> <source>Help Viewer</source> <translation type="unfinished">Visor de Ajuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3103" /> - <location filename="../UI/UserInterface.py" line="2289" /> - <location filename="../UI/UserInterface.py" line="2288" /> - <location filename="../UI/UserInterface.py" line="1312" /> - <location filename="../UI/UserInterface.py" line="1142" /> + <location filename="../UI/UserInterface.py" line="3069" /> + <location filename="../UI/UserInterface.py" line="2281" /> + <location filename="../UI/UserInterface.py" line="2280" /> + <location filename="../UI/UserInterface.py" line="1304" /> + <location filename="../UI/UserInterface.py" line="1134" /> <source>Plugin Repository</source> <translation>Repositório de Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2307" /> - <location filename="../UI/UserInterface.py" line="2306" /> - <location filename="../UI/UserInterface.py" line="1317" /> - <location filename="../UI/UserInterface.py" line="1146" /> + <location filename="../UI/UserInterface.py" line="2299" /> + <location filename="../UI/UserInterface.py" line="2298" /> + <location filename="../UI/UserInterface.py" line="1309" /> + <location filename="../UI/UserInterface.py" line="1138" /> <source>Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2235" /> - <location filename="../UI/UserInterface.py" line="2234" /> - <location filename="../UI/UserInterface.py" line="1322" /> - <location filename="../UI/UserInterface.py" line="1151" /> + <location filename="../UI/UserInterface.py" line="2227" /> + <location filename="../UI/UserInterface.py" line="2226" /> + <location filename="../UI/UserInterface.py" line="1314" /> + <location filename="../UI/UserInterface.py" line="1143" /> <source>PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2253" /> - <location filename="../UI/UserInterface.py" line="2252" /> - <location filename="../UI/UserInterface.py" line="1327" /> - <location filename="../UI/UserInterface.py" line="1156" /> + <location filename="../UI/UserInterface.py" line="2245" /> + <location filename="../UI/UserInterface.py" line="2244" /> + <location filename="../UI/UserInterface.py" line="1319" /> + <location filename="../UI/UserInterface.py" line="1148" /> <source>Conda</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1332" /> - <location filename="../UI/UserInterface.py" line="1161" /> + <location filename="../UI/UserInterface.py" line="1324" /> + <location filename="../UI/UserInterface.py" line="1153" /> <source>Cooperation</source> <translation>Colaboração</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2158" /> - <location filename="../UI/UserInterface.py" line="1337" /> - <location filename="../UI/UserInterface.py" line="1166" /> + <location filename="../UI/UserInterface.py" line="2150" /> + <location filename="../UI/UserInterface.py" line="1329" /> + <location filename="../UI/UserInterface.py" line="1158" /> <source>IRC</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2271" /> - <location filename="../UI/UserInterface.py" line="2270" /> + <location filename="../UI/UserInterface.py" line="2263" /> + <location filename="../UI/UserInterface.py" line="2262" /> + <location filename="../UI/UserInterface.py" line="1335" /> + <location filename="../UI/UserInterface.py" line="1163" /> + <source>MicroPython</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1943" /> <location filename="../UI/UserInterface.py" line="1343" /> <location filename="../UI/UserInterface.py" line="1171" /> - <source>MicroPython</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1951" /> - <location filename="../UI/UserInterface.py" line="1351" /> - <location filename="../UI/UserInterface.py" line="1179" /> <source>Shell</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2003" /> - <location filename="../UI/UserInterface.py" line="1355" /> - <location filename="../UI/UserInterface.py" line="1183" /> + <location filename="../UI/UserInterface.py" line="1995" /> + <location filename="../UI/UserInterface.py" line="1347" /> + <location filename="../UI/UserInterface.py" line="1175" /> <source>Task-Viewer</source> <translation>Visor de Tarefas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1985" /> - <location filename="../UI/UserInterface.py" line="1359" /> - <location filename="../UI/UserInterface.py" line="1187" /> + <location filename="../UI/UserInterface.py" line="1977" /> + <location filename="../UI/UserInterface.py" line="1351" /> + <location filename="../UI/UserInterface.py" line="1179" /> <source>Log-Viewer</source> <translation>Visor de Registos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1364" /> - <location filename="../UI/UserInterface.py" line="1192" /> + <location filename="../UI/UserInterface.py" line="1356" /> + <location filename="../UI/UserInterface.py" line="1184" /> <source>Numbers</source> <translation>Números</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752" /> + <location filename="../UI/UserInterface.py" line="1744" /> <source>{0} - Passive Mode</source> <translation>{0} - Modo Passivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1759" /> - <location filename="../UI/UserInterface.py" line="1755" /> + <location filename="../UI/UserInterface.py" line="1751" /> + <location filename="../UI/UserInterface.py" line="1747" /> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - Modo Passivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1763" /> + <location filename="../UI/UserInterface.py" line="1755" /> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - Modo Passivo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1786" /> + <location filename="../UI/UserInterface.py" line="1778" /> <source>Quit</source> <translation>Sair</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1788" /> + <location filename="../UI/UserInterface.py" line="1780" /> <source>&Quit</source> <translation>Sai&r</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1789" /> + <location filename="../UI/UserInterface.py" line="1781" /> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1791" /> + <location filename="../UI/UserInterface.py" line="1783" /> <source>Quit the IDE</source> <translation>Sair do IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1792" /> + <location filename="../UI/UserInterface.py" line="1784" /> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Sair do IDE</b><p>Isto sai do IDE. Pode gravar antes as alterações. Qualquer programa Python que esteja a ser depurado será parado e as preferências serão escritas no disco.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1805" /> - <location filename="../UI/UserInterface.py" line="1803" /> + <location filename="../UI/UserInterface.py" line="1797" /> + <location filename="../UI/UserInterface.py" line="1795" /> <source>Restart</source> <translation type="unfinished">Reiniciar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806" /> + <location filename="../UI/UserInterface.py" line="1798" /> <source>Ctrl+Shift+Q</source> <comment>File|Quit</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1808" /> + <location filename="../UI/UserInterface.py" line="1800" /> <source>Restart the IDE</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1809" /> + <location filename="../UI/UserInterface.py" line="1801" /> <source><b>Restart the IDE</b><p>This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1822" /> - <location filename="../UI/UserInterface.py" line="1819" /> + <location filename="../UI/UserInterface.py" line="1814" /> + <location filename="../UI/UserInterface.py" line="1811" /> <source>Save session</source> <translation>Guargar sessão</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1820" /> + <location filename="../UI/UserInterface.py" line="1812" /> <source>Save session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1823" /> + <location filename="../UI/UserInterface.py" line="1815" /> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7022" /> - <location filename="../UI/UserInterface.py" line="1835" /> - <location filename="../UI/UserInterface.py" line="1832" /> + <location filename="../UI/UserInterface.py" line="7080" /> + <location filename="../UI/UserInterface.py" line="1827" /> + <location filename="../UI/UserInterface.py" line="1824" /> <source>Load session</source> <translation type="unfinished">Carregar sessão</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1833" /> + <location filename="../UI/UserInterface.py" line="1825" /> <source>Load session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1836" /> + <location filename="../UI/UserInterface.py" line="1828" /> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1845" /> + <location filename="../UI/UserInterface.py" line="1837" /> <source>New Window</source> <translation>Nova Janela</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1847" /> + <location filename="../UI/UserInterface.py" line="1839" /> <source>New &Window</source> <translation>Nova &Janela</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848" /> + <location filename="../UI/UserInterface.py" line="1840" /> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1850" /> + <location filename="../UI/UserInterface.py" line="1842" /> <source>Open a new eric instance</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1852" /> + <location filename="../UI/UserInterface.py" line="1844" /> <source><b>New Window</b><p>This opens a new instance of the eric IDE.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1866" /> - <location filename="../UI/UserInterface.py" line="1864" /> + <location filename="../UI/UserInterface.py" line="1858" /> + <location filename="../UI/UserInterface.py" line="1856" /> <source>Edit Profile</source> <translation>Perfil de Edição</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1869" /> + <location filename="../UI/UserInterface.py" line="1861" /> <source>Activate the edit view profile</source> <translation>Ativar o perfil de vista de edição</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871" /> + <location filename="../UI/UserInterface.py" line="1863" /> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Perfil de Edição</b><p>Activa o "Perfil da Vista de Edição". As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo "Configuração de Vista do Perfil"</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1883" /> - <location filename="../UI/UserInterface.py" line="1881" /> + <location filename="../UI/UserInterface.py" line="1875" /> + <location filename="../UI/UserInterface.py" line="1873" /> <source>Debug Profile</source> <translation>Perfil de Depuração</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1887" /> + <location filename="../UI/UserInterface.py" line="1879" /> <source>Activate the debug view profile</source> <translation>Ativar o perfile de vista de depuração</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1888" /> + <location filename="../UI/UserInterface.py" line="1880" /> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Perfil de Depuração</b><p>Activa o "Perfile da Vista de Depuração". As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo "Configuração de Vista do Perfil"</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899" /> + <location filename="../UI/UserInterface.py" line="1891" /> <source>&Project-Viewer</source> <translation>Visor de &Projeto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1900" /> + <location filename="../UI/UserInterface.py" line="1892" /> <source>Alt+Shift+P</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1903" /> + <location filename="../UI/UserInterface.py" line="1895" /> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1905" /> + <location filename="../UI/UserInterface.py" line="1897" /> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1916" /> + <location filename="../UI/UserInterface.py" line="1908" /> <source>&Multiproject-Viewer</source> <translation>Visor de &Multiprojeto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1917" /> + <location filename="../UI/UserInterface.py" line="1909" /> <source>Alt+Shift+M</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1920" /> + <location filename="../UI/UserInterface.py" line="1912" /> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1922" /> + <location filename="../UI/UserInterface.py" line="1914" /> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1934" /> + <location filename="../UI/UserInterface.py" line="1926" /> <source>&Debug-Viewer</source> <translation>Visor de &Depuração</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935" /> + <location filename="../UI/UserInterface.py" line="1927" /> <source>Alt+Shift+D</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1938" /> + <location filename="../UI/UserInterface.py" line="1930" /> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1940" /> + <location filename="../UI/UserInterface.py" line="1932" /> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1952" /> + <location filename="../UI/UserInterface.py" line="1944" /> <source>&Shell</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1953" /> + <location filename="../UI/UserInterface.py" line="1945" /> <source>Alt+Shift+S</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1956" /> + <location filename="../UI/UserInterface.py" line="1948" /> <source>Switch the input focus to the Shell window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1958" /> + <location filename="../UI/UserInterface.py" line="1950" /> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1969" /> + <location filename="../UI/UserInterface.py" line="1961" /> <source>&File-Browser</source> <translation>Navegador de &Ficheiros</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1970" /> + <location filename="../UI/UserInterface.py" line="1962" /> <source>Alt+Shift+F</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1973" /> + <location filename="../UI/UserInterface.py" line="1965" /> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1975" /> + <location filename="../UI/UserInterface.py" line="1967" /> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1986" /> + <location filename="../UI/UserInterface.py" line="1978" /> <source>Lo&g-Viewer</source> <translation>Visor de Re&gistos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1987" /> + <location filename="../UI/UserInterface.py" line="1979" /> <source>Alt+Shift+G</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="1990" /> + <location filename="../UI/UserInterface.py" line="1982" /> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1992" /> + <location filename="../UI/UserInterface.py" line="1984" /> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2004" /> + <location filename="../UI/UserInterface.py" line="1996" /> <source>&Task-Viewer</source> <translation>Visor de &Tarefas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2005" /> + <location filename="../UI/UserInterface.py" line="1997" /> <source>Alt+Shift+T</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2008" /> + <location filename="../UI/UserInterface.py" line="2000" /> <source>Switch the input focus to the Task-Viewer window.</source> <translation>Muda o enfoque de entrada à janela do Visor de Tarefas.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2010" /> + <location filename="../UI/UserInterface.py" line="2002" /> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2023" /> + <location filename="../UI/UserInterface.py" line="2015" /> <source>Templ&ate-Viewer</source> <translation>Visor de Mod&elos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2024" /> + <location filename="../UI/UserInterface.py" line="2016" /> <source>Alt+Shift+A</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2027" /> + <location filename="../UI/UserInterface.py" line="2019" /> <source>Switch the input focus to the Template-Viewer window.</source> <translation>Muda o enfoque de entrada à janela do Visor de Modelos.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2029" /> + <location filename="../UI/UserInterface.py" line="2021" /> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2042" /> + <location filename="../UI/UserInterface.py" line="2034" /> <source>&Left Toolbox</source> <translation>Caixa de Ferramentas &Esquerda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2043" /> + <location filename="../UI/UserInterface.py" line="2035" /> <source>Toggle the Left Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2044" /> + <location filename="../UI/UserInterface.py" line="2036" /> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2057" /> + <location filename="../UI/UserInterface.py" line="2049" /> <source>&Right Toolbox</source> <translation>Caixa de Ferramentas Di&reita</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2059" /> + <location filename="../UI/UserInterface.py" line="2051" /> <source>Toggle the Right Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2060" /> + <location filename="../UI/UserInterface.py" line="2052" /> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2073" /> + <location filename="../UI/UserInterface.py" line="2065" /> <source>&Horizontal Toolbox</source> <translation>Caixa de Ferramentas &Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2075" /> + <location filename="../UI/UserInterface.py" line="2067" /> <source>Toggle the Horizontal Toolbox window</source> <translation>Alternar a janela de Caixa de Ferramentas Horizontal</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2077" /> + <location filename="../UI/UserInterface.py" line="2069" /> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2089" /> + <location filename="../UI/UserInterface.py" line="2081" /> <source>Left Sidebar</source> <translation>Barra Esquerda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2090" /> + <location filename="../UI/UserInterface.py" line="2082" /> <source>&Left Sidebar</source> <translation>Barra Lateral &Esquerda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2092" /> + <location filename="../UI/UserInterface.py" line="2084" /> <source>Toggle the left sidebar window</source> <translation>Alternar a janela da barra lateral esquerda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2093" /> + <location filename="../UI/UserInterface.py" line="2085" /> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2105" /> + <location filename="../UI/UserInterface.py" line="2097" /> <source>Right Sidebar</source> <translation>Barra Direita</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2106" /> + <location filename="../UI/UserInterface.py" line="2098" /> <source>&Right Sidebar</source> <translation>Barra Lateral Di&reita</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2108" /> + <location filename="../UI/UserInterface.py" line="2100" /> <source>Toggle the right sidebar window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2110" /> + <location filename="../UI/UserInterface.py" line="2102" /> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2122" /> + <location filename="../UI/UserInterface.py" line="2114" /> <source>Bottom Sidebar</source> <translation>Barra Inferior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2123" /> + <location filename="../UI/UserInterface.py" line="2115" /> <source>&Bottom Sidebar</source> <translation>Barra Lateral &Inferior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2125" /> + <location filename="../UI/UserInterface.py" line="2117" /> <source>Toggle the bottom sidebar window</source> <translation>Alternar janela da barra lateral inferior</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2127" /> + <location filename="../UI/UserInterface.py" line="2119" /> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Alternar janela da barra lateral inferior</b><p>Mostra a janela da barra lateral inferior se está escondida. Esconde-a se está visível.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139" /> + <location filename="../UI/UserInterface.py" line="2131" /> <source>Cooperation-Viewer</source> <translation>Visor de Colaboração</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2140" /> + <location filename="../UI/UserInterface.py" line="2132" /> <source>Co&operation-Viewer</source> <translation>Visor de C&olaboração</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2141" /> + <location filename="../UI/UserInterface.py" line="2133" /> <source>Alt+Shift+O</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2144" /> + <location filename="../UI/UserInterface.py" line="2136" /> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2146" /> + <location filename="../UI/UserInterface.py" line="2138" /> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation><b>Ativar Visor de Colaboração</b><p>Muda o enfoque de entrada para a janela do Visualizador de Colaboração.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2159" /> + <location filename="../UI/UserInterface.py" line="2151" /> <source>&IRC</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2160" /> + <location filename="../UI/UserInterface.py" line="2152" /> <source>Ctrl+Alt+Shift+I</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2163" /> + <location filename="../UI/UserInterface.py" line="2155" /> <source>Switch the input focus to the IRC window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2165" /> + <location filename="../UI/UserInterface.py" line="2157" /> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2176" /> + <location filename="../UI/UserInterface.py" line="2168" /> <source>Symbols-Viewer</source> <translation>Visor de Símbolos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2177" /> + <location filename="../UI/UserInterface.py" line="2169" /> <source>S&ymbols-Viewer</source> <translation>V&isor de Símbolos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2178" /> + <location filename="../UI/UserInterface.py" line="2170" /> <source>Alt+Shift+Y</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2181" /> + <location filename="../UI/UserInterface.py" line="2173" /> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2183" /> + <location filename="../UI/UserInterface.py" line="2175" /> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2195" /> + <location filename="../UI/UserInterface.py" line="2187" /> <source>Numbers-Viewer</source> <translation>Visor de Números</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196" /> + <location filename="../UI/UserInterface.py" line="2188" /> <source>Num&bers-Viewer</source> <translation>Visor de Nú&meros</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2197" /> + <location filename="../UI/UserInterface.py" line="2189" /> <source>Alt+Shift+B</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2200" /> + <location filename="../UI/UserInterface.py" line="2192" /> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2202" /> + <location filename="../UI/UserInterface.py" line="2194" /> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2216" /> + <location filename="../UI/UserInterface.py" line="2208" /> <source>Ctrl+Alt+Shift+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2219" /> + <location filename="../UI/UserInterface.py" line="2211" /> <source>Switch the input focus to the Code Documentation Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2222" /> + <location filename="../UI/UserInterface.py" line="2214" /> <source><b>Code Documentation Viewer</b><p>This switches the input focus to the Code Documentation Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2236" /> + <location filename="../UI/UserInterface.py" line="2228" /> <source>Ctrl+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2239" /> + <location filename="../UI/UserInterface.py" line="2231" /> <source>Switch the input focus to the PyPI window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2241" /> + <location filename="../UI/UserInterface.py" line="2233" /> <source><b>PyPI</b><p>This switches the input focus to the PyPI window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2254" /> + <location filename="../UI/UserInterface.py" line="2246" /> <source>Ctrl+Alt+Shift+C</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2257" /> + <location filename="../UI/UserInterface.py" line="2249" /> <source>Switch the input focus to the Conda window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2259" /> + <location filename="../UI/UserInterface.py" line="2251" /> <source><b>Conda</b><p>This switches the input focus to the Conda window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2272" /> + <location filename="../UI/UserInterface.py" line="2264" /> <source>Ctrl+Alt+Shift+M</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2275" /> + <location filename="../UI/UserInterface.py" line="2267" /> <source>Switch the input focus to the MicroPython window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2277" /> + <location filename="../UI/UserInterface.py" line="2269" /> <source><b>MicroPython</b><p>This switches the input focus to the MicroPython window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2290" /> + <location filename="../UI/UserInterface.py" line="2282" /> <source>Ctrl+Alt+Shift+R</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2293" /> + <location filename="../UI/UserInterface.py" line="2285" /> <source>Switch the input focus to the Plugin Repository window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2295" /> + <location filename="../UI/UserInterface.py" line="2287" /> <source><b>Plugin Repository</b><p>This switches the input focus to the Plugin Repository window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2308" /> + <location filename="../UI/UserInterface.py" line="2300" /> <source>Ctrl+Alt+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2311" /> + <location filename="../UI/UserInterface.py" line="2303" /> <source>Switch the input focus to the Virtual Environments Manager window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2314" /> + <location filename="../UI/UserInterface.py" line="2306" /> <source><b>Virtual Environments</b><p>This switches the input focus to the Virtual Environments Manager window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2327" /> + <location filename="../UI/UserInterface.py" line="2319" /> <source>Ctrl+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2330" /> + <location filename="../UI/UserInterface.py" line="2322" /> <source>Switch the input focus to the Find/Replace In Files window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2332" /> + <location filename="../UI/UserInterface.py" line="2324" /> <source><b>Find/Replace In Files</b><p>This switches the input focus to the Find/Replace In Files window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2345" /> + <location filename="../UI/UserInterface.py" line="2337" /> <source>Ctrl+Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2348" /> + <location filename="../UI/UserInterface.py" line="2340" /> <source>Switch the input focus to the Find File window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2350" /> + <location filename="../UI/UserInterface.py" line="2342" /> <source><b>Find File</b><p>This switches the input focus to the Find File window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2362" /> - <location filename="../UI/UserInterface.py" line="2361" /> + <location filename="../UI/UserInterface.py" line="2354" /> + <location filename="../UI/UserInterface.py" line="2353" /> <source>VCS Status List</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2363" /> + <location filename="../UI/UserInterface.py" line="2355" /> <source>Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2366" /> + <location filename="../UI/UserInterface.py" line="2358" /> <source>Switch the input focus to the VCS Status List window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2368" /> + <location filename="../UI/UserInterface.py" line="2360" /> <source><b>VCS Status List</b><p>This switches the input focus to the VCS Status List window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2381" /> + <location filename="../UI/UserInterface.py" line="2373" /> <source>Alt+Shift+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2384" /> + <location filename="../UI/UserInterface.py" line="2376" /> <source>Switch the input focus to the embedded Help Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2386" /> + <location filename="../UI/UserInterface.py" line="2378" /> <source><b>Help Viewer</b><p>This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2399" /> + <location filename="../UI/UserInterface.py" line="2391" /> <source>What's This?</source> <translation>O que é Isto?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2401" /> + <location filename="../UI/UserInterface.py" line="2393" /> <source>&What's This?</source> <translation>O &que é Isto?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2402" /> + <location filename="../UI/UserInterface.py" line="2394" /> <source>Shift+F1</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2404" /> + <location filename="../UI/UserInterface.py" line="2396" /> <source>Context sensitive help</source> <translation type="unfinished">Ajuda sensível ao contexto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2405" /> + <location filename="../UI/UserInterface.py" line="2397" /> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation type="unfinished"><b>Mostrar ajuda sensível a contexto</b><p>No modo 'Que é Isto?' o cursor do rato mostra uma flecha com um ponto de interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2417" /> + <location filename="../UI/UserInterface.py" line="2409" /> <source>Helpviewer</source> <translation>Visor de Ajuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419" /> + <location filename="../UI/UserInterface.py" line="2411" /> <source>&Helpviewer...</source> <translation>Visor de &Ajuda...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2420" /> + <location filename="../UI/UserInterface.py" line="2412" /> <source>F1</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2422" /> + <location filename="../UI/UserInterface.py" line="2414" /> <source>Open the helpviewer window</source> <translation>Abrir a janela do visor de ajuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2424" /> + <location filename="../UI/UserInterface.py" line="2416" /> <source><b>Helpviewer</b><p>Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2443" /> + <location filename="../UI/UserInterface.py" line="2435" /> <source>Show Versions</source> <translation>Mostrar Versões</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2444" /> + <location filename="../UI/UserInterface.py" line="2436" /> <source>Show &Versions</source> <translation>Mostrar &Versões</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446" /> + <location filename="../UI/UserInterface.py" line="2438" /> <source>Display version information</source> <translation>Mostrar a informação da versão</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2448" /> + <location filename="../UI/UserInterface.py" line="2440" /> <source><b>Show Versions</b><p>Display version information.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2458" /> - <location filename="../UI/UserInterface.py" line="2456" /> - <source>Check for Updates</source> - <translation>Procurar Atualizações</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2457" /> - <source>Check for &Updates...</source> - <translation>Procurar &Atualizações...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2459" /> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2467" /> - <source>Show downloadable versions</source> - <translation>Mostrar versões descarregáveis</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2468" /> - <source>Show &downloadable versions...</source> - <translation>Mostrar versões &descarregáveis...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2471" /> - <source>Show the versions available for download</source> - <translation>Mostrar as versões disponíveis para descarregar</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2472" /> - <source><b>Show downloadable versions...</b><p>Shows the eric versions available for download from the internet.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2485" /> - <location filename="../UI/UserInterface.py" line="2482" /> + <location filename="../UI/UserInterface.py" line="2451" /> + <location filename="../UI/UserInterface.py" line="2448" /> <source>Show Error Log</source> <translation>Mostrar Registo de Erros</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2483" /> + <location filename="../UI/UserInterface.py" line="2449" /> <source>Show Error &Log...</source> <translation>Mostrar &Registo de Erros...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2452" /> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2460" /> + <source>Show Install Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2461" /> + <source>Show Install &Info...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2463" /> + <source>Show Installation Information</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2465" /> + <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4083" /> + <location filename="../UI/UserInterface.py" line="2474" /> + <source>Report Bug</source> + <translation>Reportar Falho</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2475" /> + <source>Report &Bug...</source> + <translation>Reportar &Falho...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2477" /> + <source>Report a bug</source> + <translation>Reportar um falho</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2478" /> + <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <translation><b>Reportar Falho...</b><p>Abre uma caixa de diálogo para reportar um falho.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2486" /> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2494" /> - <source>Show Install Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2495" /> - <source>Show Install &Info...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2497" /> - <source>Show Installation Information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2499" /> - <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4120" /> - <location filename="../UI/UserInterface.py" line="2508" /> - <source>Report Bug</source> - <translation>Reportar Falho</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2509" /> - <source>Report &Bug...</source> - <translation>Reportar &Falho...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2511" /> - <source>Report a bug</source> - <translation>Reportar um falho</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512" /> - <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> - <translation><b>Reportar Falho...</b><p>Abre uma caixa de diálogo para reportar um falho.</p></translation> + <source>Request Feature</source> + <translation>Solicitar Característica</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2487" /> + <source>Request &Feature...</source> + <translation>Solicitar Ca&racterística...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2489" /> + <source>Send a feature request</source> + <translation>Enviar uma solicitude de característica</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2491" /> + <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> + <translation><b>Solicitar Característica...</b><p>Abre uma caixa de diálogo para enviar uma solicitude de característica.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606" /> + <location filename="../UI/UserInterface.py" line="3583" /> + <location filename="../UI/UserInterface.py" line="2501" /> + <source>Unittest</source> + <translation>Teste Unitário</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2503" /> + <source>&Unittest...</source> + <translation>Teste &Unitário...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2505" /> + <source>Start unittest dialog</source> + <translation>Iniciar a caixa de diálogo de teste unitário</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506" /> + <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2515" /> + <source>Unittest Restart</source> + <translation>Reiniciar Teste Unitário</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2517" /> + <source>&Restart Unittest...</source> + <translation>&Reiniciar Teste Unitário...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2519" /> + <source>Restart last unittest</source> + <translation>Reiniciar o último teste unitário</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2520" /> - <source>Request Feature</source> - <translation>Solicitar Característica</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2521" /> - <source>Request &Feature...</source> - <translation>Solicitar Ca&racterística...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2523" /> - <source>Send a feature request</source> - <translation>Enviar uma solicitude de característica</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2525" /> - <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> - <translation><b>Solicitar Característica...</b><p>Abre uma caixa de diálogo para enviar uma solicitude de característica.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3643" /> - <location filename="../UI/UserInterface.py" line="3620" /> + <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2529" /> + <source>Unittest Rerun Failed</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2531" /> + <source>Rerun Failed Tests...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2533" /> + <source>Rerun failed tests of the last run</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2535" /> - <source>Unittest</source> - <translation>Teste Unitário</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2537" /> - <source>&Unittest...</source> - <translation>Teste &Unitário...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2539" /> - <source>Start unittest dialog</source> - <translation>Iniciar a caixa de diálogo de teste unitário</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2540" /> - <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> - <translation type="unfinished" /> + <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2545" /> + <source>Unittest Script</source> + <translation>Teste Unitário ao Script</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2547" /> + <source>Unittest &Script...</source> + <translation>Teste Unitário ao &Script...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2549" /> - <source>Unittest Restart</source> - <translation>Reiniciar Teste Unitário</translation> + <source>Run unittest with current script</source> + <translation>Executar teste unitário com o script atual</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2551" /> - <source>&Restart Unittest...</source> - <translation>&Reiniciar Teste Unitário...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2553" /> - <source>Restart last unittest</source> - <translation>Reiniciar o último teste unitário</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2554" /> - <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2563" /> - <source>Unittest Rerun Failed</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2565" /> - <source>Rerun Failed Tests...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2567" /> - <source>Rerun failed tests of the last run</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2569" /> - <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2579" /> - <source>Unittest Script</source> - <translation>Teste Unitário ao Script</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2581" /> - <source>Unittest &Script...</source> - <translation>Teste Unitário ao &Script...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2583" /> - <source>Run unittest with current script</source> - <translation>Executar teste unitário com o script atual</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2585" /> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Teste Unitário ao Script</b><p>Executar teste unitário com o script atual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2594" /> + <location filename="../UI/UserInterface.py" line="2560" /> <source>Unittest Project</source> <translation>Teste Unitário ao Projeto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596" /> + <location filename="../UI/UserInterface.py" line="2562" /> <source>Unittest &Project...</source> <translation>Teste Unitário ao &Projeto...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2598" /> + <location filename="../UI/UserInterface.py" line="2564" /> <source>Run unittest with current project</source> <translation>Executar teste unitário com o projeto atual</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600" /> + <location filename="../UI/UserInterface.py" line="2566" /> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Teste Unitário ao Projeto</b><p>Executar teste unitário com o projeto atual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2621" /> + <location filename="../UI/UserInterface.py" line="2587" /> <source>Qt-Designer</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2623" /> + <location filename="../UI/UserInterface.py" line="2589" /> <source>Qt-&Designer...</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="2625" /> + <location filename="../UI/UserInterface.py" line="2591" /> <source>Start Qt-Designer</source> <translation>Iniciar Qt-Designer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2626" /> + <location filename="../UI/UserInterface.py" line="2592" /> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2613" /> + <source>Qt-Linguist</source> + <translation /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2615" /> + <source>Qt-&Linguist...</source> + <translation /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2617" /> + <source>Start Qt-Linguist</source> + <translation>Iniciar Qt-Linguist</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2618" /> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2628" /> + <source>UI Previewer</source> + <translation>Antevisor de UI</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2630" /> + <source>&UI Previewer...</source> + <translation>Antevisor &UI...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2632" /> + <source>Start the UI Previewer</source> + <translation>Iniciar Antevisor de UI</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2633" /> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation><b>Antevisor de UI</b><p>Inicia o Antevisor de UI.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2641" /> + <source>Translations Previewer</source> + <translation>Antevisor de Traduções</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2643" /> + <source>&Translations Previewer...</source> + <translation>Antevisor de &Traduções...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2645" /> + <source>Start the Translations Previewer</source> + <translation>Iniciar Antevisor de Traduções</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2647" /> - <source>Qt-Linguist</source> - <translation /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2649" /> - <source>Qt-&Linguist...</source> - <translation /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2651" /> - <source>Start Qt-Linguist</source> - <translation>Iniciar Qt-Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2652" /> - <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2662" /> - <source>UI Previewer</source> - <translation>Antevisor de UI</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2664" /> - <source>&UI Previewer...</source> - <translation>Antevisor &UI...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2666" /> - <source>Start the UI Previewer</source> - <translation>Iniciar Antevisor de UI</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2667" /> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation><b>Antevisor de UI</b><p>Inicia o Antevisor de UI.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2675" /> - <source>Translations Previewer</source> - <translation>Antevisor de Traduções</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2677" /> - <source>&Translations Previewer...</source> - <translation>Antevisor de &Traduções...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2679" /> - <source>Start the Translations Previewer</source> - <translation>Iniciar Antevisor de Traduções</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2681" /> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2689" /> + <location filename="../UI/UserInterface.py" line="2655" /> <source>Compare Files</source> <translation>Comparar Ficheiros</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691" /> + <location filename="../UI/UserInterface.py" line="2657" /> <source>&Compare Files...</source> <translation>&Comparar Ficheiros...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2706" /> - <location filename="../UI/UserInterface.py" line="2693" /> + <location filename="../UI/UserInterface.py" line="2672" /> + <location filename="../UI/UserInterface.py" line="2659" /> <source>Compare two files</source> <translation>Comparar dois ficheiros</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2694" /> + <location filename="../UI/UserInterface.py" line="2660" /> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2702" /> + <location filename="../UI/UserInterface.py" line="2668" /> <source>Compare Files side by side</source> <translation>Comparar Ficheiros lado-a-lado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2704" /> + <location filename="../UI/UserInterface.py" line="2670" /> <source>Compare &Files side by side...</source> <translation>Comparar &Ficheiros lado-a-lado...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2707" /> + <location filename="../UI/UserInterface.py" line="2673" /> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2716" /> + <location filename="../UI/UserInterface.py" line="2682" /> <source>SQL Browser</source> <translation>Navegador SQL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2718" /> + <location filename="../UI/UserInterface.py" line="2684" /> <source>SQL &Browser...</source> <translation>Navegador S&QL...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2720" /> + <location filename="../UI/UserInterface.py" line="2686" /> <source>Browse a SQL database</source> <translation>Navegar numa base de dados SQL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2721" /> + <location filename="../UI/UserInterface.py" line="2687" /> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>Navegador SQL</b><p>Navegar numa base de dados SQL.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2733" /> - <location filename="../UI/UserInterface.py" line="2729" /> + <location filename="../UI/UserInterface.py" line="2699" /> + <location filename="../UI/UserInterface.py" line="2695" /> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2731" /> + <location filename="../UI/UserInterface.py" line="2697" /> <source>Mini &Editor...</source> <translation>Mini &Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2734" /> + <location filename="../UI/UserInterface.py" line="2700" /> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Editor</b><p>Abre uma caixa de diálogo com um editor simplificado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2742" /> + <location filename="../UI/UserInterface.py" line="2708" /> <source>Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2744" /> + <location filename="../UI/UserInterface.py" line="2710" /> <source>&Hex Editor...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2746" /> + <location filename="../UI/UserInterface.py" line="2712" /> <source>Start the eric Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2748" /> + <location filename="../UI/UserInterface.py" line="2714" /> <source><b>Hex Editor</b><p>Starts the eric Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2723" /> + <source>eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2725" /> + <source>eric &Web Browser...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2727" /> + <source>Start the eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2729" /> + <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2737" /> + <source>Icon Editor</source> + <translation>Editor de Ícones</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2739" /> + <source>&Icon Editor...</source> + <translation>Editor de &Ícones...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2741" /> + <source>Start the eric Icon Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2743" /> + <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2751" /> + <source>Snapshot</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2753" /> + <source>&Snapshot...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2755" /> + <source>Take snapshots of a screen region</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757" /> - <source>eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2759" /> - <source>eric &Web Browser...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2761" /> - <source>Start the eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2763" /> - <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2771" /> - <source>Icon Editor</source> - <translation>Editor de Ícones</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2773" /> - <source>&Icon Editor...</source> - <translation>Editor de &Ícones...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2775" /> - <source>Start the eric Icon Editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2777" /> - <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2785" /> - <source>Snapshot</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2787" /> - <source>&Snapshot...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2789" /> - <source>Take snapshots of a screen region</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2791" /> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2766" /> + <source>Preferences</source> + <translation>Preferências</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768" /> + <source>&Preferences...</source> + <translation>&Preferências...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2770" /> + <source>Set the prefered configuration</source> + <translation>Definir a configuração desejada</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2772" /> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation><b>Preferências</b><p>Define os elementos de configuração da aplicação com os valores desejados.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782" /> + <source>Export Preferences</source> + <translation>Exportar Preferências</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2784" /> + <source>E&xport Preferences...</source> + <translation>E&xportar Preferências...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2786" /> + <source>Export the current configuration</source> + <translation>Exportar a configuração atual</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2788" /> + <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <translation><b>Exportar Preferências</b><p>Exporta a configuração atual a um ficheiro.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2796" /> + <source>Import Preferences</source> + <translation>Importar Preferências</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2798" /> + <source>I&mport Preferences...</source> + <translation>&Importar Preferências...</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2800" /> - <source>Preferences</source> - <translation>Preferências</translation> + <source>Import a previously exported configuration</source> + <translation>Importar uma configuração exportada antes</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2802" /> - <source>&Preferences...</source> - <translation>&Preferências...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2804" /> - <source>Set the prefered configuration</source> - <translation>Definir a configuração desejada</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2806" /> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> - <translation><b>Preferências</b><p>Define os elementos de configuração da aplicação com os valores desejados.</p></translation> + <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> + <translation><b>Importar Preferências</b><p>Importa uma configuração anteriormente exportada.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2810" /> + <source>Export Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2812" /> + <source>Export Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2814" /> + <source>Export the current theme</source> + <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2816" /> - <source>Export Preferences</source> - <translation>Exportar Preferências</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2818" /> - <source>E&xport Preferences...</source> - <translation>E&xportar Preferências...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2820" /> - <source>Export the current configuration</source> - <translation>Exportar a configuração atual</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2822" /> - <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> - <translation><b>Exportar Preferências</b><p>Exporta a configuração atual a um ficheiro.</p></translation> + <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2824" /> + <source>Import Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2826" /> + <source>Import Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2828" /> + <source>Import a previously exported theme</source> + <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2830" /> - <source>Import Preferences</source> - <translation>Importar Preferências</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2832" /> - <source>I&mport Preferences...</source> - <translation>&Importar Preferências...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2834" /> - <source>Import a previously exported configuration</source> - <translation>Importar uma configuração exportada antes</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2836" /> - <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> - <translation><b>Importar Preferências</b><p>Importa uma configuração anteriormente exportada.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2844" /> - <source>Export Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2846" /> - <source>Export Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2848" /> - <source>Export the current theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2850" /> - <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2858" /> - <source>Import Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2860" /> - <source>Import Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2862" /> - <source>Import a previously exported theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2864" /> <source><b>Import Theme</b><p>Import a previously exported theme.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2872" /> + <location filename="../UI/UserInterface.py" line="2838" /> <source>Reload APIs</source> <translation>Recarregar APIs</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2839" /> + <source>Reload &APIs</source> + <translation>Recarregar &APIs</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2841" /> + <source>Reload the API information</source> + <translation>Recarregar a informação de API</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2843" /> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2855" /> + <location filename="../UI/UserInterface.py" line="2851" /> + <source>Show external tools</source> + <translation>Mostrar ferramentas externas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2853" /> + <source>Show external &tools</source> + <translation>Mostrar &ferramentas externas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857" /> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2867" /> + <source>View Profiles</source> + <translation>Perfiles de Vista</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2869" /> + <source>&View Profiles...</source> + <translation>Perfiles de &Vista...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2871" /> + <source>Configure view profiles</source> + <translation>Configurar perfiles de vista</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2873" /> - <source>Reload &APIs</source> - <translation>Recarregar &APIs</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2875" /> - <source>Reload the API information</source> - <translation>Recarregar a informação de API</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2877" /> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> - <translation type="unfinished" /> + <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <translation><b>Perfiles de Vista</b><p>Configurar os perfiles de vista. Com esta caixa de diálogo pode definir a visibilidade de várias janelas para os perfiles de vista predefinidos.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2884" /> + <source>Toolbars</source> + <translation>Barras de Ferramentas</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2886" /> + <source>Tool&bars...</source> + <translation>&Barras de Ferramentas...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2888" /> + <source>Configure toolbars</source> + <translation>Configurar as barras de ferramentas</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2889" /> - <location filename="../UI/UserInterface.py" line="2885" /> - <source>Show external tools</source> - <translation>Mostrar ferramentas externas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887" /> - <source>Show external &tools</source> - <translation>Mostrar &ferramentas externas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2891" /> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> - <translation type="unfinished" /> + <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2899" /> + <source>Keyboard Shortcuts</source> + <translation>Atalhos de Teclado</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2901" /> - <source>View Profiles</source> - <translation>Perfiles de Vista</translation> + <source>Keyboard &Shortcuts...</source> + <translation>Atalho&s de Teclado...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2903" /> - <source>&View Profiles...</source> - <translation>Perfiles de &Vista...</translation> + <source>Set the keyboard shortcuts</source> + <translation>Definir os atalhos de teclado</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2905" /> - <source>Configure view profiles</source> - <translation>Configurar perfiles de vista</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2907" /> - <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> - <translation><b>Perfiles de Vista</b><p>Configurar os perfiles de vista. Com esta caixa de diálogo pode definir a visibilidade de várias janelas para os perfiles de vista predefinidos.</p></translation> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756" /> + <location filename="../UI/UserInterface.py" line="6738" /> + <location filename="../UI/UserInterface.py" line="2914" /> + <source>Export Keyboard Shortcuts</source> + <translation>Exportar Atalhos de Teclado</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2916" /> + <source>&Export Keyboard Shortcuts...</source> + <translation>&Exportar Atalhos de Teclado...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2918" /> - <source>Toolbars</source> - <translation>Barras de Ferramentas</translation> + <source>Export the keyboard shortcuts</source> + <translation>Exportar os Atalhos de Teclado</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2920" /> - <source>Tool&bars...</source> - <translation>&Barras de Ferramentas...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2922" /> - <source>Configure toolbars</source> - <translation>Configurar as barras de ferramentas</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2923" /> - <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2933" /> - <source>Keyboard Shortcuts</source> - <translation>Atalhos de Teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2935" /> - <source>Keyboard &Shortcuts...</source> - <translation>Atalho&s de Teclado...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2937" /> - <source>Set the keyboard shortcuts</source> - <translation>Definir os atalhos de teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2939" /> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6698" /> - <location filename="../UI/UserInterface.py" line="6680" /> - <location filename="../UI/UserInterface.py" line="2948" /> - <source>Export Keyboard Shortcuts</source> - <translation>Exportar Atalhos de Teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2950" /> - <source>&Export Keyboard Shortcuts...</source> - <translation>&Exportar Atalhos de Teclado...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2952" /> - <source>Export the keyboard shortcuts</source> - <translation>Exportar os Atalhos de Teclado</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2954" /> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6715" /> - <location filename="../UI/UserInterface.py" line="2962" /> + <location filename="../UI/UserInterface.py" line="6773" /> + <location filename="../UI/UserInterface.py" line="2928" /> <source>Import Keyboard Shortcuts</source> <translation>Importar Atalhos de Teclado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2964" /> + <location filename="../UI/UserInterface.py" line="2930" /> <source>&Import Keyboard Shortcuts...</source> <translation>&Importar Atalhos de Teclado...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2966" /> + <location filename="../UI/UserInterface.py" line="2932" /> <source>Import the keyboard shortcuts</source> <translation>Importar os atalhos de teclado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2968" /> + <location filename="../UI/UserInterface.py" line="2934" /> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2977" /> + <location filename="../UI/UserInterface.py" line="2943" /> <source>Manage SSL Certificates</source> <translation>Gestionar Certificados SSL</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2979" /> + <location filename="../UI/UserInterface.py" line="2945" /> <source>Manage SSL Certificates...</source> <translation>Gestionar Certificados SSL...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2947" /> + <source>Manage the saved SSL certificates</source> + <translation>Gestionar certificados SSL gravados</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2949" /> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2959" /> + <source>Edit Message Filters</source> + <translation>Editar Filtros de Mensagens</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2961" /> + <source>Edit Message Filters...</source> + <translation>Editar Filtros de Mensagens...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2963" /> + <source>Edit the message filters used to suppress unwanted messages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2965" /> + <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2981" /> - <source>Manage the saved SSL certificates</source> - <translation>Gestionar certificados SSL gravados</translation> + <location filename="../UI/UserInterface.py" line="2978" /> + <location filename="../UI/UserInterface.py" line="2976" /> + <source>Clear private data</source> + <translation type="unfinished">Limpar dados privados</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2983" /> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation type="unfinished" /> - </message> - <message> + <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" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2994" /> <location filename="../UI/UserInterface.py" line="2993" /> - <source>Edit Message Filters</source> - <translation>Editar Filtros de Mensagens</translation> + <source>Activate current editor</source> + <translation>Ativar o editor atual</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2995" /> - <source>Edit Message Filters...</source> - <translation>Editar Filtros de Mensagens...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2997" /> - <source>Edit the message filters used to suppress unwanted messages</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2999" /> - <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3015" /> - <location filename="../UI/UserInterface.py" line="3012" /> - <location filename="../UI/UserInterface.py" line="3010" /> - <source>Clear private data</source> - <translation type="unfinished">Limpar dados privados</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3017" /> - <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" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3028" /> - <location filename="../UI/UserInterface.py" line="3027" /> - <source>Activate current editor</source> - <translation>Ativar o editor atual</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3029" /> <source>Alt+Shift+E</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="3038" /> - <location filename="../UI/UserInterface.py" line="3037" /> + <location filename="../UI/UserInterface.py" line="3004" /> + <location filename="../UI/UserInterface.py" line="3003" /> <source>Show next</source> <translation>Mostrar próximo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3039" /> + <location filename="../UI/UserInterface.py" line="3005" /> <source>Ctrl+Alt+Tab</source> <translation /> </message> <message> + <location filename="../UI/UserInterface.py" line="3013" /> + <location filename="../UI/UserInterface.py" line="3012" /> + <source>Show previous</source> + <translation>Mostrar anterior</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3014" /> + <source>Shift+Ctrl+Alt+Tab</source> + <translation /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3022" /> + <location filename="../UI/UserInterface.py" line="3021" /> + <source>Switch between tabs</source> + <translation>Mudar entre separadores</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3023" /> + <source>Ctrl+1</source> + <translation /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3030" /> + <source>Plugin Infos</source> + <translation>Informação dos Complementos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3032" /> + <source>&Plugin Infos...</source> + <translation>Informação dos &Complementos...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3033" /> + <source>Show Plugin Infos</source> + <translation>Mostrar Informação dos Complementos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3034" /> + <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="3047" /> - <location filename="../UI/UserInterface.py" line="3046" /> - <source>Show previous</source> - <translation>Mostrar anterior</translation> + <location filename="../UI/UserInterface.py" line="3043" /> + <source>Install Plugins</source> + <translation>Instalar Complementos</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3045" /> + <source>&Install Plugins...</source> + <translation>&Instalar Complementos...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3048" /> - <source>Shift+Ctrl+Alt+Tab</source> - <translation /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3056" /> - <location filename="../UI/UserInterface.py" line="3055" /> - <source>Switch between tabs</source> - <translation>Mudar entre separadores</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3057" /> - <source>Ctrl+1</source> - <translation /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3064" /> - <source>Plugin Infos</source> - <translation>Informação dos Complementos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3066" /> - <source>&Plugin Infos...</source> - <translation>Informação dos &Complementos...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3067" /> - <source>Show Plugin Infos</source> - <translation>Mostrar Informação dos Complementos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3068" /> - <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="3081" /> - <location filename="../UI/UserInterface.py" line="3077" /> - <source>Install Plugins</source> - <translation>Instalar Complementos</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3079" /> - <source>&Install Plugins...</source> - <translation>&Instalar Complementos...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3082" /> <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="3094" /> - <location filename="../UI/UserInterface.py" line="3090" /> + <location filename="../UI/UserInterface.py" line="3060" /> + <location filename="../UI/UserInterface.py" line="3056" /> <source>Uninstall Plugin</source> <translation>Desinstalar Complemento</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3092" /> + <location filename="../UI/UserInterface.py" line="3058" /> <source>&Uninstall Plugin...</source> <translation>&Desinstalar Complemento...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3095" /> + <location filename="../UI/UserInterface.py" line="3061" /> <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="3105" /> + <location filename="../UI/UserInterface.py" line="3071" /> <source>Plugin &Repository...</source> <translation>&Repositório de Complementos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3107" /> + <location filename="../UI/UserInterface.py" line="3073" /> <source>Show Plugins available for download</source> <translation>Mostrar Complementos disponíveis para descarregar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3109" /> + <location filename="../UI/UserInterface.py" line="3075" /> <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="3101" /> + <location filename="../UI/UserInterface.py" line="3100" /> + <source>Qt5 Documentation</source> + <translation>Documentação de Qt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3103" /> + <source>Open Qt5 Documentation</source> + <translation>Abrir a Documentação de Qt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3104" /> + <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3116" /> + <location filename="../UI/UserInterface.py" line="3115" /> + <source>Qt6 Documentation</source> + <translation type="unfinished">Documentação de Qt5 {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3118" /> + <source>Open Qt6 Documentation</source> + <translation type="unfinished">Abrir a Documentação de Qt5 {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3119" /> + <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3131" /> + <location filename="../UI/UserInterface.py" line="3130" /> + <source>PyQt5 Documentation</source> + <translation>Documentação do PyQt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3133" /> + <source>Open PyQt5 Documentation</source> + <translation>Abrir a Documentação de PyQt5</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="3135" /> - <location filename="../UI/UserInterface.py" line="3134" /> - <source>Qt5 Documentation</source> - <translation>Documentação de Qt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3137" /> - <source>Open Qt5 Documentation</source> - <translation>Abrir a Documentação de Qt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3138" /> - <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> + <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3148" /> + <location filename="../UI/UserInterface.py" line="3147" /> + <source>PyQt6 Documentation</source> + <translation type="unfinished">Documentação do PyQt5 {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3150" /> - <location filename="../UI/UserInterface.py" line="3149" /> - <source>Qt6 Documentation</source> - <translation type="unfinished">Documentação de Qt5 {6 ?}</translation> + <source>Open PyQt6 Documentation</source> + <translation type="unfinished">Abrir a Documentação de PyQt5 {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3152" /> - <source>Open Qt6 Documentation</source> - <translation type="unfinished">Abrir a Documentação de Qt5 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3153" /> - <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3165" /> - <location filename="../UI/UserInterface.py" line="3164" /> - <source>PyQt5 Documentation</source> - <translation>Documentação do PyQt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3167" /> - <source>Open PyQt5 Documentation</source> - <translation>Abrir a Documentação de PyQt5</translation> - </message> - <message> + <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3170" /> <location filename="../UI/UserInterface.py" line="3169" /> - <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3182" /> - <location filename="../UI/UserInterface.py" line="3181" /> - <source>PyQt6 Documentation</source> - <translation type="unfinished">Documentação do PyQt5 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3184" /> - <source>Open PyQt6 Documentation</source> - <translation type="unfinished">Abrir a Documentação de PyQt5 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3186" /> - <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3204" /> - <location filename="../UI/UserInterface.py" line="3203" /> <source>Python 3 Documentation</source> <translation>Documentação de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3206" /> + <location filename="../UI/UserInterface.py" line="3172" /> <source>Open Python 3 Documentation</source> <translation>Abrir a Documentação de Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3208" /> + <location filename="../UI/UserInterface.py" line="3174" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3226" /> - <location filename="../UI/UserInterface.py" line="3225" /> + <location filename="../UI/UserInterface.py" line="3192" /> + <location filename="../UI/UserInterface.py" line="3191" /> <source>eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3228" /> + <location filename="../UI/UserInterface.py" line="3194" /> <source>Open eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3230" /> + <location filename="../UI/UserInterface.py" line="3196" /> <source><b>eric API Documentation</b><p>Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3247" /> - <location filename="../UI/UserInterface.py" line="3246" /> + <location filename="../UI/UserInterface.py" line="3213" /> + <location filename="../UI/UserInterface.py" line="3212" /> <source>PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3249" /> + <location filename="../UI/UserInterface.py" line="3215" /> <source>Open PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3251" /> + <location filename="../UI/UserInterface.py" line="3217" /> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3267" /> - <location filename="../UI/UserInterface.py" line="3266" /> + <location filename="../UI/UserInterface.py" line="3233" /> + <location filename="../UI/UserInterface.py" line="3232" /> <source>PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3269" /> + <location filename="../UI/UserInterface.py" line="3235" /> <source>Open PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3271" /> + <location filename="../UI/UserInterface.py" line="3237" /> <source><b>PySide6 Documentation</b><p>Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3373" /> + <location filename="../UI/UserInterface.py" line="3339" /> <source>E&xtras</source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="3383" /> + <location filename="../UI/UserInterface.py" line="3349" /> <source>Wi&zards</source> <translation>A&ssistentes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3402" /> + <location filename="../UI/UserInterface.py" line="3368" /> <source>P&lugins</source> <translation>Comp&lementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3412" /> + <location filename="../UI/UserInterface.py" line="3378" /> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3421" /> + <location filename="../UI/UserInterface.py" line="3387" /> <source>&Unittest</source> <translation>Teste &Unitário</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3438" /> + <location filename="../UI/UserInterface.py" line="3404" /> <source>Select Tool Group</source> <translation>Selecionar Grupo de Ferramentas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3449" /> + <location filename="../UI/UserInterface.py" line="3415" /> <source>Se&ttings</source> <translation>Definiçõe&s</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482" /> + <location filename="../UI/UserInterface.py" line="3448" /> <source>&Window</source> <translation>&Janela</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3491" /> + <location filename="../UI/UserInterface.py" line="3457" /> <source>&Windows</source> <translation>&Janelas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3496" /> + <location filename="../UI/UserInterface.py" line="3462" /> <source>Central Park</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3500" /> + <location filename="../UI/UserInterface.py" line="3466" /> <source>Left Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3517" /> + <location filename="../UI/UserInterface.py" line="3483" /> <source>Right Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3541" /> + <location filename="../UI/UserInterface.py" line="3507" /> <source>Bottom Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3549" /> + <location filename="../UI/UserInterface.py" line="3515" /> <source>Plug-ins</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3556" /> + <location filename="../UI/UserInterface.py" line="3522" /> <source>&Toolbars</source> <translation>Barras de Ferramen&tas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3569" /> + <location filename="../UI/UserInterface.py" line="3535" /> <source>&Help</source> <translation>&Ajuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3642" /> - <location filename="../UI/UserInterface.py" line="3619" /> + <location filename="../UI/UserInterface.py" line="3605" /> + <location filename="../UI/UserInterface.py" line="3582" /> <source>Tools</source> <translation>Ferramentas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3644" /> - <location filename="../UI/UserInterface.py" line="3623" /> + <location filename="../UI/UserInterface.py" line="3607" /> + <location filename="../UI/UserInterface.py" line="3586" /> <source>Settings</source> <translation>Definições</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5541" /> - <location filename="../UI/UserInterface.py" line="3645" /> - <location filename="../UI/UserInterface.py" line="3624" /> + <location filename="../UI/UserInterface.py" line="5600" /> + <location filename="../UI/UserInterface.py" line="3608" /> + <location filename="../UI/UserInterface.py" line="3587" /> <source>Help</source> <translation>Ajuda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3646" /> - <location filename="../UI/UserInterface.py" line="3625" /> + <location filename="../UI/UserInterface.py" line="3609" /> + <location filename="../UI/UserInterface.py" line="3588" /> <source>Profiles</source> <translation>Perfiles</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3647" /> - <location filename="../UI/UserInterface.py" line="3626" /> + <location filename="../UI/UserInterface.py" line="3610" /> + <location filename="../UI/UserInterface.py" line="3589" /> <source>Plugins</source> <translation>Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811" /> + <location filename="../UI/UserInterface.py" line="3774" /> <source><p>This part of the status bar displays the current editors language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3818" /> + <location filename="../UI/UserInterface.py" line="3781" /> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3825" /> + <location filename="../UI/UserInterface.py" line="3788" /> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3832" /> + <location filename="../UI/UserInterface.py" line="3795" /> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3839" /> + <location filename="../UI/UserInterface.py" line="3802" /> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3846" /> + <location filename="../UI/UserInterface.py" line="3809" /> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3857" /> + <location filename="../UI/UserInterface.py" line="3820" /> <source><p>This part of the status bar allows zooming the current editor or shell.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3922" /> - <location filename="../UI/UserInterface.py" line="3882" /> + <location filename="../UI/UserInterface.py" line="3885" /> + <location filename="../UI/UserInterface.py" line="3845" /> <source>External Tools/{0}</source> <translation>Ferramentas Externas/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4028" /> + <location filename="../UI/UserInterface.py" line="3991" /> <source><h2>Version Numbers</h2><table></source> <translation type="unfinished"><h3>Números de Versão</h3><table> {2>?} {2>?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4082" /> + <location filename="../UI/UserInterface.py" line="4045" /> <source>Desktop</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4085" /> + <location filename="../UI/UserInterface.py" line="4048" /> <source>Session Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7778" /> - <location filename="../UI/UserInterface.py" line="4087" /> + <location filename="../UI/UserInterface.py" line="4050" /> <source></table></source> <translation /> </message> <message> - <location filename="../UI/UserInterface.py" line="4121" /> + <location filename="../UI/UserInterface.py" line="4084" /> <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="4432" /> + <location filename="../UI/UserInterface.py" line="4395" /> <source>Restart application</source> <translation>Reiniciar a aplicação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4433" /> + <location filename="../UI/UserInterface.py" line="4396" /> <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="4420" /> + <source>Upgrade PyQt</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4421" /> + <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="4467" /> + <location filename="../UI/UserInterface.py" line="4443" /> + <source>Upgrade Eric</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4444" /> + <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4468" /> + <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time. + + Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4526" /> <source>&Builtin Tools</source> <translation>Ferramentas &Internas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4484" /> + <location filename="../UI/UserInterface.py" line="4543" /> <source>&Plugin Tools</source> <translation>Ferramentas dos &Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4487" /> + <location filename="../UI/UserInterface.py" line="4546" /> <source>&User Tools</source> <translation>Ferramentas de &Utilizador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4513" /> + <location filename="../UI/UserInterface.py" line="4572" /> <source>Configure Tool Groups ...</source> <translation>Configurar Grupos de Ferramentas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517" /> + <location filename="../UI/UserInterface.py" line="4576" /> <source>Configure current Tool Group ...</source> <translation>Configurar o atual Grupo de Ferramentas ...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4558" /> - <location filename="../UI/UserInterface.py" line="4538" /> + <location filename="../UI/UserInterface.py" line="4617" /> + <location filename="../UI/UserInterface.py" line="4597" /> <source>No User Tools Configured</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4632" /> + <location filename="../UI/UserInterface.py" line="4691" /> <source>&Show all</source> <translation>&Mostrar tudo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4634" /> + <location filename="../UI/UserInterface.py" line="4693" /> <source>&Hide all</source> <translation>&Esconder tudo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5669" /> - <location filename="../UI/UserInterface.py" line="5659" /> - <location filename="../UI/UserInterface.py" line="5612" /> - <location filename="../UI/UserInterface.py" line="5603" /> - <location filename="../UI/UserInterface.py" line="5442" /> - <location filename="../UI/UserInterface.py" line="5433" /> - <location filename="../UI/UserInterface.py" line="5372" /> - <location filename="../UI/UserInterface.py" line="5363" /> + <location filename="../UI/UserInterface.py" line="5728" /> + <location filename="../UI/UserInterface.py" line="5718" /> + <location filename="../UI/UserInterface.py" line="5671" /> + <location filename="../UI/UserInterface.py" line="5662" /> + <location filename="../UI/UserInterface.py" line="5501" /> + <location filename="../UI/UserInterface.py" line="5492" /> + <location filename="../UI/UserInterface.py" line="5431" /> + <location filename="../UI/UserInterface.py" line="5422" /> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5670" /> - <location filename="../UI/UserInterface.py" line="5660" /> - <location filename="../UI/UserInterface.py" line="5613" /> - <location filename="../UI/UserInterface.py" line="5604" /> - <location filename="../UI/UserInterface.py" line="5443" /> - <location filename="../UI/UserInterface.py" line="5434" /> - <location filename="../UI/UserInterface.py" line="5373" /> - <location filename="../UI/UserInterface.py" line="5364" /> + <location filename="../UI/UserInterface.py" line="5729" /> + <location filename="../UI/UserInterface.py" line="5719" /> + <location filename="../UI/UserInterface.py" line="5672" /> + <location filename="../UI/UserInterface.py" line="5663" /> + <location filename="../UI/UserInterface.py" line="5502" /> + <location filename="../UI/UserInterface.py" line="5493" /> + <location filename="../UI/UserInterface.py" line="5432" /> + <location filename="../UI/UserInterface.py" line="5423" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5877" /> - <location filename="../UI/UserInterface.py" line="5790" /> - <location filename="../UI/UserInterface.py" line="5705" /> - <location filename="../UI/UserInterface.py" line="5682" /> - <location filename="../UI/UserInterface.py" line="5625" /> - <location filename="../UI/UserInterface.py" line="5575" /> - <location filename="../UI/UserInterface.py" line="5555" /> - <location filename="../UI/UserInterface.py" line="5517" /> - <location filename="../UI/UserInterface.py" line="5508" /> - <location filename="../UI/UserInterface.py" line="5473" /> - <location filename="../UI/UserInterface.py" line="5464" /> - <location filename="../UI/UserInterface.py" line="5403" /> - <location filename="../UI/UserInterface.py" line="5394" /> + <location filename="../UI/UserInterface.py" line="5936" /> + <location filename="../UI/UserInterface.py" line="5849" /> + <location filename="../UI/UserInterface.py" line="5764" /> + <location filename="../UI/UserInterface.py" line="5741" /> + <location filename="../UI/UserInterface.py" line="5684" /> + <location filename="../UI/UserInterface.py" line="5634" /> + <location filename="../UI/UserInterface.py" line="5614" /> + <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5567" /> + <location filename="../UI/UserInterface.py" line="5532" /> + <location filename="../UI/UserInterface.py" line="5523" /> + <location filename="../UI/UserInterface.py" line="5462" /> + <location filename="../UI/UserInterface.py" line="5453" /> <source>Process Generation Error</source> <translation>Erro na Criação de Processo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5395" /> + <location filename="../UI/UserInterface.py" line="5454" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5404" /> + <location filename="../UI/UserInterface.py" line="5463" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5465" /> + <location filename="../UI/UserInterface.py" line="5524" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5474" /> + <location filename="../UI/UserInterface.py" line="5533" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5509" /> + <location filename="../UI/UserInterface.py" line="5568" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5518" /> + <location filename="../UI/UserInterface.py" line="5577" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5542" /> + <location filename="../UI/UserInterface.py" line="5601" /> <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="5556" /> + <location filename="../UI/UserInterface.py" line="5615" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5635" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5626" /> + <location filename="../UI/UserInterface.py" line="5685" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5683" /> + <location filename="../UI/UserInterface.py" line="5742" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5706" /> + <location filename="../UI/UserInterface.py" line="5765" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5791" /> + <location filename="../UI/UserInterface.py" line="5850" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5822" /> - <location filename="../UI/UserInterface.py" line="5813" /> + <location filename="../UI/UserInterface.py" line="5881" /> + <location filename="../UI/UserInterface.py" line="5872" /> <source>External Tools</source> <translation>Ferramentas Externas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5814" /> + <location filename="../UI/UserInterface.py" line="5873" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5823" /> + <location filename="../UI/UserInterface.py" line="5882" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5859" /> + <location filename="../UI/UserInterface.py" line="5918" /> <source>Starting process '{0} {1}'. </source> <translation>A iniciar processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5878" /> + <location filename="../UI/UserInterface.py" line="5937" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5953" /> + <location filename="../UI/UserInterface.py" line="6012" /> <source>Process '{0}' has exited. </source> <translation>Processo '{0}' saiu.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6225" /> - <location filename="../UI/UserInterface.py" line="6167" /> - <location filename="../UI/UserInterface.py" line="6126" /> - <location filename="../UI/UserInterface.py" line="6058" /> - <location filename="../UI/UserInterface.py" line="5996" /> + <location filename="../UI/UserInterface.py" line="6284" /> + <location filename="../UI/UserInterface.py" line="6226" /> + <location filename="../UI/UserInterface.py" line="6185" /> + <location filename="../UI/UserInterface.py" line="6117" /> + <location filename="../UI/UserInterface.py" line="6055" /> <source>Documentation Missing</source> <translation>Falta a Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6226" /> - <location filename="../UI/UserInterface.py" line="6168" /> - <location filename="../UI/UserInterface.py" line="6127" /> - <location filename="../UI/UserInterface.py" line="6059" /> - <location filename="../UI/UserInterface.py" line="5997" /> + <location filename="../UI/UserInterface.py" line="6285" /> + <location filename="../UI/UserInterface.py" line="6227" /> + <location filename="../UI/UserInterface.py" line="6186" /> + <location filename="../UI/UserInterface.py" line="6118" /> + <location filename="../UI/UserInterface.py" line="6056" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6208" /> - <location filename="../UI/UserInterface.py" line="6099" /> + <location filename="../UI/UserInterface.py" line="6267" /> + <location filename="../UI/UserInterface.py" line="6158" /> <source>Documentation</source> <translation>Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6100" /> + <location filename="../UI/UserInterface.py" line="6159" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6209" /> + <location filename="../UI/UserInterface.py" line="6268" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6387" /> - <location filename="../UI/UserInterface.py" line="6323" /> + <location filename="../UI/UserInterface.py" line="6446" /> + <location filename="../UI/UserInterface.py" line="6382" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6324" /> + <location filename="../UI/UserInterface.py" line="6383" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6388" /> + <location filename="../UI/UserInterface.py" line="6447" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6430" /> + <location filename="../UI/UserInterface.py" line="6489" /> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6431" /> + <location filename="../UI/UserInterface.py" line="6490" /> <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="6682" /> + <location filename="../UI/UserInterface.py" line="6740" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6699" /> + <location filename="../UI/UserInterface.py" line="6757" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6717" /> + <location filename="../UI/UserInterface.py" line="6775" /> <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6909" /> + <location filename="../UI/UserInterface.py" line="6967" /> <source>Read Tasks</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6910" /> + <location filename="../UI/UserInterface.py" line="6968" /> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6957" /> + <location filename="../UI/UserInterface.py" line="7015" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6985" /> - <location filename="../UI/UserInterface.py" line="6958" /> + <location filename="../UI/UserInterface.py" line="7043" /> + <location filename="../UI/UserInterface.py" line="7016" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6984" /> + <location filename="../UI/UserInterface.py" line="7042" /> <source>Read session</source> <translation>Sessão de leitura</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7000" /> + <location filename="../UI/UserInterface.py" line="7058" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7002" /> + <location filename="../UI/UserInterface.py" line="7060" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="7082" /> <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7072" /> + <location filename="../UI/UserInterface.py" line="7130" /> <source>Crash Session found!</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7073" /> + <location filename="../UI/UserInterface.py" line="7131" /> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7374" /> + <location filename="../UI/UserInterface.py" line="7432" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7375" /> + <location filename="../UI/UserInterface.py" line="7433" /> <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="7552" /> - <source>&Cancel</source> - <translation>&Cancelar</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7554" /> - <source>%v/%m</source> - <translation /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7556" /> - <source>Version Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7561" /> - <source>Trying host {0}</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7630" /> - <location filename="../UI/UserInterface.py" line="7623" /> - <location filename="../UI/UserInterface.py" line="7574" /> - <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="7575" /> - <source>The versions information cannot not be downloaded because the Internet is <b>not reachable</b>. Please try again later.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7624" /> - <source>The versions information could not be downloaded. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> + <location filename="../UI/UserInterface.py" line="7597" /> + <source>Upgrade available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7598" /> + <source>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7642" /> <location filename="../UI/UserInterface.py" line="7631" /> - <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7722" /> - <location filename="../UI/UserInterface.py" line="7688" /> - <source>Update available</source> - <translation>Atualização disponível</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7723" /> - <location filename="../UI/UserInterface.py" line="7689" /> - <source>The update to <b>{0}</b> of eric is available at <b>{1}</b>. Would you like to get it?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7710" /> - <location filename="../UI/UserInterface.py" line="7700" /> - <source>Update Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7701" /> - <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7711" /> - <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7734" /> - <source>eric is up to date</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7735" /> - <source>You are using the latest version of eric</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7741" /> - <source>Error during updates check</source> - <translation>Erro na verificação de atualizações</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7742" /> - <source>Could not perform updates check.</source> - <translation>Não procurar atualizações.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7763" /> - <source><h3>Available versions</h3><table></source> - <translation><h3>Versões Disponíveis</h3><table></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7829" /> - <location filename="../UI/UserInterface.py" line="7818" /> <source>First time usage</source> <translation>Usado a primeira vez</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7819" /> + <location filename="../UI/UserInterface.py" line="7632" /> <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7830" /> + <location filename="../UI/UserInterface.py" line="7643" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7850" /> + <location filename="../UI/UserInterface.py" line="7663" /> <source>Select Workspace Directory</source> <translation>Selecionar o Diretório de Trabalho</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8027" /> + <location filename="../UI/UserInterface.py" line="7840" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8028" /> + <location filename="../UI/UserInterface.py" line="7841" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> <message> + <source>&Cancel</source> + <translation type="vanished">&Cancelar</translation> + </message> + <message> + <source>Error getting versions information</source> + <translation type="vanished">Erro na obtenção da informação de versões</translation> + </message> + <message> + <source>Update available</source> + <translation type="vanished">Atualização disponível</translation> + </message> + <message> + <source>Error during updates check</source> + <translation type="vanished">Erro na verificação de atualizações</translation> + </message> + <message> + <source>Could not perform updates check.</source> + <translation type="vanished">Não procurar atualizações.</translation> + </message> + <message> + <source><h3>Available versions</h3><table></source> + <translation type="vanished"><h3>Versões Disponíveis</h3><table></translation> + </message> + <message> + <source>Check for Updates</source> + <translation type="vanished">Procurar Atualizações</translation> + </message> + <message> + <source>Check for &Updates...</source> + <translation type="vanished">Procurar &Atualizações...</translation> + </message> + <message> + <source>Show downloadable versions</source> + <translation type="vanished">Mostrar versões descarregáveis</translation> + </message> + <message> + <source>Show &downloadable versions...</source> + <translation type="vanished">Mostrar versões &descarregáveis...</translation> + </message> + <message> + <source>Show the versions available for download</source> + <translation type="vanished">Mostrar as versões disponíveis para descarregar</translation> + </message> + <message> <source>Eric API Documentation</source> <translation type="vanished">Documentação de API do Eric</translation> </message> @@ -89942,6 +90169,49 @@ </message> </context> <context> + <name>VersionsDialog</name> + <message> + <location filename="../UI/VersionsDialog.py" line="49" /> + <source>Check for Upgrades...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="92" /> + <source>No upgrades available.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="96" /> + <source>Upgrade eric7...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="100" /> + <source><p>An upgrade of <b>eric7</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="105" /> + <source>Upgrade PyQt6...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="109" /> + <source><p>An upgrade of <b>PyQt6</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="114" /> + <source>Upgrade Both...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="128" /> + <source>Check for Upgrades</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>ViewManager</name> <message> <location filename="../HexEdit/HexEditMainWindow.py" line="518" /> @@ -94675,7 +94945,7 @@ <context> <name>VirtualenvInterpreterSelectionDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="45" /> + <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="47" /> <source>Python Interpreter</source> <translation type="unfinished">Intérprete de Python</translation> </message> @@ -94703,54 +94973,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="232" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="243" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="233" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="244" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="295" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="306" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="346" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="296" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="307" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="345" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="433" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="369" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="444" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="380" /> <source>{0} - {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="377" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="378" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="441" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="452" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="453" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -95755,22 +96025,22 @@ <context> <name>WebBrowserPage</name> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="195" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="189" /> <source>Suspicuous URL detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="196" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="190" /> <source><p>The URL <b>{0}</b> was found in the Safe Browsing database.</p>{1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="663" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="657" /> <source>SSL Info</source> <translation type="unfinished">Informação SSL</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="664" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="658" /> <source>This site does not contain SSL information.</source> <translation type="unfinished">Este sítio não tem informação SSL.</translation> </message> @@ -97093,12 +97363,12 @@ <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2282" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2287" /> <source>Quota Request</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2288" /> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished" /> </message>
--- a/eric7/i18n/eric7_ru.ts Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/i18n/eric7_ru.ts Sat Apr 02 11:23:11 2022 +0200 @@ -1487,6 +1487,26 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader</source> + <translation>Обновление</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader Delay:</source> + <translation>Задержка обновления:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Enter the time the upgrader process should wait for eric to exit</source> + <translation>Задайте время, в течение которого процесс обновления должен ожидать завершения eric</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source> s</source> + <translation> сек</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> <source>Reporting</source> <translation>Отчет</translation> </message> @@ -6166,7 +6186,7 @@ <message> <location filename="../Preferences/ConfigurationPages/CondaPage.py" line="31" /> <source>Press to select the conda executable via a file selection dialog.</source> - <translation>Выбор исполняемого файла conda посредством диалога выбора файлов.</translation> + <translation>Выберите исполняемый файл conda посредством диалога выбора файлов.</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/CondaPage.ui" line="0" /> @@ -45201,7 +45221,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="473" /> + <location filename="../Preferences/__init__.py" line="471" /> <location filename="../QScintilla/Lexers/__init__.py" line="415" /> <source>Python Files (*.py *.py3)</source> <translation>Файлы Python (*.py *.py3)</translation> @@ -45454,7 +45474,7 @@ <translation>Все файлы (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="475" /> + <location filename="../Preferences/__init__.py" line="473" /> <location filename="../QScintilla/Lexers/__init__.py" line="585" /> <source>Python3 Files (*.py)</source> <translation>Файлы Python3 (*.py)</translation> @@ -51351,119 +51371,113 @@ <context> <name>Pip</name> <message> - <location filename="../PipInterface/Pip.py" line="109" /> + <location filename="../PipInterface/Pip.py" line="123" /> <source>python exited with an error ({0}).</source> <translation>python завершен с ошибкой ({0}).</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="116" /> + <location filename="../PipInterface/Pip.py" line="130" /> <source>python did not finish within 30 seconds.</source> <translation>python не завершился в течение 30 секунд.</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="119" /> + <location filename="../PipInterface/Pip.py" line="133" /> <source>python could not be started.</source> <translation>невозможно запустить python.</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="179" /> + <location filename="../PipInterface/Pip.py" line="193" /> <source><project></source> <translation><project></translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="208" /> + <location filename="../PipInterface/Pip.py" line="222" /> <source>Interpreter for Virtual Environment</source> <translation>Интерпретатор для виртуального окружения</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="209" /> + <location filename="../PipInterface/Pip.py" line="223" /> <source>No interpreter configured for the selected virtual environment.</source> <translation>Для выбранного виртуального окружения не настроен интерпретатор.</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="244" /> + <location filename="../PipInterface/Pip.py" line="258" /> <source>Install PIP</source> <translation>Установка PIP</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="286" /> + <location filename="../PipInterface/Pip.py" line="300" /> <source>Repair PIP</source> <translation>Восстановление PIP</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="359" /> - <location filename="../PipInterface/Pip.py" line="311" /> + <location filename="../PipInterface/Pip.py" line="383" /> <source>Upgrade Packages</source> <translation>Обновление пакетов</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="312" /> - <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> - <translation>Вы пытаетесь обновить PyQt пакеты. Это может не работать для текущего экземпляра Python ({0}). Вы хотите продолжить?</translation> - </message> - <message> - <location filename="../PipInterface/Pip.py" line="399" /> + <location filename="../PipInterface/Pip.py" line="423" /> <source>Install Packages</source> <translation>Установка пакетов</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="428" /> + <location filename="../PipInterface/Pip.py" line="452" /> <source>Install Packages from Requirements</source> <translation>Установка пакетов, перечисленных в зависимостях</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="491" /> - <location filename="../PipInterface/Pip.py" line="460" /> - <location filename="../PipInterface/Pip.py" line="451" /> + <location filename="../PipInterface/Pip.py" line="515" /> + <location filename="../PipInterface/Pip.py" line="484" /> + <location filename="../PipInterface/Pip.py" line="475" /> <source>Uninstall Packages</source> <translation>Деинсталяция пакетов</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="492" /> - <location filename="../PipInterface/Pip.py" line="452" /> + <location filename="../PipInterface/Pip.py" line="516" /> + <location filename="../PipInterface/Pip.py" line="476" /> <source>Do you really want to uninstall these packages?</source> <translation>Вы действительно хотите деинсталировать эти пакеты?</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="503" /> + <location filename="../PipInterface/Pip.py" line="527" /> <source>Uninstall Packages from Requirements</source> <translation>Деинсталяция пакетов, перечисленных в зависимостях</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="721" /> + <location filename="../PipInterface/Pip.py" line="844" /> <source>Cache Info</source> <translation>Информация о кэше</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="746" /> - <location filename="../PipInterface/Pip.py" line="738" /> + <location filename="../PipInterface/Pip.py" line="869" /> + <location filename="../PipInterface/Pip.py" line="861" /> <source>List Cached Files</source> <translation>Список кэшированных файлов</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="739" /> + <location filename="../PipInterface/Pip.py" line="862" /> <source>Enter a file pattern (empty for all):</source> <translation>Задайте шаблон файлов (пустая строка - все файлы):</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="770" /> - <location filename="../PipInterface/Pip.py" line="764" /> + <location filename="../PipInterface/Pip.py" line="893" /> + <location filename="../PipInterface/Pip.py" line="887" /> <source>Remove Cached Files</source> <translation>Удалить кэшированные файлы</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="765" /> + <location filename="../PipInterface/Pip.py" line="888" /> <source>Enter a file pattern:</source> <translation>Задайте шаблон файла:</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="793" /> - <location filename="../PipInterface/Pip.py" line="788" /> + <location filename="../PipInterface/Pip.py" line="916" /> + <location filename="../PipInterface/Pip.py" line="911" /> <source>Purge Cache</source> <translation>Очистить кэш</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="789" /> + <location filename="../PipInterface/Pip.py" line="912" /> <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source> <translation>Вы действительно хотите очистить pip-кэш? Все файлы должны быть загружены снова.</translation> </message> @@ -51582,19 +51596,19 @@ <location filename="../PipInterface/PipFreezeDialog.py" line="230" /> <location filename="../PipInterface/PipFreezeDialog.py" line="210" /> <location filename="../PipInterface/PipFreezeDialog.py" line="198" /> - <location filename="../PipInterface/PipFreezeDialog.py" line="118" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="122" /> <source>Generate Requirements</source> <translation>Генерация зависимостей</translation> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="119" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="123" /> <source>The requirements were changed. Do you want to overwrite these changes?</source> <translation>Зависимости были изменены. Вы действительно хотите записать эти изменения?</translation> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="160" /> - <source>No output generated by 'pip freeze'.</source> - <translation>Команда 'pip freeze' ничего не создала.</translation> + <location filename="../PipInterface/PipFreezeDialog.py" line="158" /> + <source>No package specifiers generated by 'pip freeze'.</source> + <translation>Нет спецификаторов пакета созданых 'pip freeze'.</translation> </message> <message> <location filename="../PipInterface/PipFreezeDialog.py" line="199" /> @@ -51614,7 +51628,7 @@ <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Select to show requirements for locally-installed packages only</source> - <translation>Отображать зависимости только для локально установленных пакетов</translation> + <translation>Отображать зависимости только для пакетов, установленных локально</translation> </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> @@ -51623,6 +51637,16 @@ </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>Select to show requirements for packages installed to the user-site only</source> + <translation>Отображать зависимости только для пакетов, установленных в user-site</translation> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>User-Site only</source> + <translation>Только в user-site</translation> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Requirements File:</source> <translation>Файл зависимостей:</translation> </message> @@ -51683,6 +51707,65 @@ </message> </context> <context> + <name>PipLicensesDialog</name> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package Licenses</source> + <translation>Лицензии пакетов</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of locally installed packages</source> + <translation>Отображать только лицензии локально установленных пакетов</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Local packages only</source> + <translation>Только локальные пакеты</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of packages installed to the user-site</source> + <translation>Отображать только лицензии пакетов для user-site установленных пакетов</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>User-Site only</source> + <translation>Только в user-site</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package</source> + <translation>Пакет</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Version</source> + <translation>Версия</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>License</source> + <translation>Лицензия</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Count</source> + <translation>Количество</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="61" /> + <source>Licenses of "{0}"</source> + <translation>Лицензии "{0}"</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="65" /> + <source>No environment specified.</source> + <translation>Не задана среда окружения.</translation> + </message> + </context> + <context> <name>PipPackageDetailsDialog</name> <message> <location filename="../PipInterface/PipPackageDetailsDialog.py" line="46" /> @@ -51935,10 +52018,16 @@ <name>PipPackagesWidget</name> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Toggle to show or hide the dependency tree view</source> + <translation>Показать / скрыть представление дерева зависимостей пакетов</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only locally-installed packages</source> - <translation>Разрешить отображать только локально установленные пакеты</translation> - </message> - <message> + <translation>Отображать только локально установленные пакеты</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Local packages only</source> <translation>Только локальные пакеты</translation> @@ -51946,24 +52035,36 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to list packages that are not dependencies of installed packages</source> - <translation>Разрешить отображать только пакеты, не зависящие от других установленных пакетов</translation> + <translation>Отображать только пакеты, не зависящие от других установленных пакетов</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Not required Packages</source> - <translation>Независимые пакеты</translation> + <translation>Пакеты без зависимостей</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only packages installed to the user-site</source> - <translation>Разрешить отображать только пакеты, установленные в user-site</translation> + <translation>Отображать только пакеты, установленные в user-site</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>User-Site only</source> + <translation>Только в user-site</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>User-Site only</source> - <translation>Только в user-site</translation> - </message> - <message> + <source>Perform vulnerability checks based on "Safety DB".</source> + <translation>Выполнять проверку уязвимостей на основе "Safety DB".</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Vulnerability Check</source> + <translation>Проверка уязвимости</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> @@ -51972,18 +52073,24 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Installed Version</source> - <translation>Установленная версия</translation> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Installed</source> + <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Available Version</source> - <translation>Доступная версия</translation> + <source>Available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Affected</source> + <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show verbose package information</source> - <translation>Разрешить отображение подробной информации о пакете</translation> + <translation>Разрешить отображать подробную информацию о пакете</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> @@ -51993,7 +52100,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show information about installed files</source> - <translation>Разрешить отображение информации об установленных файлах</translation> + <translation>Разрешить отображать информацию об установленных файлах</translation> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> @@ -52023,6 +52130,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Press to show details for the selected entry</source> <translation>Показать информацию для выбранной записи</translation> </message> @@ -52033,11 +52141,6 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Press to start the search</source> - <translation>Начать поиск</translation> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Enter the search term for the package name</source> <translation>Введите имя пакета в поисковый запрос</translation> </message> @@ -52048,6 +52151,16 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to start the search</source> + <translation>Начать поиск</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to search for more packages</source> + <translation>Поиск следующих пакетов</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Version</source> <translation>Версия</translation> </message> @@ -52072,104 +52185,150 @@ <translation>Установить выбранный пакет в user site</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="169" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>View Type</source> + <translation>Тип представления дерева зависимостей пакетов</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package requires other packages</source> + <translation>Отображение пакетов, от которых зависит выделенный пакет</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Requires</source> + <translation>Зависимости</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package is required by others</source> + <translation>Отображение пакета, который требуется другим пакетам</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required By</source> + <translation>Требования</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of locally installed packages</source> + <translation>Отображать только зависимости локально установленных пакетов</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of packages installed to the user-site</source> + <translation>Отображать только зависимости user-site установленных пакетов</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to refresh the dependency tree</source> + <translation>Освежить дерево зависимостей</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="185" /> <source>pip Menu</source> <translation>Меню pip</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="195" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="230" /> <source>Name:</source> <translation>Имя:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="196" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="231" /> <source>Version:</source> <translation>Версия:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="197" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="232" /> <source>Location:</source> <translation>Расположение:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="198" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="233" /> <source>Requires:</source> <translation>Зависимости:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="199" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="234" /> <source>Summary:</source> <translation>Аннотация:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="200" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="235" /> <source>Homepage:</source> <translation>Домашняя страница:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="201" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="236" /> <source>Author:</source> <translation>Автор:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="202" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="237" /> <source>Author Email:</source> <translation>Email автора:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="203" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="238" /> <source>License:</source> <translation>Лицензия:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="204" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="239" /> <source>Metadata Version:</source> <translation>Версия Metadata:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="205" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="240" /> <source>Installer:</source> <translation>Установщик:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="206" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="241" /> <source>Classifiers:</source> <translation>Классификаторы:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="207" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="242" /> <source>Entry Points:</source> <translation>Точки входа:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="208" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="243" /> <source>Files:</source> <translation>Файлы:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="375" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="427" /> <source>Getting installed packages...</source> <translation>Получение списка установленных пакетов...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="390" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="443" /> <source>Getting outdated packages...</source> <translation>Получение списка обновленных пакетов...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="975" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="812" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="790" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1141" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="972" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="961" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="930" /> <source>Search PyPI</source> <translation>Поиск в PyPI</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="791" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="931" /> <source><p>Received an error while searching for <b>{0}</b>.</p><p>Error: {1}</p></source> <translation><p>Получена ошибка при поиске <b>{0}</b>.</p><p>Ошибка: {1}</p></translation> </message> <message numerus="yes"> - <location filename="../PipInterface/PipPackagesWidget.py" line="805" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="946" /> <source>%n package(s) found.</source> <translation> <numerusform>Найден %n пакет.</numerusform> @@ -52178,123 +52337,171 @@ </translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="807" /> - <source>Showing first 20 packages found.</source> - <translation>Показаны первые 20 найденных пакетов.</translation> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="815" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="813" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="950" /> + <source>Showing first {0} packages found.</source> + <translation>Показаны первые {0} найденных пакетов.</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="966" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="962" /> <source><p>There were no results for <b>{0}</b>.</p></source> <translation><p>Нет результатов по запросу <b>{0}</b>.</p></translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="976" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="973" /> + <source><p>There were no more results for <b>{0}</b>.</p></source> + <translation><p>По запросу <b>{0}</b> больше нет результатов.</p></translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1142" /> <source><p>No package details info for <b>{0}</b> available.</p></source> <translation><p>Недоступна подробная информация о пакете <b>{0}</b>.</p></translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="990" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1156" /> <source>Install Pip</source> <translation>Инсталировать Pip</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="993" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1159" /> <source>Install Pip to User-Site</source> <translation>Инсталировать Pip в User-Site</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="996" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1162" /> <source>Repair Pip</source> <translation>Восстановить Pip</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1116" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1000" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1299" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1166" /> <source>Install Packages</source> <translation>Установить пакеты</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1003" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1169" /> <source>Install Local Package</source> <translation>Установить локальный пакет</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1007" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1173" /> <source>Install Requirements</source> <translation>Установить зависимости</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1010" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1176" /> <source>Re-Install Selected Packages</source> <translation>Переинсталировать выбранные пакеты</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1013" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1179" /> <source>Uninstall Requirements</source> <translation>Деинсталировать зависимости</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1016" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1182" /> <source>Generate Requirements...</source> <translation>Генерация зависимостей...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1020" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1186" /> + <source>Show Licenses...</source> + <translation>Показать лицензии...</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1190" /> + <source>Check Vulnerabilities</source> + <translation>Проверить уязвимости</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1194" /> + <source>Update Vulnerability Database</source> + <translation>Обновить базу уязвимостей</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1198" /> <source>Show Cache Info...</source> <translation>Показать информацию о кэше...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1023" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1201" /> <source>Show Cached Files...</source> <translation>Показать кэшированные файлы...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1026" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1204" /> <source>Remove Cached Files...</source> <translation>Удалить кэшированные файлы...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1029" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1207" /> <source>Purge Cache...</source> <translation>Очистить кэш...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1034" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1212" /> <source>Edit User Configuration...</source> <translation>Правка конфигурации пользователя...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1037" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1215" /> <source>Edit Environment Configuration...</source> <translation>Правка конфигурации среды окружения...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1042" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1220" /> <source>Configure...</source> <translation>Настроить...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1237" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1224" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1213" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1421" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1408" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1397" /> <source>Edit Configuration</source> <translation>Правка конфигурации</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1238" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1225" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1214" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1422" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1409" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1398" /> <source>No valid configuration path determined. Aborting</source> <translation>Не определен допустимый путь конфигурации. Прерывание</translation> </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1576" /> + <source>{0} {1}</source> + <comment>package name, package version</comment> + <translation>{0} {1}</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1598" /> + <source>Affected Version:</source> + <translatorcomment>Подверженная уязвимости версия: Пораженная версия Уязвимая</translatorcomment> + <translation>Версия с уязвимостью:</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1601" /> + <source>Advisory:</source> + <translatorcomment>Консультация: Рекомендация</translatorcomment> + <translation>Advisory:</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1716" /> + <source>any</source> + <translation>любая</translation> + </message> </context> <context> <name>PipPage</name> <message> <location filename="../Preferences/ConfigurationPages/PipPage.py" line="30" /> <source><b>Note:</b> Leave empty to use the default index URL (<a href="{0}">{0}</a>).</source> - <translation><b>Примечание:</b> Не заполняйте строку если используете PyPI по умолчанию (<a href="{0}">{0}</a>).</translation> + <translation><b>Примечание:</b> Не заполняйте поле если используете PyPI по умолчанию (<a href="{0}">{0}</a>).</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.py" line="34" /> + <source><b>Note:</b> Leave empty to use the default Safety DB URL ({0}).</source> + <translation><b>Примечание:</b> Оставьте поле пустым, чтобы использовать для 'Safety DB' URL по умолчанию ({0}).</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> @@ -52313,6 +52520,36 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Vulnerability Checks</source> + <translation>Проверка уязвимостей</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Safety DB URL:</source> + <translation>URL базы данных безопасности:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the base URL for the Safety DB mirror to be used</source> + <translation>Задайте базовый URL для использования зеркала 'Safety DB'</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Cache Validity:</source> + <translation>Достоверность кэша:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</source> + <translation>Задайте время достоверности кэша Safety DB в часах (от 2 часов до 7 дней)</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source> hours</source> + <translation> час (а, ов)</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source>Environment</source> <translation>Среда окружения</translation> </message> @@ -52328,6 +52565,19 @@ </message> </context> <context> + <name>PipVulnerabilityChecker</name> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="219" /> + <source>Fetching Vulnerability Database</source> + <translation>Получение базы данных уязвимостей</translation> + </message> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="220" /> + <source><p>The vulnerability database <b>{0}</b> could not be loaded from <b>{1}</b>.</p><p>The vulnerability check is not available.</p></source> + <translation><p>Не удалось загрузить базу данных уязвимостей <b>{0}</b> из <b>{1}</b>.</p><p>Проверка уязвимостей недоступна.</p></translation> + </message> + </context> + <context> <name>PixmapDiagram</name> <message> <location filename="../Graphics/PixmapDiagram.py" line="164" /> @@ -52742,32 +52992,32 @@ <translation>Модуль не содержит атрибутов 'pluginType' и/или 'pluginTypename'.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="445" /> + <location filename="../PluginManager/PluginManager.py" line="449" /> <source>Module failed to load. Error: {0}</source> <translation>Неудачная загрузка модуля. Ошибка: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="622" /> + <location filename="../PluginManager/PluginManager.py" line="626" /> <source>Incompatible plugin activation method.</source> <translation>Несовместимый метод активации плагина.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1204" /> + <location filename="../PluginManager/PluginManager.py" line="1208" /> <source>Plugin Manager Error</source> <translation>Ошибка менеджера плагинов</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1205" /> + <location filename="../PluginManager/PluginManager.py" line="1209" /> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>Директория для загрузки плагинов <b>{0}</b> не может быть создана. Задайте её посредством диалога конфигурации.</p><p>Причина:{1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1271" /> + <location filename="../PluginManager/PluginManager.py" line="1275" /> <source>Error downloading file</source> <translation>Ошибка загрузки файла</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1272" /> + <location filename="../PluginManager/PluginManager.py" line="1276" /> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>Не удалось загрузить запрашиваемый файл из {0}.</p><p>Ошибка: {1}</p></translation> </message> @@ -52924,6 +53174,22 @@ <source>Edit URL</source> <translation>Редактировать URL</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Startup Behavior</source> + <translatorcomment>Поведение при запуске</translatorcomment> + <translation>Поведение при запуске</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Select, to check for missing plugin dependencies at startup and install them</source> + <translation>Разрешить проверять при запуске наличие отсутствующих зависимостей плагина и установливать их</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Automatic dependencies installation</source> + <translation>Автоматическая установка зависимостей</translation> + </message> </context> <context> <name>PluginRepositoryDialog</name> @@ -53592,18 +53858,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1654" /> + <location filename="../Preferences/__init__.py" line="1658" /> <source>Export Preferences</source> <translation>Экспорт Preferences</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1682" /> - <location filename="../Preferences/__init__.py" line="1656" /> + <location filename="../Preferences/__init__.py" line="1686" /> + <location filename="../Preferences/__init__.py" line="1660" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>Файлы Preferences (*.ini);;Все файлы (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> + <location filename="../Preferences/__init__.py" line="1684" /> <source>Import Preferences</source> <translation>Импорт Preferences</translation> </message> @@ -78918,7 +79184,17 @@ <translation><h3>Номера версий</h3><table></translation> </message> <message> - <location filename="../Tools/TrayStarter.py" line="582" /> + <location filename="../Tools/TrayStarter.py" line="600" /> + <source>Desktop</source> + <translation>Рабочий стол</translation> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="603" /> + <source>Session Type</source> + <translation>Тип сессии</translation> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="605" /> <source></table></source> <translation></table></translation> </message> @@ -80479,2643 +80755,2558 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="256" /> + <location filename="../UI/UserInterface.py" line="253" /> <source>Initializing Basic Services...</source> <translation>Инициализация базовых служб ...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="297" /> + <location filename="../UI/UserInterface.py" line="294" /> <source>Initializing Plugin Manager...</source> <translation>Инициализация менеджера плагинов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="304" /> + <location filename="../UI/UserInterface.py" line="301" /> <source>Generating Main User Interface...</source> <translation>Создание главного пользовательского интерфейса...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="346" /> + <location filename="../UI/UserInterface.py" line="343" /> <source>Setting up connections...</source> <translation>Установка соединений...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="593" /> + <location filename="../UI/UserInterface.py" line="590" /> <source>Initializing Tools...</source> <translation>Инициализация инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="603" /> + <location filename="../UI/UserInterface.py" line="600" /> <source>Registering Objects...</source> <translation>Регистрация объектов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="644" /> + <location filename="../UI/UserInterface.py" line="636" /> <source>Initializing Actions...</source> <translation>Инициализация действий...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="646" /> + <location filename="../UI/UserInterface.py" line="638" /> <source>Initializing Menus...</source> <translation>Инициализация меню...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="648" /> + <location filename="../UI/UserInterface.py" line="640" /> <source>Initializing Toolbars...</source> <translation>Инициализация панелей инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="650" /> + <location filename="../UI/UserInterface.py" line="642" /> <source>Initializing Statusbar...</source> <translation>Инициализация строки состояния...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="678" /> + <location filename="../UI/UserInterface.py" line="670" /> <source>Initializing Single Application Server...</source> <translation>Инициализация сервера уникального приложения...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="676" /> + <source>Initializing Plugins...</source> + <translation>Инициализация плагинов...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="679" /> + <source>Activating Plugins...</source> + <translation>Активация плагинов...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="681" /> + <source>Generating Plugins Toolbars...</source> + <translation>Генерация панели инструментов...</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="684" /> - <source>Initializing Plugins...</source> - <translation>Инициализация плагинов...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="687" /> - <source>Activating Plugins...</source> - <translation>Активация плагинов...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="689" /> - <source>Generating Plugins Toolbars...</source> - <translation>Генерация панели инструментов...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="692" /> <source>Cleaning Plugins Download Area...</source> <translation>Очистка области загрузки плагинов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="703" /> + <location filename="../UI/UserInterface.py" line="695" /> <source>Restoring Toolbarmanager...</source> <translation>Восстановление менеджера панелей инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="712" /> + <location filename="../UI/UserInterface.py" line="704" /> <source>Setting View Profile...</source> <translation>Установка профилей...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="725" /> + <location filename="../UI/UserInterface.py" line="717" /> <source>Reading Tasks...</source> <translation>Чтение задач...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="730" /> + <location filename="../UI/UserInterface.py" line="722" /> <source>Reading Templates...</source> <translation>Чтение шаблонов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="735" /> + <location filename="../UI/UserInterface.py" line="727" /> <source>Starting Debugger...</source> <translation>Запуск отладчика...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2041" /> - <location filename="../UI/UserInterface.py" line="1065" /> + <location filename="../UI/UserInterface.py" line="2033" /> + <location filename="../UI/UserInterface.py" line="1057" /> <source>Left Toolbox</source> <translation>Левая панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2072" /> - <location filename="../UI/UserInterface.py" line="1073" /> + <location filename="../UI/UserInterface.py" line="2064" /> + <location filename="../UI/UserInterface.py" line="1065" /> <source>Horizontal Toolbox</source> <translation>Горизонтальная панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2056" /> - <location filename="../UI/UserInterface.py" line="1081" /> + <location filename="../UI/UserInterface.py" line="2048" /> + <location filename="../UI/UserInterface.py" line="1073" /> <source>Right Toolbox</source> <translation>Правая панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915" /> - <location filename="../UI/UserInterface.py" line="1237" /> - <location filename="../UI/UserInterface.py" line="1089" /> + <location filename="../UI/UserInterface.py" line="1907" /> + <location filename="../UI/UserInterface.py" line="1229" /> + <location filename="../UI/UserInterface.py" line="1081" /> <source>Multiproject-Viewer</source> <translation>Просмотр мультипроекта</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1898" /> - <location filename="../UI/UserInterface.py" line="1242" /> - <location filename="../UI/UserInterface.py" line="1093" /> + <location filename="../UI/UserInterface.py" line="1890" /> + <location filename="../UI/UserInterface.py" line="1234" /> + <location filename="../UI/UserInterface.py" line="1085" /> <source>Project-Viewer</source> <translation>Просмотр проекта</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2326" /> - <location filename="../UI/UserInterface.py" line="2325" /> - <location filename="../UI/UserInterface.py" line="1247" /> - <location filename="../UI/UserInterface.py" line="1097" /> + <location filename="../UI/UserInterface.py" line="2318" /> + <location filename="../UI/UserInterface.py" line="2317" /> + <location filename="../UI/UserInterface.py" line="1239" /> + <location filename="../UI/UserInterface.py" line="1089" /> <source>Find/Replace In Files</source> <translation>Найти/Заменить в файлах</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2344" /> - <location filename="../UI/UserInterface.py" line="2343" /> - <location filename="../UI/UserInterface.py" line="1252" /> - <location filename="../UI/UserInterface.py" line="1101" /> + <location filename="../UI/UserInterface.py" line="2336" /> + <location filename="../UI/UserInterface.py" line="2335" /> + <location filename="../UI/UserInterface.py" line="1244" /> + <location filename="../UI/UserInterface.py" line="1093" /> <source>Find File</source> <translation>Найти файл</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1257" /> - <location filename="../UI/UserInterface.py" line="1105" /> + <location filename="../UI/UserInterface.py" line="1249" /> + <location filename="../UI/UserInterface.py" line="1097" /> <source>VCS Status</source> <translation>Статус VCS</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2022" /> - <location filename="../UI/UserInterface.py" line="1263" /> - <location filename="../UI/UserInterface.py" line="1110" /> + <location filename="../UI/UserInterface.py" line="2014" /> + <location filename="../UI/UserInterface.py" line="1255" /> + <location filename="../UI/UserInterface.py" line="1102" /> <source>Template-Viewer</source> <translation>Просмотр шаблонов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1968" /> - <location filename="../UI/UserInterface.py" line="1269" /> - <location filename="../UI/UserInterface.py" line="1115" /> + <location filename="../UI/UserInterface.py" line="1960" /> + <location filename="../UI/UserInterface.py" line="1261" /> + <location filename="../UI/UserInterface.py" line="1107" /> <source>File-Browser</source> <translation>Браузер файлов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1275" /> - <location filename="../UI/UserInterface.py" line="1120" /> + <location filename="../UI/UserInterface.py" line="1267" /> + <location filename="../UI/UserInterface.py" line="1112" /> <source>Symbols</source> <translation>Символы</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1933" /> - <location filename="../UI/UserInterface.py" line="1295" /> - <location filename="../UI/UserInterface.py" line="1290" /> - <location filename="../UI/UserInterface.py" line="1128" /> + <location filename="../UI/UserInterface.py" line="1925" /> + <location filename="../UI/UserInterface.py" line="1287" /> + <location filename="../UI/UserInterface.py" line="1282" /> + <location filename="../UI/UserInterface.py" line="1120" /> <source>Debug-Viewer</source> <translation>Просмотр отладки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2215" /> - <location filename="../UI/UserInterface.py" line="2214" /> - <location filename="../UI/UserInterface.py" line="1301" /> - <location filename="../UI/UserInterface.py" line="1133" /> + <location filename="../UI/UserInterface.py" line="2207" /> + <location filename="../UI/UserInterface.py" line="2206" /> + <location filename="../UI/UserInterface.py" line="1293" /> + <location filename="../UI/UserInterface.py" line="1125" /> <source>Code Documentation Viewer</source> <translation>Просмотр документации кода</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2380" /> - <location filename="../UI/UserInterface.py" line="2379" /> - <location filename="../UI/UserInterface.py" line="1307" /> - <location filename="../UI/UserInterface.py" line="1138" /> + <location filename="../UI/UserInterface.py" line="2372" /> + <location filename="../UI/UserInterface.py" line="2371" /> + <location filename="../UI/UserInterface.py" line="1299" /> + <location filename="../UI/UserInterface.py" line="1130" /> <source>Help Viewer</source> <translation>Просмотрщик справки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3103" /> - <location filename="../UI/UserInterface.py" line="2289" /> - <location filename="../UI/UserInterface.py" line="2288" /> - <location filename="../UI/UserInterface.py" line="1312" /> - <location filename="../UI/UserInterface.py" line="1142" /> + <location filename="../UI/UserInterface.py" line="3069" /> + <location filename="../UI/UserInterface.py" line="2281" /> + <location filename="../UI/UserInterface.py" line="2280" /> + <location filename="../UI/UserInterface.py" line="1304" /> + <location filename="../UI/UserInterface.py" line="1134" /> <source>Plugin Repository</source> <translation>Репозиторий плагинов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2307" /> - <location filename="../UI/UserInterface.py" line="2306" /> - <location filename="../UI/UserInterface.py" line="1317" /> - <location filename="../UI/UserInterface.py" line="1146" /> + <location filename="../UI/UserInterface.py" line="2299" /> + <location filename="../UI/UserInterface.py" line="2298" /> + <location filename="../UI/UserInterface.py" line="1309" /> + <location filename="../UI/UserInterface.py" line="1138" /> <source>Virtual Environments</source> <translation>Виртуальные окружения</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2235" /> - <location filename="../UI/UserInterface.py" line="2234" /> - <location filename="../UI/UserInterface.py" line="1322" /> - <location filename="../UI/UserInterface.py" line="1151" /> + <location filename="../UI/UserInterface.py" line="2227" /> + <location filename="../UI/UserInterface.py" line="2226" /> + <location filename="../UI/UserInterface.py" line="1314" /> + <location filename="../UI/UserInterface.py" line="1143" /> <source>PyPI</source> <translation>PyPI</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2253" /> - <location filename="../UI/UserInterface.py" line="2252" /> - <location filename="../UI/UserInterface.py" line="1327" /> - <location filename="../UI/UserInterface.py" line="1156" /> + <location filename="../UI/UserInterface.py" line="2245" /> + <location filename="../UI/UserInterface.py" line="2244" /> + <location filename="../UI/UserInterface.py" line="1319" /> + <location filename="../UI/UserInterface.py" line="1148" /> <source>Conda</source> <translation>Conda</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1332" /> - <location filename="../UI/UserInterface.py" line="1161" /> + <location filename="../UI/UserInterface.py" line="1324" /> + <location filename="../UI/UserInterface.py" line="1153" /> <source>Cooperation</source> <translation>Кооперация</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2158" /> - <location filename="../UI/UserInterface.py" line="1337" /> - <location filename="../UI/UserInterface.py" line="1166" /> + <location filename="../UI/UserInterface.py" line="2150" /> + <location filename="../UI/UserInterface.py" line="1329" /> + <location filename="../UI/UserInterface.py" line="1158" /> <source>IRC</source> <translation>IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2271" /> - <location filename="../UI/UserInterface.py" line="2270" /> - <location filename="../UI/UserInterface.py" line="1343" /> - <location filename="../UI/UserInterface.py" line="1171" /> + <location filename="../UI/UserInterface.py" line="2263" /> + <location filename="../UI/UserInterface.py" line="2262" /> + <location filename="../UI/UserInterface.py" line="1335" /> + <location filename="../UI/UserInterface.py" line="1163" /> <source>MicroPython</source> <translation>MicroPython</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1951" /> - <location filename="../UI/UserInterface.py" line="1351" /> - <location filename="../UI/UserInterface.py" line="1179" /> + <location filename="../UI/UserInterface.py" line="1943" /> + <location filename="../UI/UserInterface.py" line="1343" /> + <location filename="../UI/UserInterface.py" line="1171" /> <source>Shell</source> <translation>Оболочка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003" /> - <location filename="../UI/UserInterface.py" line="1355" /> - <location filename="../UI/UserInterface.py" line="1183" /> + <location filename="../UI/UserInterface.py" line="1995" /> + <location filename="../UI/UserInterface.py" line="1347" /> + <location filename="../UI/UserInterface.py" line="1175" /> <source>Task-Viewer</source> <translation>Просмотр задач</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1985" /> - <location filename="../UI/UserInterface.py" line="1359" /> - <location filename="../UI/UserInterface.py" line="1187" /> + <location filename="../UI/UserInterface.py" line="1977" /> + <location filename="../UI/UserInterface.py" line="1351" /> + <location filename="../UI/UserInterface.py" line="1179" /> <source>Log-Viewer</source> <translation>Просмотр журналов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1364" /> - <location filename="../UI/UserInterface.py" line="1192" /> + <location filename="../UI/UserInterface.py" line="1356" /> + <location filename="../UI/UserInterface.py" line="1184" /> <source>Numbers</source> <translation>Представление чисел</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752" /> + <location filename="../UI/UserInterface.py" line="1744" /> <source>{0} - Passive Mode</source> <translation>{0} - пассивный режим</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1759" /> - <location filename="../UI/UserInterface.py" line="1755" /> + <location filename="../UI/UserInterface.py" line="1751" /> + <location filename="../UI/UserInterface.py" line="1747" /> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - пассивный режим</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1763" /> + <location filename="../UI/UserInterface.py" line="1755" /> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - пассивный режим</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1786" /> + <location filename="../UI/UserInterface.py" line="1778" /> <source>Quit</source> <translation>Выйти</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1788" /> + <location filename="../UI/UserInterface.py" line="1780" /> <source>&Quit</source> <translation>&Выйти</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1789" /> + <location filename="../UI/UserInterface.py" line="1781" /> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1791" /> + <location filename="../UI/UserInterface.py" line="1783" /> <source>Quit the IDE</source> <translation>Выход из IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1792" /> + <location filename="../UI/UserInterface.py" line="1784" /> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Выход из IDE</b> <p>Перед выходом все изменения могут быть сохранены. Отлаживаемая программа (если есть) будет остановлена, и предпочтения будут сохранены на диск.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1805" /> - <location filename="../UI/UserInterface.py" line="1803" /> + <location filename="../UI/UserInterface.py" line="1797" /> + <location filename="../UI/UserInterface.py" line="1795" /> <source>Restart</source> <translation>Рестарт</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806" /> + <location filename="../UI/UserInterface.py" line="1798" /> <source>Ctrl+Shift+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Shift+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1808" /> + <location filename="../UI/UserInterface.py" line="1800" /> <source>Restart the IDE</source> <translation>Перезапуск IDE</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1809" /> + <location filename="../UI/UserInterface.py" line="1801" /> <source><b>Restart the IDE</b><p>This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Рестарт IDEE</b><p>Перезапуск среды IDE. Любые несохраненные изменения сохраняются в первую очередь. Любая программа Python, находящаяся в процессе отладки, будет остановлена, предпочтения будут записаны на диск.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1822" /> - <location filename="../UI/UserInterface.py" line="1819" /> + <location filename="../UI/UserInterface.py" line="1814" /> + <location filename="../UI/UserInterface.py" line="1811" /> <source>Save session</source> <translation>Сохранить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1820" /> + <location filename="../UI/UserInterface.py" line="1812" /> <source>Save session...</source> <translation>Сохранить сессию...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1823" /> + <location filename="../UI/UserInterface.py" line="1815" /> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation><b>Сохранить сессию...</b><p>Позволяет сохранить текущую сессию на диск. Открывается диалог для выбора имени файла.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7022" /> - <location filename="../UI/UserInterface.py" line="1835" /> - <location filename="../UI/UserInterface.py" line="1832" /> + <location filename="../UI/UserInterface.py" line="7080" /> + <location filename="../UI/UserInterface.py" line="1827" /> + <location filename="../UI/UserInterface.py" line="1824" /> <source>Load session</source> <translation>Загрузить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1833" /> + <location filename="../UI/UserInterface.py" line="1825" /> <source>Load session...</source> <translation>Загрузить сессию...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1836" /> + <location filename="../UI/UserInterface.py" line="1828" /> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation><b>Загрузить сессию...</b><p>Позволяет загрузить сессию, ранее сохраненную на диске. Открывается диалог для выбора имени файла.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1845" /> + <location filename="../UI/UserInterface.py" line="1837" /> <source>New Window</source> <translation>Новое окно</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1847" /> + <location filename="../UI/UserInterface.py" line="1839" /> <source>New &Window</source> <translation>&Новое окно</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848" /> + <location filename="../UI/UserInterface.py" line="1840" /> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1850" /> + <location filename="../UI/UserInterface.py" line="1842" /> <source>Open a new eric instance</source> <translation>Запустить ещё один экземпляр eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1852" /> + <location filename="../UI/UserInterface.py" line="1844" /> <source><b>New Window</b><p>This opens a new instance of the eric IDE.</p></source> <translation><b>Новое окно</b><p>Запустить ещё один экземпляр eric IDE.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1866" /> - <location filename="../UI/UserInterface.py" line="1864" /> + <location filename="../UI/UserInterface.py" line="1858" /> + <location filename="../UI/UserInterface.py" line="1856" /> <source>Edit Profile</source> <translation>Профиль редактирования</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1869" /> + <location filename="../UI/UserInterface.py" line="1861" /> <source>Activate the edit view profile</source> <translation>Активизировать профиль редактирования</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871" /> + <location filename="../UI/UserInterface.py" line="1863" /> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Профиль редактирования</b><p>Активизировать "профиль редактирования". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1883" /> - <location filename="../UI/UserInterface.py" line="1881" /> + <location filename="../UI/UserInterface.py" line="1875" /> + <location filename="../UI/UserInterface.py" line="1873" /> <source>Debug Profile</source> <translation>Профиль отладки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1887" /> + <location filename="../UI/UserInterface.py" line="1879" /> <source>Activate the debug view profile</source> <translation>Активизировать профиль отладки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1888" /> + <location filename="../UI/UserInterface.py" line="1880" /> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Профиль отладки</b><p>Активизировать "профиль отладки". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899" /> + <location filename="../UI/UserInterface.py" line="1891" /> <source>&Project-Viewer</source> <translation>Просмотр &проекта</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1900" /> + <location filename="../UI/UserInterface.py" line="1892" /> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1903" /> + <location filename="../UI/UserInterface.py" line="1895" /> <source>Switch the input focus to the Project-Viewer window.</source> <translation>Переключить фокус ввода в окно просмотра проекта.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1905" /> + <location filename="../UI/UserInterface.py" line="1897" /> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation><b>Активировать просмотрщик проекта</b><p>Переключить фокус ввода в окно просмотра проекта.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1916" /> + <location filename="../UI/UserInterface.py" line="1908" /> <source>&Multiproject-Viewer</source> <translation>Просмотр &мультипроекта</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1917" /> + <location filename="../UI/UserInterface.py" line="1909" /> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920" /> + <location filename="../UI/UserInterface.py" line="1912" /> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation>Переключить фокус ввода в окно просмотра мультипроекта.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922" /> + <location filename="../UI/UserInterface.py" line="1914" /> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation><b>Активировать просмотрщик проектов</b><p>Переключить фокус ввода в окно просмотра мультипроекта.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1934" /> + <location filename="../UI/UserInterface.py" line="1926" /> <source>&Debug-Viewer</source> <translation>Просмотр &отладки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935" /> + <location filename="../UI/UserInterface.py" line="1927" /> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1938" /> + <location filename="../UI/UserInterface.py" line="1930" /> <source>Switch the input focus to the Debug-Viewer window.</source> <translation>Переключить фокус ввода в окно просмотра отладки.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1940" /> + <location filename="../UI/UserInterface.py" line="1932" /> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation><b>Активировать просмотрщик отладки</b><p>Переключить фокус ввода в окно просмотра отладки.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1952" /> + <location filename="../UI/UserInterface.py" line="1944" /> <source>&Shell</source> <translation>&Оболочка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1953" /> + <location filename="../UI/UserInterface.py" line="1945" /> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1956" /> + <location filename="../UI/UserInterface.py" line="1948" /> <source>Switch the input focus to the Shell window.</source> <translation>Переключить фокус ввода в окно оболочки.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1958" /> + <location filename="../UI/UserInterface.py" line="1950" /> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation><b>Активировать оболочку</b><p>Переключить фокус ввода в окно оболочки.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1969" /> + <location filename="../UI/UserInterface.py" line="1961" /> <source>&File-Browser</source> <translation>&Браузер файлов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1970" /> + <location filename="../UI/UserInterface.py" line="1962" /> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1973" /> + <location filename="../UI/UserInterface.py" line="1965" /> <source>Switch the input focus to the File-Browser window.</source> <translation>Переключить фокус ввода в окно браузера файлов.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1975" /> + <location filename="../UI/UserInterface.py" line="1967" /> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation><b>Активировать браузер файлов</b><p>Переключить фокус ввода в окно браузера файлов.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1986" /> + <location filename="../UI/UserInterface.py" line="1978" /> <source>Lo&g-Viewer</source> <translation>Просмотр &журнала</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1987" /> + <location filename="../UI/UserInterface.py" line="1979" /> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1990" /> + <location filename="../UI/UserInterface.py" line="1982" /> <source>Switch the input focus to the Log-Viewer window.</source> <translation>Переключить фокус ввода в окно просмотра журналов.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1992" /> + <location filename="../UI/UserInterface.py" line="1984" /> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation><b>Активировать просмотрщик журнала</b><p>Переключить фокус ввода в окно просмотра журнала.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004" /> + <location filename="../UI/UserInterface.py" line="1996" /> <source>&Task-Viewer</source> <translation>Просмотр &задач</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2005" /> + <location filename="../UI/UserInterface.py" line="1997" /> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2008" /> + <location filename="../UI/UserInterface.py" line="2000" /> <source>Switch the input focus to the Task-Viewer window.</source> <translation>Переключить фокус ввода в окно просмотра задач.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2010" /> + <location filename="../UI/UserInterface.py" line="2002" /> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation><b>Активировать просмотрщик задач</b><p>Переключить фокус ввода в окно просмотра задач.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2023" /> + <location filename="../UI/UserInterface.py" line="2015" /> <source>Templ&ate-Viewer</source> <translation>Просмотр &шаблонов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2024" /> + <location filename="../UI/UserInterface.py" line="2016" /> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2027" /> + <location filename="../UI/UserInterface.py" line="2019" /> <source>Switch the input focus to the Template-Viewer window.</source> <translation>Переключить фокус ввода в окно просмотра шаблонов.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2029" /> + <location filename="../UI/UserInterface.py" line="2021" /> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation><b>Активировать просмотрщик шаблонов</b><p>Переключить фокус ввода в окно просмотра шаблонов.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2042" /> + <location filename="../UI/UserInterface.py" line="2034" /> <source>&Left Toolbox</source> <translation>&Левая панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2043" /> + <location filename="../UI/UserInterface.py" line="2035" /> <source>Toggle the Left Toolbox window</source> <translation>Показать/Скрыть левую панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2044" /> + <location filename="../UI/UserInterface.py" line="2036" /> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть левую панель инструментов</b><p>Если левая панель инструментов скрыта, то показать ее. Если отображается, то скрыть.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2057" /> + <location filename="../UI/UserInterface.py" line="2049" /> <source>&Right Toolbox</source> <translation>&Правая панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2059" /> + <location filename="../UI/UserInterface.py" line="2051" /> <source>Toggle the Right Toolbox window</source> <translation>Показать/Скрыть правую панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2060" /> + <location filename="../UI/UserInterface.py" line="2052" /> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/Скрыть правую панель инструментов</b><p>Если аравая панель инструментов скрыта, то показать ее. Если отображается, то скрыть.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2073" /> + <location filename="../UI/UserInterface.py" line="2065" /> <source>&Horizontal Toolbox</source> <translation>&Горизонтальная панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2075" /> + <location filename="../UI/UserInterface.py" line="2067" /> <source>Toggle the Horizontal Toolbox window</source> <translation>Включить/Выключить горизонтальную панель инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2077" /> + <location filename="../UI/UserInterface.py" line="2069" /> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Включить/Выключить горизонтальную панель инструментов</b><p>Включить/Выключить горизонтальную панель инструментов</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2089" /> + <location filename="../UI/UserInterface.py" line="2081" /> <source>Left Sidebar</source> <translation>Левая док-панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2090" /> + <location filename="../UI/UserInterface.py" line="2082" /> <source>&Left Sidebar</source> <translation>&Левая док-панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2092" /> + <location filename="../UI/UserInterface.py" line="2084" /> <source>Toggle the left sidebar window</source> <translation>Показать/Скрыть левую док-панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2093" /> + <location filename="../UI/UserInterface.py" line="2085" /> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/Скрыть левую док-панель</b> <p>Если левая док-панель скрыта, показать её. Иначе - закрыть.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2105" /> + <location filename="../UI/UserInterface.py" line="2097" /> <source>Right Sidebar</source> <translation>Правая боковая панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2106" /> + <location filename="../UI/UserInterface.py" line="2098" /> <source>&Right Sidebar</source> <translation>&Правая боковая панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2108" /> + <location filename="../UI/UserInterface.py" line="2100" /> <source>Toggle the right sidebar window</source> <translation>Показать/Скрыть окно правой боковой панели</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110" /> + <location filename="../UI/UserInterface.py" line="2102" /> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/Скрыть окно правой боковой панели</b><p>Если окно правой боковой панели скрыто, то показать его. Если отображается, то закрыть.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2122" /> + <location filename="../UI/UserInterface.py" line="2114" /> <source>Bottom Sidebar</source> <translation>Нижняя док-панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2123" /> + <location filename="../UI/UserInterface.py" line="2115" /> <source>&Bottom Sidebar</source> <translation>&Нижняя док-панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2125" /> + <location filename="../UI/UserInterface.py" line="2117" /> <source>Toggle the bottom sidebar window</source> <translation>Показать/Скрыть нижнюю док-панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2127" /> + <location filename="../UI/UserInterface.py" line="2119" /> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/Скрыть нижнюю док-панель</b> <p>Если нижняя док-панель скрыта, показать её. Иначе - закрыть.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139" /> + <location filename="../UI/UserInterface.py" line="2131" /> <source>Cooperation-Viewer</source> <translation>Просмотр кооперации</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2140" /> + <location filename="../UI/UserInterface.py" line="2132" /> <source>Co&operation-Viewer</source> <translation>Просмотр ко&операции</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2141" /> + <location filename="../UI/UserInterface.py" line="2133" /> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144" /> + <location filename="../UI/UserInterface.py" line="2136" /> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation>Переключить фокус ввода в окно просмотра кооперации.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146" /> + <location filename="../UI/UserInterface.py" line="2138" /> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation><b>Активировать просмотрщик кооперации</b><p>Переключить фокус ввода в окно просмотра кооперации.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2159" /> + <location filename="../UI/UserInterface.py" line="2151" /> <source>&IRC</source> <translation>&IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160" /> + <location filename="../UI/UserInterface.py" line="2152" /> <source>Ctrl+Alt+Shift+I</source> <translation>Ctrl+Alt+Shift+I</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2163" /> + <location filename="../UI/UserInterface.py" line="2155" /> <source>Switch the input focus to the IRC window.</source> <translation>Переключить фокус ввода в окно IRC.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2165" /> + <location filename="../UI/UserInterface.py" line="2157" /> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation><b>Активировать IRC</b><p>Переключить фокус ввода в окно IRC.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176" /> + <location filename="../UI/UserInterface.py" line="2168" /> <source>Symbols-Viewer</source> <translation>Просмотр символов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2177" /> + <location filename="../UI/UserInterface.py" line="2169" /> <source>S&ymbols-Viewer</source> <translation>Просмотр с&имволов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2178" /> + <location filename="../UI/UserInterface.py" line="2170" /> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2181" /> + <location filename="../UI/UserInterface.py" line="2173" /> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation>Переключить фокус ввода в окно просмотра символов.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183" /> + <location filename="../UI/UserInterface.py" line="2175" /> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation><b>Активировать просмотрщик символов</b><p>Переключить фокус ввода в окно просмотра символов.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2195" /> + <location filename="../UI/UserInterface.py" line="2187" /> <source>Numbers-Viewer</source> <translation>Представление чисел</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196" /> + <location filename="../UI/UserInterface.py" line="2188" /> <source>Num&bers-Viewer</source> <translation>Представление &чисел</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2197" /> + <location filename="../UI/UserInterface.py" line="2189" /> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2200" /> + <location filename="../UI/UserInterface.py" line="2192" /> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation>Переключить фокус ввода в окно просмотра чисел.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202" /> + <location filename="../UI/UserInterface.py" line="2194" /> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation><b>Активировать просмотрщик чисел</b><p>Переключить фокус ввода в окно просмотра чисел.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2216" /> + <location filename="../UI/UserInterface.py" line="2208" /> <source>Ctrl+Alt+Shift+D</source> <translation>Ctrl+Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2219" /> + <location filename="../UI/UserInterface.py" line="2211" /> <source>Switch the input focus to the Code Documentation Viewer window.</source> <translation>Переключить фокус ввода в окно просмотра документации кода.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2222" /> + <location filename="../UI/UserInterface.py" line="2214" /> <source><b>Code Documentation Viewer</b><p>This switches the input focus to the Code Documentation Viewer window.</p></source> <translation><b>Просмотр документации кода</b><p>Переключение фокуса ввода в окно просмотра документации кода.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2236" /> + <location filename="../UI/UserInterface.py" line="2228" /> <source>Ctrl+Alt+Shift+P</source> <translation>Ctrl+Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2239" /> + <location filename="../UI/UserInterface.py" line="2231" /> <source>Switch the input focus to the PyPI window.</source> <translation>Переключить фокус ввода в окно PyPI.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2241" /> + <location filename="../UI/UserInterface.py" line="2233" /> <source><b>PyPI</b><p>This switches the input focus to the PyPI window.</p></source> <translation><b>PyPI</b><p>Переключение фокуса ввода в окно PyPI.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2254" /> + <location filename="../UI/UserInterface.py" line="2246" /> <source>Ctrl+Alt+Shift+C</source> <translation>Ctrl+Alt+Shift+C</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2257" /> + <location filename="../UI/UserInterface.py" line="2249" /> <source>Switch the input focus to the Conda window.</source> <translation>Переключить фокус ввода в окно Conda.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2259" /> + <location filename="../UI/UserInterface.py" line="2251" /> <source><b>Conda</b><p>This switches the input focus to the Conda window.</p></source> <translation><b>Conda</b><p>Переключение фокуса ввода в окно Conda.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2272" /> + <location filename="../UI/UserInterface.py" line="2264" /> <source>Ctrl+Alt+Shift+M</source> <translation>Ctrl+Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2275" /> + <location filename="../UI/UserInterface.py" line="2267" /> <source>Switch the input focus to the MicroPython window.</source> <translation>Переключить фокус ввода в окно MicroPython.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2277" /> + <location filename="../UI/UserInterface.py" line="2269" /> <source><b>MicroPython</b><p>This switches the input focus to the MicroPython window.</p></source> <translation><b>MicroPython</b><p>Переключение фокуса ввода в окно MicroPython.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2290" /> + <location filename="../UI/UserInterface.py" line="2282" /> <source>Ctrl+Alt+Shift+R</source> <translation>Ctrl+Alt+Shift+R</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2293" /> + <location filename="../UI/UserInterface.py" line="2285" /> <source>Switch the input focus to the Plugin Repository window.</source> <translation>Переключить фокус ввода в окно репозитория плагинов.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2295" /> + <location filename="../UI/UserInterface.py" line="2287" /> <source><b>Plugin Repository</b><p>This switches the input focus to the Plugin Repository window.</p></source> <translation><b>Репозиторий плагинов</b><p>Переключение фокуса ввода в окно репозитория подключаемых модулей.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2308" /> + <location filename="../UI/UserInterface.py" line="2300" /> <source>Ctrl+Alt+V</source> <translation>Ctrl+Alt+V</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2311" /> + <location filename="../UI/UserInterface.py" line="2303" /> <source>Switch the input focus to the Virtual Environments Manager window.</source> <translation>Переключить фокус ввода в окно диспетчера виртуальных сред.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2314" /> + <location filename="../UI/UserInterface.py" line="2306" /> <source><b>Virtual Environments</b><p>This switches the input focus to the Virtual Environments Manager window.</p></source> <translation><b>Виртуальные окружения</b><p>Переключение фокуса ввода в окно диспетчера виртуальных сред.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2327" /> + <location filename="../UI/UserInterface.py" line="2319" /> <source>Ctrl+Alt+Shift+F</source> <translation>Ctrl+Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2330" /> + <location filename="../UI/UserInterface.py" line="2322" /> <source>Switch the input focus to the Find/Replace In Files window.</source> <translation>Переключить фокус ввода в окно 'Найти/Заменить в файлах'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2332" /> + <location filename="../UI/UserInterface.py" line="2324" /> <source><b>Find/Replace In Files</b><p>This switches the input focus to the Find/Replace In Files window.</p></source> <translation><b>Найти/Заменить в файлах</b><p>Переключение фокуса ввода в окно 'Найти/Заменить в файлах'.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2345" /> + <location filename="../UI/UserInterface.py" line="2337" /> <source>Ctrl+Alt+Shift+L</source> <translation>Ctrl+Alt+Shift+L</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2348" /> + <location filename="../UI/UserInterface.py" line="2340" /> <source>Switch the input focus to the Find File window.</source> <translation>Переключить фокус ввода в окно 'Найти файл'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2350" /> + <location filename="../UI/UserInterface.py" line="2342" /> <source><b>Find File</b><p>This switches the input focus to the Find File window.</p></source> <translation><b>Найти файл</b><p>Переключение фокус ввода в окно 'Найти файл'.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2362" /> - <location filename="../UI/UserInterface.py" line="2361" /> + <location filename="../UI/UserInterface.py" line="2354" /> + <location filename="../UI/UserInterface.py" line="2353" /> <source>VCS Status List</source> <translation>Список статусов VCS</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2363" /> + <location filename="../UI/UserInterface.py" line="2355" /> <source>Alt+Shift+V</source> <translation>Alt+Shift+V</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366" /> + <location filename="../UI/UserInterface.py" line="2358" /> <source>Switch the input focus to the VCS Status List window.</source> <translation>Переключить фокус ввода в окно 'Список статусов VCS'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2368" /> + <location filename="../UI/UserInterface.py" line="2360" /> <source><b>VCS Status List</b><p>This switches the input focus to the VCS Status List window.</p></source> <translation><b>Список статусов VCS</b><p>Переключение фокуса ввода в окно 'Список статусов VCS'.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2381" /> + <location filename="../UI/UserInterface.py" line="2373" /> <source>Alt+Shift+H</source> <translation>Alt+Shift+H</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2384" /> + <location filename="../UI/UserInterface.py" line="2376" /> <source>Switch the input focus to the embedded Help Viewer window.</source> <translation>Переключение фокуса ввода в окно встроенного просмотрщика справки.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386" /> + <location filename="../UI/UserInterface.py" line="2378" /> <source><b>Help Viewer</b><p>This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation><b>Просмотрщик справки</b><p>Переключение фокуса ввода в окно встроенного просмотрщика справки. В нем отображаются файлы справки HTML и справка из коллекций справки Qt.</p><p>Если вызов с выбранным словом, это слово ищется в коллекции справки Qt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2399" /> + <location filename="../UI/UserInterface.py" line="2391" /> <source>What's This?</source> <translation>Что это?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2401" /> + <location filename="../UI/UserInterface.py" line="2393" /> <source>&What's This?</source> <translation>&Что это?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2402" /> + <location filename="../UI/UserInterface.py" line="2394" /> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404" /> + <location filename="../UI/UserInterface.py" line="2396" /> <source>Context sensitive help</source> <translation>Контекстнозависимая справка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2405" /> + <location filename="../UI/UserInterface.py" line="2397" /> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Показ контекстнозависимой справки</b><p>В режиме "What's This?"(Что это?)курсор мыши отображается как стрелка со знаком вопроса, и вы можете, кликнув по элементу интерфейса, получить краткое описание того, что он делает и как его использовать. В диалоговом окне эта функция может быть вызвана кнопкой контекстной справки в панели заголовка.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2417" /> + <location filename="../UI/UserInterface.py" line="2409" /> <source>Helpviewer</source> <translation>Просмотр справки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419" /> + <location filename="../UI/UserInterface.py" line="2411" /> <source>&Helpviewer...</source> <translation>Просмотр спр&авки...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2420" /> + <location filename="../UI/UserInterface.py" line="2412" /> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2422" /> + <location filename="../UI/UserInterface.py" line="2414" /> <source>Open the helpviewer window</source> <translation>Открыть окно просмотра справки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2424" /> + <location filename="../UI/UserInterface.py" line="2416" /> <source><b>Helpviewer</b><p>Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation><b>Просмотр справки</b><p>Открытие eric web-браузера. В его окне будут показываться HTML файлы справки. Оно поддерживает навигацию по ссылкам, закладки, печать и некоторые другие функции. Его можно использовать для просмотра интернета.</p><p>Если перед вызовом окна отображения справки был подсвечен какой-либо текст, то будет произведён поиск этого текста в коллекции справки Qt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2443" /> + <location filename="../UI/UserInterface.py" line="2435" /> <source>Show Versions</source> <translation>Показать версии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2444" /> + <location filename="../UI/UserInterface.py" line="2436" /> <source>Show &Versions</source> <translation>Показать &версии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446" /> + <location filename="../UI/UserInterface.py" line="2438" /> <source>Display version information</source> <translation>Информация о версии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2448" /> + <location filename="../UI/UserInterface.py" line="2440" /> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Показать версии</b><p>Информация о версиях.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2458" /> - <location filename="../UI/UserInterface.py" line="2456" /> - <source>Check for Updates</source> - <translation>Проверить наличие обновлений</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2457" /> - <source>Check for &Updates...</source> - <translation>Наличие &обновлений...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2459" /> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric.</p></source> - <translation><b>Проверить наличие обновлений...</b><p>Проверить наличие обновлений eric в интернете.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2467" /> - <source>Show downloadable versions</source> - <translation>Показать версии, доступные для загрузки</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2468" /> - <source>Show &downloadable versions...</source> - <translation>Версии, доступные для &загрузки...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2471" /> - <source>Show the versions available for download</source> - <translation>Показать версии, доступные для загрузки</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2472" /> - <source><b>Show downloadable versions...</b><p>Shows the eric versions available for download from the internet.</p></source> - <translation><b>Показать версии, доступные для загрузки...</b><p>Показывает версии eric, которые можно скачать с интернета.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2485" /> - <location filename="../UI/UserInterface.py" line="2482" /> + <location filename="../UI/UserInterface.py" line="2451" /> + <location filename="../UI/UserInterface.py" line="2448" /> <source>Show Error Log</source> <translation>Показать журнал ошибок</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2483" /> + <location filename="../UI/UserInterface.py" line="2449" /> <source>Show Error &Log...</source> <translation>&Журнал ошибок...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2452" /> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation><b>Показать журнал ошибок...</b><p>Показать журнал ошибок.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2460" /> + <source>Show Install Info</source> + <translation>Показать информацию об установке</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2461" /> + <source>Show Install &Info...</source> + <translation>Показать информацию об &установке...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2463" /> + <source>Show Installation Information</source> + <translation>Показать информацию об установке</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2465" /> + <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> + <translation><b>Показать информацию об установке...</b><p>Открывает диалоговое окно, в котором отображается некая информация о процессе установки.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4083" /> + <location filename="../UI/UserInterface.py" line="2474" /> + <source>Report Bug</source> + <translation>Сообщение об ошибке</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2475" /> + <source>Report &Bug...</source> + <translation>Сообщить об &ошибке...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2477" /> + <source>Report a bug</source> + <translation>Сообщить об ошибке</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2478" /> + <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <translation><b>Сообщить об ошибке...</b><p>Открытие диалога для сообщения об ошибке.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2486" /> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation><b>Показать журнал ошибок...</b><p>Показать журнал ошибок.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2494" /> - <source>Show Install Info</source> - <translation>Показать информацию об установке</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2495" /> - <source>Show Install &Info...</source> - <translation>Показать информацию об &установке...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2497" /> - <source>Show Installation Information</source> - <translation>Показать информацию об установке</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2499" /> - <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> - <translation><b>Показать информацию об установке...</b><p>Открывает диалоговое окно, в котором отображается некая информация о процессе установки.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4120" /> - <location filename="../UI/UserInterface.py" line="2508" /> - <source>Report Bug</source> - <translation>Сообщение об ошибке</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2509" /> - <source>Report &Bug...</source> - <translation>Сообщить об &ошибке...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2511" /> - <source>Report a bug</source> - <translation>Сообщить об ошибке</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512" /> - <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> - <translation><b>Сообщить об ошибке...</b><p>Открытие диалога для сообщения об ошибке.</p></translation> + <source>Request Feature</source> + <translation>Запросить функционал</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2487" /> + <source>Request &Feature...</source> + <translation>Запросить &функционал...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2489" /> + <source>Send a feature request</source> + <translation>Послать запрос</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2491" /> + <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> + <translation><b>Послать запрос...</b><p>Отображение диалога создания запроса.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606" /> + <location filename="../UI/UserInterface.py" line="3583" /> + <location filename="../UI/UserInterface.py" line="2501" /> + <source>Unittest</source> + <translation>Юниттест</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2503" /> + <source>&Unittest...</source> + <translation>&Юниттест...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2505" /> + <source>Start unittest dialog</source> + <translation>Открыть диалог юниттеста</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506" /> + <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <translation><b>Юниттест</b> +<p>Выполнение тестов. Диалог даёт возможность выбрать и выполнить комплект юниттестов.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2515" /> + <source>Unittest Restart</source> + <translation>Перезапуск юниттеста</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2517" /> + <source>&Restart Unittest...</source> + <translation>&Перезапустить юниттест...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2519" /> + <source>Restart last unittest</source> + <translation>Перезапустить последний юниттест</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2520" /> - <source>Request Feature</source> - <translation>Запросить функционал</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2521" /> - <source>Request &Feature...</source> - <translation>Запросить &функционал...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2523" /> - <source>Send a feature request</source> - <translation>Послать запрос</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2525" /> - <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> - <translation><b>Послать запрос...</b><p>Отображение диалога создания запроса.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3643" /> - <location filename="../UI/UserInterface.py" line="3620" /> - <location filename="../UI/UserInterface.py" line="2535" /> - <source>Unittest</source> - <translation>Юниттест</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2537" /> - <source>&Unittest...</source> - <translation>&Юниттест...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2539" /> - <source>Start unittest dialog</source> - <translation>Открыть диалог юниттеста</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2540" /> - <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> - <translation><b>Юниттест</b> -<p>Выполнение тестов. Диалог даёт возможность выбрать и выполнить комплект юниттестов.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2549" /> - <source>Unittest Restart</source> - <translation>Перезапуск юниттеста</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2551" /> - <source>&Restart Unittest...</source> - <translation>&Перезапустить юниттест...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2553" /> - <source>Restart last unittest</source> - <translation>Перезапустить последний юниттест</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2554" /> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>Перезапустить юниттест</b> <p>Перезапустить последний выполненный юниттест.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2563" /> + <location filename="../UI/UserInterface.py" line="2529" /> <source>Unittest Rerun Failed</source> <translation>Неудачный перезапуск юниттеста</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2565" /> + <location filename="../UI/UserInterface.py" line="2531" /> <source>Rerun Failed Tests...</source> <translation>Повторить неудачные тесты...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2567" /> + <location filename="../UI/UserInterface.py" line="2533" /> <source>Rerun failed tests of the last run</source> <translation>Повторить неудачные тесты последнего запуска</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2569" /> + <location filename="../UI/UserInterface.py" line="2535" /> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation><b>Повторить неудачные тесты</b><p>Перезапустить все тесты, провалившиеся при последней попытке.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2579" /> + <location filename="../UI/UserInterface.py" line="2545" /> <source>Unittest Script</source> <translation>Юниттест на сценарии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2581" /> + <location filename="../UI/UserInterface.py" line="2547" /> <source>Unittest &Script...</source> <translation>Юниттест на &сценарии...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2583" /> + <location filename="../UI/UserInterface.py" line="2549" /> <source>Run unittest with current script</source> <translation>Выполнить юниттест на текущем сценарии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2585" /> + <location filename="../UI/UserInterface.py" line="2551" /> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Юниттест на сценарии</b><p>Выполнить юниттест на с текущем сценарии.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2594" /> + <location filename="../UI/UserInterface.py" line="2560" /> <source>Unittest Project</source> <translation>Юниттест на проекте</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596" /> + <location filename="../UI/UserInterface.py" line="2562" /> <source>Unittest &Project...</source> <translation>Юниттест на &проекте...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2598" /> + <location filename="../UI/UserInterface.py" line="2564" /> <source>Run unittest with current project</source> <translation>Выполнить юниттест на текущем проекте</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600" /> + <location filename="../UI/UserInterface.py" line="2566" /> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Юниттест на проекте</b><p>Выполнить юниттест на текущем проекте.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2621" /> + <location filename="../UI/UserInterface.py" line="2587" /> <source>Qt-Designer</source> <translation>Qt-Designer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2623" /> + <location filename="../UI/UserInterface.py" line="2589" /> <source>Qt-&Designer...</source> <translation>Qt-&Designer...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2625" /> + <location filename="../UI/UserInterface.py" line="2591" /> <source>Start Qt-Designer</source> <translation>Запуск Qt-Designer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2626" /> + <location filename="../UI/UserInterface.py" line="2592" /> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation><b>Qt-Designer</b><p>Запуск Qt-Designer.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2613" /> + <source>Qt-Linguist</source> + <translation>Qt-Linguist</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2615" /> + <source>Qt-&Linguist...</source> + <translation>Qt-&Linguist...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2617" /> + <source>Start Qt-Linguist</source> + <translation>Запуск Qt-Linguist</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2618" /> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation><b>Qt-Linguist</b><p>Запуск Qt-Linguist.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2628" /> + <source>UI Previewer</source> + <translation>Предпросмотр UI</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2630" /> + <source>&UI Previewer...</source> + <translation>Предпросмотр &UI...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2632" /> + <source>Start the UI Previewer</source> + <translation>Запуск предпросмотра UI (пользовательского интерфейса)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2633" /> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation><b>UI Previewer</b><p>Запустить the UI Previewer.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2641" /> + <source>Translations Previewer</source> + <translation>Предпросмотр переводов</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2643" /> + <source>&Translations Previewer...</source> + <translation>&Предпросмотр переводов...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2645" /> + <source>Start the Translations Previewer</source> + <translation>Запустить предпросмотр переводов</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2647" /> - <source>Qt-Linguist</source> - <translation>Qt-Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2649" /> - <source>Qt-&Linguist...</source> - <translation>Qt-&Linguist...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2651" /> - <source>Start Qt-Linguist</source> - <translation>Запуск Qt-Linguist</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2652" /> - <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> - <translation><b>Qt-Linguist</b><p>Запуск Qt-Linguist.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2662" /> - <source>UI Previewer</source> - <translation>Предпросмотр UI</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2664" /> - <source>&UI Previewer...</source> - <translation>Предпросмотр &UI...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2666" /> - <source>Start the UI Previewer</source> - <translation>Запуск предпросмотра UI (пользовательского интерфейса)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2667" /> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation><b>UI Previewer</b><p>Запустить the UI Previewer.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2675" /> - <source>Translations Previewer</source> - <translation>Предпросмотр переводов</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2677" /> - <source>&Translations Previewer...</source> - <translation>&Предпросмотр переводов...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2679" /> - <source>Start the Translations Previewer</source> - <translation>Запустить предпросмотр переводов</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2681" /> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Предпросмотр переводов</b><p>Запустить предпросмотр переводов.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2689" /> + <location filename="../UI/UserInterface.py" line="2655" /> <source>Compare Files</source> <translation>Сравнить файлы</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691" /> + <location filename="../UI/UserInterface.py" line="2657" /> <source>&Compare Files...</source> <translation>&Сравнить файлы...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2706" /> - <location filename="../UI/UserInterface.py" line="2693" /> + <location filename="../UI/UserInterface.py" line="2672" /> + <location filename="../UI/UserInterface.py" line="2659" /> <source>Compare two files</source> <translation>Сравнить два файла</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2694" /> + <location filename="../UI/UserInterface.py" line="2660" /> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Сравнение файлов</b> <p>Открытие диалога сравнения двух файлов.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2702" /> + <location filename="../UI/UserInterface.py" line="2668" /> <source>Compare Files side by side</source> <translation>Сравнение файлов построчно</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2704" /> + <location filename="../UI/UserInterface.py" line="2670" /> <source>Compare &Files side by side...</source> <translation>Сравнить &файлы построчно...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2707" /> + <location filename="../UI/UserInterface.py" line="2673" /> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Сравнить файлы построчно (side by side)</b> <p>Открыть диалог, в котором показаны различия между файлами, в две колонки.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2716" /> + <location filename="../UI/UserInterface.py" line="2682" /> <source>SQL Browser</source> <translation>SQL браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2718" /> + <location filename="../UI/UserInterface.py" line="2684" /> <source>SQL &Browser...</source> <translation>&SQL браузер...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2720" /> + <location filename="../UI/UserInterface.py" line="2686" /> <source>Browse a SQL database</source> <translation>Просмотреть SQL базу данных</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2721" /> + <location filename="../UI/UserInterface.py" line="2687" /> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL браузер</b><p>Просмотреть SQL базу данных.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2733" /> - <location filename="../UI/UserInterface.py" line="2729" /> + <location filename="../UI/UserInterface.py" line="2699" /> + <location filename="../UI/UserInterface.py" line="2695" /> <source>Mini Editor</source> <translation>Миниредактор</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2731" /> + <location filename="../UI/UserInterface.py" line="2697" /> <source>Mini &Editor...</source> <translation>Мини&редактор...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2734" /> + <location filename="../UI/UserInterface.py" line="2700" /> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Миниредактор</b><p>Открывает диалог в упрощённым редакторе.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2742" /> + <location filename="../UI/UserInterface.py" line="2708" /> <source>Hex Editor</source> <translation>Hex-редактор</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2744" /> + <location filename="../UI/UserInterface.py" line="2710" /> <source>&Hex Editor...</source> <translation>&Hex-редактор...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2746" /> + <location filename="../UI/UserInterface.py" line="2712" /> <source>Start the eric Hex Editor</source> <translation>Запуск eric Hex-редактора</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2748" /> + <location filename="../UI/UserInterface.py" line="2714" /> <source><b>Hex Editor</b><p>Starts the eric Hex Editor for viewing or editing binary files.</p></source> <translation><b>Hex-редактор</b><p>Запускает eric Hex-редактор для просмотра или редактирования двоичного файла.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2723" /> + <source>eric Web Browser</source> + <translation>Eric web-браузер</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2725" /> + <source>eric &Web Browser...</source> + <translation>Eric &web-браузер...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2727" /> + <source>Start the eric Web Browser</source> + <translation>Запустить eric web-браузер</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2729" /> + <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> + <translation><b>Eric web-браузер</b><p>Просмотр интернета используя web-браузер, встроенный в eric.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2737" /> + <source>Icon Editor</source> + <translation>Редактор иконок</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2739" /> + <source>&Icon Editor...</source> + <translation>Редактор &иконок...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2741" /> + <source>Start the eric Icon Editor</source> + <translation>Запустить eric редактор иконок</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2743" /> + <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> + <translation><b>Редактор иконок</b><p>Запустить eric редактор иконок.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2751" /> + <source>Snapshot</source> + <translation>Снимки</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2753" /> + <source>&Snapshot...</source> + <translation>&Снимки...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2755" /> + <source>Take snapshots of a screen region</source> + <translation>Сделать снимок области экрана</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757" /> - <source>eric Web Browser</source> - <translation>Eric web-браузер</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2759" /> - <source>eric &Web Browser...</source> - <translation>Eric &web-браузер...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2761" /> - <source>Start the eric Web Browser</source> - <translation>Запустить eric web-браузер</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2763" /> - <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> - <translation><b>Eric web-браузер</b><p>Просмотр интернета используя web-браузер, встроенный в eric.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2771" /> - <source>Icon Editor</source> - <translation>Редактор иконок</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2773" /> - <source>&Icon Editor...</source> - <translation>Редактор &иконок...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2775" /> - <source>Start the eric Icon Editor</source> - <translation>Запустить eric редактор иконок</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2777" /> - <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> - <translation><b>Редактор иконок</b><p>Запустить eric редактор иконок.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2785" /> - <source>Snapshot</source> - <translation>Снимки</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2787" /> - <source>&Snapshot...</source> - <translation>&Снимки...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2789" /> - <source>Take snapshots of a screen region</source> - <translation>Сделать снимок области экрана</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2791" /> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation><b>Снимки</b><p>Сделать снимок области экрана.</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2766" /> + <source>Preferences</source> + <translation>Предпочтения</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768" /> + <source>&Preferences...</source> + <translation>&Предпочтения...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2770" /> + <source>Set the prefered configuration</source> + <translation>Установите предпочтительную конфигурацию</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2772" /> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation><b>Предпочтения</b> +<p>Установка элементов конфигурации приложения согласно вашим предпочтениям.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782" /> + <source>Export Preferences</source> + <translation>Экспорт предпочтений</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2784" /> + <source>E&xport Preferences...</source> + <translation>&Экспорт предпочтений...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2786" /> + <source>Export the current configuration</source> + <translation>Экспорт текущих настроек</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2788" /> + <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <translation><b>Экспорт предпочтений</b><p>Экспорт текущих предпочтений в файл.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2796" /> + <source>Import Preferences</source> + <translation>Импорт предпочтений</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2798" /> + <source>I&mport Preferences...</source> + <translation>&Импорт предпочтений...</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2800" /> - <source>Preferences</source> - <translation>Предпочтения</translation> + <source>Import a previously exported configuration</source> + <translation>Импорт сохранённых ранее настроек</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2802" /> - <source>&Preferences...</source> - <translation>&Предпочтения...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2804" /> - <source>Set the prefered configuration</source> - <translation>Установите предпочтительную конфигурацию</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2806" /> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> - <translation><b>Предпочтения</b> -<p>Установка элементов конфигурации приложения согласно вашим предпочтениям.</p></translation> + <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> + <translation><b>Импорт предпочтений</b><p>Импорт сохранённой ранее конфигурации.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2810" /> + <source>Export Theme</source> + <translation>Экспорт темы</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2812" /> + <source>Export Theme...</source> + <translation>Экспорт темы...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2814" /> + <source>Export the current theme</source> + <translation>Экспорт текущей темы</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2816" /> - <source>Export Preferences</source> - <translation>Экспорт предпочтений</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2818" /> - <source>E&xport Preferences...</source> - <translation>&Экспорт предпочтений...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2820" /> - <source>Export the current configuration</source> - <translation>Экспорт текущих настроек</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2822" /> - <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> - <translation><b>Экспорт предпочтений</b><p>Экспорт текущих предпочтений в файл.</p></translation> + <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> + <translation><b>Экспорт темы</b><p>Экспорт текущей темы в файл.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2824" /> + <source>Import Theme</source> + <translation>Импорт темы</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2826" /> + <source>Import Theme...</source> + <translation>Импорт темы...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2828" /> + <source>Import a previously exported theme</source> + <translation>Импорт ранее экспортированной темы</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2830" /> - <source>Import Preferences</source> - <translation>Импорт предпочтений</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2832" /> - <source>I&mport Preferences...</source> - <translation>&Импорт предпочтений...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2834" /> - <source>Import a previously exported configuration</source> - <translation>Импорт сохранённых ранее настроек</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2836" /> - <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> - <translation><b>Импорт предпочтений</b><p>Импорт сохранённой ранее конфигурации.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2844" /> - <source>Export Theme</source> - <translation>Экспорт темы</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2846" /> - <source>Export Theme...</source> - <translation>Экспорт темы...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2848" /> - <source>Export the current theme</source> - <translation>Экспорт текущей темы</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2850" /> - <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> - <translation><b>Экспорт темы</b><p>Экспорт текущей темы в файл.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2858" /> - <source>Import Theme</source> - <translation>Импорт темы</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2860" /> - <source>Import Theme...</source> - <translation>Импорт темы...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2862" /> - <source>Import a previously exported theme</source> - <translation>Импорт ранее экспортированной темы</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2864" /> <source><b>Import Theme</b><p>Import a previously exported theme.</p></source> <translation><b>Импорт темы</b><p>Импорт ранее экспортированной темы.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2872" /> + <location filename="../UI/UserInterface.py" line="2838" /> <source>Reload APIs</source> <translation>Перезагрузить API</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2839" /> + <source>Reload &APIs</source> + <translation>Перезагрузить &API</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2841" /> + <source>Reload the API information</source> + <translation>Перезагрузить информацию об API</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2843" /> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation><b>Перезагрузить API</b><p>Перезагрузить информацию об API.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2855" /> + <location filename="../UI/UserInterface.py" line="2851" /> + <source>Show external tools</source> + <translation>Показать внешние инструменты</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2853" /> + <source>Show external &tools</source> + <translation>&Внешние инструменты</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857" /> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <translation><b>Показать внешние инструменты</b><p>Открытие диалога отображения пути и версий внешних инструментов, используемых eric.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2867" /> + <source>View Profiles</source> + <translation>Профили</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2869" /> + <source>&View Profiles...</source> + <translation>&Профили...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2871" /> + <source>Configure view profiles</source> + <translation>Конфигурация профилей</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2873" /> - <source>Reload &APIs</source> - <translation>Перезагрузить &API</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2875" /> - <source>Reload the API information</source> - <translation>Перезагрузить информацию об API</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2877" /> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> - <translation><b>Перезагрузить API</b><p>Перезагрузить информацию об API.</p></translation> + <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <translation><b>Профили</b><p>Конфигурация профилей. С помощью этого диалога вы можете устанавливать видимость разных окон для заданных профилей.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2884" /> + <source>Toolbars</source> + <translation>Панели инструментов</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2886" /> + <source>Tool&bars...</source> + <translation>Панели &инструментов...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2888" /> + <source>Configure toolbars</source> + <translation>Настройка панелей инструментов</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2889" /> - <location filename="../UI/UserInterface.py" line="2885" /> - <source>Show external tools</source> - <translation>Показать внешние инструменты</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887" /> - <source>Show external &tools</source> - <translation>&Внешние инструменты</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2891" /> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> - <translation><b>Показать внешние инструменты</b><p>Открытие диалога отображения пути и версий внешних инструментов, используемых eric.</p></translation> + <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> + <translation><b>Панели инструментов</b><p>Настроить панели инструментов. В этом диалоге Вы можете изменить имеющиеся панели инструментов, а так же создать новые.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2899" /> + <source>Keyboard Shortcuts</source> + <translation>Горячие клавиши</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2901" /> - <source>View Profiles</source> - <translation>Профили</translation> + <source>Keyboard &Shortcuts...</source> + <translation>Горячие &клавиши...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2903" /> - <source>&View Profiles...</source> - <translation>&Профили...</translation> + <source>Set the keyboard shortcuts</source> + <translation>Определение горячих клавиш</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2905" /> - <source>Configure view profiles</source> - <translation>Конфигурация профилей</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2907" /> - <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> - <translation><b>Профили</b><p>Конфигурация профилей. С помощью этого диалога вы можете устанавливать видимость разных окон для заданных профилей.</p></translation> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation><b>Горячие клавиши</b><p>Определите горячие клавиши приложения согласно вашим предпочтениям.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756" /> + <location filename="../UI/UserInterface.py" line="6738" /> + <location filename="../UI/UserInterface.py" line="2914" /> + <source>Export Keyboard Shortcuts</source> + <translation>Экспорт горячих клавиш</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2916" /> + <source>&Export Keyboard Shortcuts...</source> + <translation>&Экспорт горячих клавиш...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2918" /> - <source>Toolbars</source> - <translation>Панели инструментов</translation> + <source>Export the keyboard shortcuts</source> + <translation>Экспортировать горячие клавиши</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2920" /> - <source>Tool&bars...</source> - <translation>Панели &инструментов...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2922" /> - <source>Configure toolbars</source> - <translation>Настройка панелей инструментов</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2923" /> - <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> - <translation><b>Панели инструментов</b><p>Настроить панели инструментов. В этом диалоге Вы можете изменить имеющиеся панели инструментов, а так же создать новые.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2933" /> - <source>Keyboard Shortcuts</source> - <translation>Горячие клавиши</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2935" /> - <source>Keyboard &Shortcuts...</source> - <translation>Горячие &клавиши...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2937" /> - <source>Set the keyboard shortcuts</source> - <translation>Определение горячих клавиш</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2939" /> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation><b>Горячие клавиши</b><p>Определите горячие клавиши приложения согласно вашим предпочтениям.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6698" /> - <location filename="../UI/UserInterface.py" line="6680" /> - <location filename="../UI/UserInterface.py" line="2948" /> - <source>Export Keyboard Shortcuts</source> - <translation>Экспорт горячих клавиш</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2950" /> - <source>&Export Keyboard Shortcuts...</source> - <translation>&Экспорт горячих клавиш...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2952" /> - <source>Export the keyboard shortcuts</source> - <translation>Экспортировать горячие клавиши</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2954" /> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Экспорт горячих клавиш</b> <p>Экспортировать горячие клавиши приложения.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6715" /> - <location filename="../UI/UserInterface.py" line="2962" /> + <location filename="../UI/UserInterface.py" line="6773" /> + <location filename="../UI/UserInterface.py" line="2928" /> <source>Import Keyboard Shortcuts</source> <translation>Импорт горячих клавиш</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2964" /> + <location filename="../UI/UserInterface.py" line="2930" /> <source>&Import Keyboard Shortcuts...</source> <translation>&Импорт горячих клавиш...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2966" /> + <location filename="../UI/UserInterface.py" line="2932" /> <source>Import the keyboard shortcuts</source> <translation>Импортировать горячие клавиши</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2968" /> + <location filename="../UI/UserInterface.py" line="2934" /> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Импорт горячих клавиш</b> <p>Импортировать горячие клавиши приложения.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2977" /> + <location filename="../UI/UserInterface.py" line="2943" /> <source>Manage SSL Certificates</source> <translation>Менеджер SSL сертификатов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2979" /> + <location filename="../UI/UserInterface.py" line="2945" /> <source>Manage SSL Certificates...</source> <translation>Менеджер SSL сертификатов...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2947" /> + <source>Manage the saved SSL certificates</source> + <translation>Управление сохранёнными SSL сертификатами</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2949" /> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation><b>Менеджер SSL сертификатов...</b><p>Менеджер сохранённых SSL сертификатов.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2959" /> + <source>Edit Message Filters</source> + <translation>Редактировать фильтры сообщений</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2961" /> + <source>Edit Message Filters...</source> + <translation>Редактировать фильтры сообщений...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2963" /> + <source>Edit the message filters used to suppress unwanted messages</source> + <translation>Редактировать фильтры нежелательных сообщений</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2965" /> + <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> + <translation><b>Редактировать фильтры сообщений</b><p>Редактировать фильтры нежелательных сообщений об ошибках.</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2981" /> - <source>Manage the saved SSL certificates</source> - <translation>Управление сохранёнными SSL сертификатами</translation> + <location filename="../UI/UserInterface.py" line="2978" /> + <location filename="../UI/UserInterface.py" line="2976" /> + <source>Clear private data</source> + <translation>Очистить приватные данные</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2983" /> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation><b>Менеджер SSL сертификатов...</b><p>Менеджер сохранённых SSL сертификатов.</p></translation> - </message> - <message> + <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> + <translation><b>Очистить приватные данные</b><p>Очистка приватных данных, таких как различные списки недавно открытых файлов, проектов или мультипроектов.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2994" /> <location filename="../UI/UserInterface.py" line="2993" /> - <source>Edit Message Filters</source> - <translation>Редактировать фильтры сообщений</translation> + <source>Activate current editor</source> + <translation>Активировать текущий редактор</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2995" /> - <source>Edit Message Filters...</source> - <translation>Редактировать фильтры сообщений...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2997" /> - <source>Edit the message filters used to suppress unwanted messages</source> - <translation>Редактировать фильтры нежелательных сообщений</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2999" /> - <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> - <translation><b>Редактировать фильтры сообщений</b><p>Редактировать фильтры нежелательных сообщений об ошибках.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3015" /> - <location filename="../UI/UserInterface.py" line="3012" /> - <location filename="../UI/UserInterface.py" line="3010" /> - <source>Clear private data</source> - <translation>Очистить приватные данные</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3017" /> - <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> - <translation><b>Очистить приватные данные</b><p>Очистка приватных данных, таких как различные списки недавно открытых файлов, проектов или мультипроектов.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3028" /> - <location filename="../UI/UserInterface.py" line="3027" /> - <source>Activate current editor</source> - <translation>Активировать текущий редактор</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3029" /> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3038" /> - <location filename="../UI/UserInterface.py" line="3037" /> + <location filename="../UI/UserInterface.py" line="3004" /> + <location filename="../UI/UserInterface.py" line="3003" /> <source>Show next</source> <translation>Показать следующую</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3039" /> + <location filename="../UI/UserInterface.py" line="3005" /> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="3013" /> + <location filename="../UI/UserInterface.py" line="3012" /> + <source>Show previous</source> + <translation>Показать предыдущую</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3014" /> + <source>Shift+Ctrl+Alt+Tab</source> + <translation>Shift+Ctrl+Alt+Tab</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3022" /> + <location filename="../UI/UserInterface.py" line="3021" /> + <source>Switch between tabs</source> + <translation>Переключение между вкладками</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3023" /> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3030" /> + <source>Plugin Infos</source> + <translation>Информация о плагинах</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3032" /> + <source>&Plugin Infos...</source> + <translation>Ин&формация о плагинах...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3033" /> + <source>Show Plugin Infos</source> + <translation>Отображение информации о плагинах</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3034" /> + <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="3047" /> - <location filename="../UI/UserInterface.py" line="3046" /> - <source>Show previous</source> - <translation>Показать предыдущую</translation> + <location filename="../UI/UserInterface.py" line="3043" /> + <source>Install Plugins</source> + <translation>Установить плагины</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3045" /> + <source>&Install Plugins...</source> + <translation>&Установить плагины...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3048" /> - <source>Shift+Ctrl+Alt+Tab</source> - <translation>Shift+Ctrl+Alt+Tab</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3056" /> - <location filename="../UI/UserInterface.py" line="3055" /> - <source>Switch between tabs</source> - <translation>Переключение между вкладками</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3057" /> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3064" /> - <source>Plugin Infos</source> - <translation>Информация о плагинах</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3066" /> - <source>&Plugin Infos...</source> - <translation>Ин&формация о плагинах...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3067" /> - <source>Show Plugin Infos</source> - <translation>Отображение информации о плагинах</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3068" /> - <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="3081" /> - <location filename="../UI/UserInterface.py" line="3077" /> - <source>Install Plugins</source> - <translation>Установить плагины</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3079" /> - <source>&Install Plugins...</source> - <translation>&Установить плагины...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3082" /> <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="3094" /> - <location filename="../UI/UserInterface.py" line="3090" /> + <location filename="../UI/UserInterface.py" line="3060" /> + <location filename="../UI/UserInterface.py" line="3056" /> <source>Uninstall Plugin</source> <translation>Удалить плагин</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3092" /> + <location filename="../UI/UserInterface.py" line="3058" /> <source>&Uninstall Plugin...</source> <translation>Уда&лить плагин...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3095" /> + <location filename="../UI/UserInterface.py" line="3061" /> <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="3105" /> + <location filename="../UI/UserInterface.py" line="3071" /> <source>Plugin &Repository...</source> <translation>&Репозиторий плагинов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3107" /> + <location filename="../UI/UserInterface.py" line="3073" /> <source>Show Plugins available for download</source> <translation>Показать плагины, доступные для загрузки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3109" /> + <location filename="../UI/UserInterface.py" line="3075" /> <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="3101" /> + <location filename="../UI/UserInterface.py" line="3100" /> + <source>Qt5 Documentation</source> + <translation>Документация Qt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3103" /> + <source>Open Qt5 Documentation</source> + <translation>Открыть документацию Qt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3104" /> + <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation><b>Документация Qt5</b><p>Отображение документации Qt5. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3116" /> + <location filename="../UI/UserInterface.py" line="3115" /> + <source>Qt6 Documentation</source> + <translation>Документация Qt6</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3118" /> + <source>Open Qt6 Documentation</source> + <translation>Открыть документацию Qt6</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3119" /> + <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation><b>Документация Qt6</b><p>Отображение документации Qt6. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3131" /> + <location filename="../UI/UserInterface.py" line="3130" /> + <source>PyQt5 Documentation</source> + <translation>Документация PyQt5</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3133" /> + <source>Open PyQt5 Documentation</source> + <translation>Открыть документацию PyQt5</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="3135" /> - <location filename="../UI/UserInterface.py" line="3134" /> - <source>Qt5 Documentation</source> - <translation>Документация Qt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3137" /> - <source>Open Qt5 Documentation</source> - <translation>Открыть документацию Qt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3138" /> - <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation><b>Документация Qt5</b><p>Отображение документации Qt5. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> + <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation><b>Докуметация PyQt5</b><p>Отображение документации PyQt5. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3148" /> + <location filename="../UI/UserInterface.py" line="3147" /> + <source>PyQt6 Documentation</source> + <translation>Документация PyQt6</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3150" /> - <location filename="../UI/UserInterface.py" line="3149" /> - <source>Qt6 Documentation</source> - <translation>Документация Qt6</translation> + <source>Open PyQt6 Documentation</source> + <translation>Открыть документацию PyQt6</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3152" /> - <source>Open Qt6 Documentation</source> - <translation>Открыть документацию Qt6</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3153" /> - <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation><b>Документация Qt6</b><p>Отображение документации Qt6. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3165" /> - <location filename="../UI/UserInterface.py" line="3164" /> - <source>PyQt5 Documentation</source> - <translation>Документация PyQt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3167" /> - <source>Open PyQt5 Documentation</source> - <translation>Открыть документацию PyQt5</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3169" /> - <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation><b>Докуметация PyQt5</b><p>Отображение документации PyQt5. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3182" /> - <location filename="../UI/UserInterface.py" line="3181" /> - <source>PyQt6 Documentation</source> - <translation>Документация PyQt6</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3184" /> - <source>Open PyQt6 Documentation</source> - <translation>Открыть документацию PyQt6</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3186" /> <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Докуметация PyQt6</b><p>Отображение документации PyQt6. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3204" /> - <location filename="../UI/UserInterface.py" line="3203" /> + <location filename="../UI/UserInterface.py" line="3170" /> + <location filename="../UI/UserInterface.py" line="3169" /> <source>Python 3 Documentation</source> <translation>Документация Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3206" /> + <location filename="../UI/UserInterface.py" line="3172" /> <source>Open Python 3 Documentation</source> <translation>Открыть документацию Python 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3208" /> + <location filename="../UI/UserInterface.py" line="3174" /> <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="3226" /> - <location filename="../UI/UserInterface.py" line="3225" /> + <location filename="../UI/UserInterface.py" line="3192" /> + <location filename="../UI/UserInterface.py" line="3191" /> <source>eric API Documentation</source> <translation>Документация API Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3228" /> + <location filename="../UI/UserInterface.py" line="3194" /> <source>Open eric API Documentation</source> <translation>Открыть документацию API Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3230" /> + <location filename="../UI/UserInterface.py" line="3196" /> <source><b>eric API Documentation</b><p>Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.</p></source> <translation><b>Документация API eric</b><p>Показать документацию API eric. Местонахождение документации - каталог Documentation/Source, расположенный в директории инсталляции eric.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3247" /> - <location filename="../UI/UserInterface.py" line="3246" /> + <location filename="../UI/UserInterface.py" line="3213" /> + <location filename="../UI/UserInterface.py" line="3212" /> <source>PySide2 Documentation</source> <translation>Документация PySide2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3249" /> + <location filename="../UI/UserInterface.py" line="3215" /> <source>Open PySide2 Documentation</source> <translation>Открыть документацию PySide2</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3251" /> + <location filename="../UI/UserInterface.py" line="3217" /> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация PySide2</b><p>Отображение документации PySide2. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3267" /> - <location filename="../UI/UserInterface.py" line="3266" /> + <location filename="../UI/UserInterface.py" line="3233" /> + <location filename="../UI/UserInterface.py" line="3232" /> <source>PySide6 Documentation</source> <translation>Документация PySide6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3269" /> + <location filename="../UI/UserInterface.py" line="3235" /> <source>Open PySide6 Documentation</source> <translation>Открыть документацию PySide6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3271" /> + <location filename="../UI/UserInterface.py" line="3237" /> <source><b>PySide6 Documentation</b><p>Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация PySide6</b><p>Отображение документации PySide6. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3373" /> + <location filename="../UI/UserInterface.py" line="3339" /> <source>E&xtras</source> <translation>&Дополнительно</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3383" /> + <location filename="../UI/UserInterface.py" line="3349" /> <source>Wi&zards</source> <translation>&Мастера</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3402" /> + <location filename="../UI/UserInterface.py" line="3368" /> <source>P&lugins</source> <translation>Пла&гины</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3412" /> + <location filename="../UI/UserInterface.py" line="3378" /> <source>Configure...</source> <translation>Настроить...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3421" /> + <location filename="../UI/UserInterface.py" line="3387" /> <source>&Unittest</source> <translation>&Юниттест</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3438" /> + <location filename="../UI/UserInterface.py" line="3404" /> <source>Select Tool Group</source> <translation>Выберите группу инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3449" /> + <location filename="../UI/UserInterface.py" line="3415" /> <source>Se&ttings</source> <translation>&Настройки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482" /> + <location filename="../UI/UserInterface.py" line="3448" /> <source>&Window</source> <translation>&Окно</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3491" /> + <location filename="../UI/UserInterface.py" line="3457" /> <source>&Windows</source> <translation>&Окна</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3496" /> + <location filename="../UI/UserInterface.py" line="3462" /> <source>Central Park</source> <translation>Центральное окно</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3500" /> + <location filename="../UI/UserInterface.py" line="3466" /> <source>Left Side</source> <translation>Левая панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3517" /> + <location filename="../UI/UserInterface.py" line="3483" /> <source>Right Side</source> <translation>Правая панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3541" /> + <location filename="../UI/UserInterface.py" line="3507" /> <source>Bottom Side</source> <translation>Нижняя панель</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3549" /> + <location filename="../UI/UserInterface.py" line="3515" /> <source>Plug-ins</source> <translation>Плагины</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3556" /> + <location filename="../UI/UserInterface.py" line="3522" /> <source>&Toolbars</source> <translation>&Панели инструментов</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3569" /> + <location filename="../UI/UserInterface.py" line="3535" /> <source>&Help</source> <translation>&Справка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3642" /> - <location filename="../UI/UserInterface.py" line="3619" /> + <location filename="../UI/UserInterface.py" line="3605" /> + <location filename="../UI/UserInterface.py" line="3582" /> <source>Tools</source> <translation>Инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3644" /> - <location filename="../UI/UserInterface.py" line="3623" /> + <location filename="../UI/UserInterface.py" line="3607" /> + <location filename="../UI/UserInterface.py" line="3586" /> <source>Settings</source> <translation>Настройки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5541" /> - <location filename="../UI/UserInterface.py" line="3645" /> - <location filename="../UI/UserInterface.py" line="3624" /> + <location filename="../UI/UserInterface.py" line="5600" /> + <location filename="../UI/UserInterface.py" line="3608" /> + <location filename="../UI/UserInterface.py" line="3587" /> <source>Help</source> <translation>Справка</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3646" /> - <location filename="../UI/UserInterface.py" line="3625" /> + <location filename="../UI/UserInterface.py" line="3609" /> + <location filename="../UI/UserInterface.py" line="3588" /> <source>Profiles</source> <translation>Профили</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3647" /> - <location filename="../UI/UserInterface.py" line="3626" /> + <location filename="../UI/UserInterface.py" line="3610" /> + <location filename="../UI/UserInterface.py" line="3589" /> <source>Plugins</source> <translation>Плагины</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811" /> + <location filename="../UI/UserInterface.py" line="3774" /> <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="3818" /> + <location filename="../UI/UserInterface.py" line="3781" /> <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="3825" /> + <location filename="../UI/UserInterface.py" line="3788" /> <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="3832" /> + <location filename="../UI/UserInterface.py" line="3795" /> <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="3839" /> + <location filename="../UI/UserInterface.py" line="3802" /> <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="3846" /> + <location filename="../UI/UserInterface.py" line="3809" /> <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="3857" /> + <location filename="../UI/UserInterface.py" line="3820" /> <source><p>This part of the status bar allows zooming the current editor or shell.</p></source> <translation><p>В этой части строки состояния разрешено масштабирование редактора или оболочки.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3922" /> - <location filename="../UI/UserInterface.py" line="3882" /> + <location filename="../UI/UserInterface.py" line="3885" /> + <location filename="../UI/UserInterface.py" line="3845" /> <source>External Tools/{0}</source> <translation>Внешние инструменты/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4028" /> + <location filename="../UI/UserInterface.py" line="3991" /> <source><h2>Version Numbers</h2><table></source> <translation><h2>Номера версий</h2><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4082" /> + <location filename="../UI/UserInterface.py" line="4045" /> <source>Desktop</source> <translation>Рабочий стол</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4085" /> + <location filename="../UI/UserInterface.py" line="4048" /> <source>Session Type</source> <translation>Тип сессии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7778" /> - <location filename="../UI/UserInterface.py" line="4087" /> + <location filename="../UI/UserInterface.py" line="4050" /> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4121" /> + <location filename="../UI/UserInterface.py" line="4084" /> <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="4432" /> + <location filename="../UI/UserInterface.py" line="4395" /> <source>Restart application</source> <translation>Перезапустить приложение</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4433" /> + <location filename="../UI/UserInterface.py" line="4396" /> <source>The application needs to be restarted. Do it now?</source> <translation>Необходимо перезапустить приложение. Сделать это сейчас?</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="4420" /> + <source>Upgrade PyQt</source> + <translation>Обновить PyQt</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4421" /> + <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation>Для обновления PyQt необходимо закрыть eric. Он будет перезапущен после завершения процесса обновления. Это может занять некоторое время. + +Выполнить обновление сейчас?</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="4467" /> + <location filename="../UI/UserInterface.py" line="4443" /> + <source>Upgrade Eric</source> + <translation>Обновить Eric</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4444" /> + <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation>Для обновления необходимо закрыть eric. Он будет перезапущен после завершения процесса обновления. Это может занять некоторое время. + +Выполнить обновление сейчас?</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4468" /> + <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time. + + Shall the upgrade be done now?</source> + <translation>Для обновления PyQt и eric необходимо закрыть eric. Он будет перезапущен после завершения процесса обновления. Это может занять некоторое время. + + Выполнить обновление сейчас?</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4526" /> <source>&Builtin Tools</source> <translation>&Встроенные инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4484" /> + <location filename="../UI/UserInterface.py" line="4543" /> <source>&Plugin Tools</source> <translation>Инструменты - &плагины</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4487" /> + <location filename="../UI/UserInterface.py" line="4546" /> <source>&User Tools</source> <translation>&Инструменты пользователя</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4513" /> + <location filename="../UI/UserInterface.py" line="4572" /> <source>Configure Tool Groups ...</source> <translation>Настройка группы инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517" /> + <location filename="../UI/UserInterface.py" line="4576" /> <source>Configure current Tool Group ...</source> <translation>Настроить текущую группу инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4558" /> - <location filename="../UI/UserInterface.py" line="4538" /> + <location filename="../UI/UserInterface.py" line="4617" /> + <location filename="../UI/UserInterface.py" line="4597" /> <source>No User Tools Configured</source> <translation>Инструменты пользователя не сконфигурированы</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4632" /> + <location filename="../UI/UserInterface.py" line="4691" /> <source>&Show all</source> <translation>Показать &всё</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4634" /> + <location filename="../UI/UserInterface.py" line="4693" /> <source>&Hide all</source> <translation>Ск&рыть всё</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5669" /> - <location filename="../UI/UserInterface.py" line="5659" /> - <location filename="../UI/UserInterface.py" line="5612" /> - <location filename="../UI/UserInterface.py" line="5603" /> - <location filename="../UI/UserInterface.py" line="5442" /> - <location filename="../UI/UserInterface.py" line="5433" /> - <location filename="../UI/UserInterface.py" line="5372" /> - <location filename="../UI/UserInterface.py" line="5363" /> + <location filename="../UI/UserInterface.py" line="5728" /> + <location filename="../UI/UserInterface.py" line="5718" /> + <location filename="../UI/UserInterface.py" line="5671" /> + <location filename="../UI/UserInterface.py" line="5662" /> + <location filename="../UI/UserInterface.py" line="5501" /> + <location filename="../UI/UserInterface.py" line="5492" /> + <location filename="../UI/UserInterface.py" line="5431" /> + <location filename="../UI/UserInterface.py" line="5422" /> <source>Problem</source> <translation>Проблема</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5670" /> - <location filename="../UI/UserInterface.py" line="5660" /> - <location filename="../UI/UserInterface.py" line="5613" /> - <location filename="../UI/UserInterface.py" line="5604" /> - <location filename="../UI/UserInterface.py" line="5443" /> - <location filename="../UI/UserInterface.py" line="5434" /> - <location filename="../UI/UserInterface.py" line="5373" /> - <location filename="../UI/UserInterface.py" line="5364" /> + <location filename="../UI/UserInterface.py" line="5729" /> + <location filename="../UI/UserInterface.py" line="5719" /> + <location filename="../UI/UserInterface.py" line="5672" /> + <location filename="../UI/UserInterface.py" line="5663" /> + <location filename="../UI/UserInterface.py" line="5502" /> + <location filename="../UI/UserInterface.py" line="5493" /> + <location filename="../UI/UserInterface.py" line="5432" /> + <location filename="../UI/UserInterface.py" line="5423" /> <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="5877" /> - <location filename="../UI/UserInterface.py" line="5790" /> - <location filename="../UI/UserInterface.py" line="5705" /> - <location filename="../UI/UserInterface.py" line="5682" /> - <location filename="../UI/UserInterface.py" line="5625" /> - <location filename="../UI/UserInterface.py" line="5575" /> - <location filename="../UI/UserInterface.py" line="5555" /> - <location filename="../UI/UserInterface.py" line="5517" /> - <location filename="../UI/UserInterface.py" line="5508" /> - <location filename="../UI/UserInterface.py" line="5473" /> - <location filename="../UI/UserInterface.py" line="5464" /> - <location filename="../UI/UserInterface.py" line="5403" /> - <location filename="../UI/UserInterface.py" line="5394" /> + <location filename="../UI/UserInterface.py" line="5936" /> + <location filename="../UI/UserInterface.py" line="5849" /> + <location filename="../UI/UserInterface.py" line="5764" /> + <location filename="../UI/UserInterface.py" line="5741" /> + <location filename="../UI/UserInterface.py" line="5684" /> + <location filename="../UI/UserInterface.py" line="5634" /> + <location filename="../UI/UserInterface.py" line="5614" /> + <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5567" /> + <location filename="../UI/UserInterface.py" line="5532" /> + <location filename="../UI/UserInterface.py" line="5523" /> + <location filename="../UI/UserInterface.py" line="5462" /> + <location filename="../UI/UserInterface.py" line="5453" /> <source>Process Generation Error</source> <translation>Ошибка при запуске процесса</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5395" /> + <location filename="../UI/UserInterface.py" line="5454" /> <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="5404" /> + <location filename="../UI/UserInterface.py" line="5463" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Не удается найти исполняемый файл Qt-Designer.<br>На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5465" /> + <location filename="../UI/UserInterface.py" line="5524" /> <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="5474" /> + <location filename="../UI/UserInterface.py" line="5533" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Не удается найти исполняемый файл Qt-Linguist.<br>На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5509" /> + <location filename="../UI/UserInterface.py" line="5568" /> <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="5518" /> + <location filename="../UI/UserInterface.py" line="5577" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Не удается найти исполняемый файл Qt-Assistant.<br>На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5542" /> + <location filename="../UI/UserInterface.py" line="5601" /> <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="5556" /> + <location filename="../UI/UserInterface.py" line="5615" /> <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="5576" /> + <location filename="../UI/UserInterface.py" line="5635" /> <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="5626" /> + <location filename="../UI/UserInterface.py" line="5685" /> <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="5683" /> + <location filename="../UI/UserInterface.py" line="5742" /> <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="5706" /> + <location filename="../UI/UserInterface.py" line="5765" /> <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="5791" /> + <location filename="../UI/UserInterface.py" line="5850" /> <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="5822" /> - <location filename="../UI/UserInterface.py" line="5813" /> + <location filename="../UI/UserInterface.py" line="5881" /> + <location filename="../UI/UserInterface.py" line="5872" /> <source>External Tools</source> <translation>Внешние инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5814" /> + <location filename="../UI/UserInterface.py" line="5873" /> <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="5823" /> + <location filename="../UI/UserInterface.py" line="5882" /> <source>No toolgroup entry '{0}' found.</source> <translation>Запись для группы инструментов '{0}' не найдена.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5859" /> + <location filename="../UI/UserInterface.py" line="5918" /> <source>Starting process '{0} {1}'. </source> <translation>Запускается процесс '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5878" /> + <location filename="../UI/UserInterface.py" line="5937" /> <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="5953" /> + <location filename="../UI/UserInterface.py" line="6012" /> <source>Process '{0}' has exited. </source> <translation>Процесс '{0}' завершен. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6225" /> - <location filename="../UI/UserInterface.py" line="6167" /> - <location filename="../UI/UserInterface.py" line="6126" /> - <location filename="../UI/UserInterface.py" line="6058" /> - <location filename="../UI/UserInterface.py" line="5996" /> + <location filename="../UI/UserInterface.py" line="6284" /> + <location filename="../UI/UserInterface.py" line="6226" /> + <location filename="../UI/UserInterface.py" line="6185" /> + <location filename="../UI/UserInterface.py" line="6117" /> + <location filename="../UI/UserInterface.py" line="6055" /> <source>Documentation Missing</source> <translation>Документация отсутствует</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6226" /> - <location filename="../UI/UserInterface.py" line="6168" /> - <location filename="../UI/UserInterface.py" line="6127" /> - <location filename="../UI/UserInterface.py" line="6059" /> - <location filename="../UI/UserInterface.py" line="5997" /> + <location filename="../UI/UserInterface.py" line="6285" /> + <location filename="../UI/UserInterface.py" line="6227" /> + <location filename="../UI/UserInterface.py" line="6186" /> + <location filename="../UI/UserInterface.py" line="6118" /> + <location filename="../UI/UserInterface.py" line="6056" /> <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="6208" /> - <location filename="../UI/UserInterface.py" line="6099" /> + <location filename="../UI/UserInterface.py" line="6267" /> + <location filename="../UI/UserInterface.py" line="6158" /> <source>Documentation</source> <translation>Документация</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6100" /> + <location filename="../UI/UserInterface.py" line="6159" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation><p>Стартовый каталог документации PyQt{0} не настроен.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6209" /> + <location filename="../UI/UserInterface.py" line="6268" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><p>Просмотр документации PySide{0} не настроен.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6387" /> - <location filename="../UI/UserInterface.py" line="6323" /> + <location filename="../UI/UserInterface.py" line="6446" /> + <location filename="../UI/UserInterface.py" line="6382" /> <source>Start Web Browser</source> <translation>Запуск web-браузера</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6324" /> + <location filename="../UI/UserInterface.py" line="6383" /> <source>The eric web browser could not be started.</source> <translation>Невозможно запустить eric web-браузер.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6388" /> + <location filename="../UI/UserInterface.py" line="6447" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation><p>Eric web-браузер не запущен.</p><p>Причина: {0}</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6430" /> + <location filename="../UI/UserInterface.py" line="6489" /> <source>Open Browser</source> <translation>Открыть браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6431" /> + <location filename="../UI/UserInterface.py" line="6490" /> <source>Could not start a web browser</source> <translation>Невозможно запустить web-браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6682" /> + <location filename="../UI/UserInterface.py" line="6740" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation>Файл горячих клавиш (*.ekj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6699" /> + <location filename="../UI/UserInterface.py" line="6757" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation><p>Файл горячих клавиш <b>{0}</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6717" /> + <location filename="../UI/UserInterface.py" line="6775" /> <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source> <translation>Файл горячих клавиш (*.ekj);;XML-файл горячих клавиш (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6909" /> + <location filename="../UI/UserInterface.py" line="6967" /> <source>Read Tasks</source> <translation>Прочитать задачи</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6910" /> + <location filename="../UI/UserInterface.py" line="6968" /> <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="6957" /> + <location filename="../UI/UserInterface.py" line="7015" /> <source>Read Session</source> <translation>Загрузить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6985" /> - <location filename="../UI/UserInterface.py" line="6958" /> + <location filename="../UI/UserInterface.py" line="7043" /> + <location filename="../UI/UserInterface.py" line="7016" /> <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="6984" /> + <location filename="../UI/UserInterface.py" line="7042" /> <source>Read session</source> <translation>Загрузить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7000" /> + <location filename="../UI/UserInterface.py" line="7058" /> <source>Save Session</source> <translation>Сохранить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7002" /> + <location filename="../UI/UserInterface.py" line="7060" /> <source>eric Session Files (*.esj)</source> <translation>Файлы сессий eric (*.esj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="7082" /> <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source> <translation>Файлы сессии eric (*.esj);;XML-файл сессии eric (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7072" /> + <location filename="../UI/UserInterface.py" line="7130" /> <source>Crash Session found!</source> <translation>Обнаружена crash-сессия!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7073" /> + <location filename="../UI/UserInterface.py" line="7131" /> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Найден файл crashed-сессии. Должна ли эта сессия быть восстановлена?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7374" /> + <location filename="../UI/UserInterface.py" line="7432" /> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7375" /> + <location filename="../UI/UserInterface.py" line="7433" /> <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="7552" /> - <source>&Cancel</source> - <translation>От&мена</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7554" /> - <source>%v/%m</source> - <translation>%v/%m</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7556" /> - <source>Version Check</source> - <translation>Проверка версии</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7561" /> - <source>Trying host {0}</source> - <translation>Подключение к хосту {0}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7630" /> - <location filename="../UI/UserInterface.py" line="7623" /> - <location filename="../UI/UserInterface.py" line="7574" /> - <source>Error getting versions information</source> - <translation>Ошибка при получении информации о версии</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7575" /> - <source>The versions information cannot not be downloaded because the Internet is <b>not reachable</b>. Please try again later.</source> - <translation>Информация о версиях не может быть загружена, потому что Интернет <b>не доступен</b>. Пожалуйста, повторите попытку позже.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7624" /> - <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="7597" /> + <source>Upgrade available</source> + <translation>Доступно обновление</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7598" /> + <source>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</source> + <translation>Более новая версия пакета <b>eric-ide</b> доступна по адресу <a href="{0}/eric-ide/">PyPI</a>.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7642" /> <location filename="../UI/UserInterface.py" line="7631" /> - <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> - <translation>Невозможно загрузить информацию о версии в течении последних 7 дней. Пожалуйста попробуйте ещё раз.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7722" /> - <location filename="../UI/UserInterface.py" line="7688" /> - <source>Update available</source> - <translation>Обновления доступны</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7723" /> - <location filename="../UI/UserInterface.py" line="7689" /> - <source>The update to <b>{0}</b> of eric is available at <b>{1}</b>. Would you like to get it?</source> - <translation>На сайте <b>{1}</b> доступно обновление eric до версии <b>{0}</b>. Загрузить?</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7710" /> - <location filename="../UI/UserInterface.py" line="7700" /> - <source>Update Check</source> - <translation>Проверка обновлений</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7701" /> - <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source> - <translation>Вы используете промежуточный релиз eric. Возможно на сайте доступна и более свежий стабильный релиз.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7711" /> - <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> - <translation>Eric установлен непосредственно из исходного кода. -Наличие обновлений проверить невозможно.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7734" /> - <source>eric is up to date</source> - <translation>eric не требует обновлений</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7735" /> - <source>You are using the latest version of eric</source> - <translation>Вы используете самую последнюю версию eric</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7741" /> - <source>Error during updates check</source> - <translation>Ошибка при проверке обновлений</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7742" /> - <source>Could not perform updates check.</source> - <translation>Невозможно запустить проверку обновлений.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7763" /> - <source><h3>Available versions</h3><table></source> - <translation><h3>Доступные версии</h3><table></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7829" /> - <location filename="../UI/UserInterface.py" line="7818" /> <source>First time usage</source> <translation>Первое использование</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7819" /> + <location filename="../UI/UserInterface.py" line="7632" /> <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source> <translation>Eric7 еще не настроен, но доступна конфигурация eric6. Импортировать ее?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7830" /> + <location filename="../UI/UserInterface.py" line="7643" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation>Настройка eric ещё не выполнена. Сейчас будет запущен диалог конфигурации.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7850" /> + <location filename="../UI/UserInterface.py" line="7663" /> <source>Select Workspace Directory</source> <translation>Выбор директории рабочей области</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8027" /> + <location filename="../UI/UserInterface.py" line="7840" /> <source>Unsaved Data Detected</source> <translation>Обнаружены несохраненные данные</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8028" /> + <location filename="../UI/UserInterface.py" line="7841" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation>Некоторые редакторы содержат несохраненные данные. Должны ли они быть сохранены?</translation> </message> @@ -84266,6 +84457,49 @@ </message> </context> <context> + <name>VersionsDialog</name> + <message> + <location filename="../UI/VersionsDialog.py" line="49" /> + <source>Check for Upgrades...</source> + <translation>Проверить наличие обновлений...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="92" /> + <source>No upgrades available.</source> + <translation>Нет доступных обновлений.</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="96" /> + <source>Upgrade eric7...</source> + <translation>Обновить eric7...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="100" /> + <source><p>An upgrade of <b>eric7</b> is available.</p></source> + <translation><p>Доступно обновление <b>eric7</b>.</p></translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="105" /> + <source>Upgrade PyQt6...</source> + <translation>Обновить PyQt6...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="109" /> + <source><p>An upgrade of <b>PyQt6</b> is available.</p></source> + <translation><p>Доступно обновление <b>PyQt6</b>.</p></translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="114" /> + <source>Upgrade Both...</source> + <translation>Обновить оба...</translation> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="128" /> + <source>Check for Upgrades</source> + <translation>Проверка наличия обновлений</translation> + </message> + </context> + <context> <name>ViewManager</name> <message> <location filename="../HexEdit/HexEditMainWindow.py" line="518" /> @@ -89012,7 +89246,7 @@ <context> <name>VirtualenvInterpreterSelectionDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="45" /> + <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="47" /> <source>Python Interpreter</source> <translation>Интерпретатор Python</translation> </message> @@ -89040,54 +89274,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="232" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="243" /> <source>Add Virtual Environment</source> <translation>Добавить виртуальное окружение</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="233" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="244" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation>Виртуальное окружение с именем <b>{0}</b> уже существует.Заменить его?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="295" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="306" /> <source>Change Virtual Environment</source> <translation>Изменить виртуальное окружение</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="346" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="296" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="307" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation>Виртуальное окружение с именем <b>{0}</b> не существует. Прерывание!</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="345" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> <source>Rename Virtual Environment</source> <translation>Переименовать виртуальное окружение</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="433" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="369" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="444" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="380" /> <source>{0} - {1}</source> <translation>{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="377" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> <source>Delete Virtual Environments</source> <translation>Удалить виртуальные окружения</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="378" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Do you really want to delete these virtual environments?</source> <translation>Вы действительно хотите удалить эти виртуальные окружения?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="441" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="452" /> <source>Remove Virtual Environments</source> <translation>Убрать виртуальные окружения из списка</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="453" /> <source>Do you really want to remove these virtual environments?</source> <translation>Вы действительно хотите убрать эти виртуальные окружения из списка?</translation> </message> @@ -90016,22 +90250,22 @@ <context> <name>WebBrowserPage</name> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="195" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="189" /> <source>Suspicuous URL detected</source> <translation>Обнаружен подозрительный URL</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="196" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="190" /> <source><p>The URL <b>{0}</b> was found in the Safe Browsing database.</p>{1}</source> <translation><p>URL <b>{0}</b> был найден в базе Safe Browsing.</p>{1}</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="663" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="657" /> <source>SSL Info</source> <translation>SSL инфо</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="664" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="658" /> <source>This site does not contain SSL information.</source> <translation>Этот сайт не содержит информации SSL.</translation> </message> @@ -91372,12 +91606,12 @@ <translation>Сохранить web-страницу</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2282" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2287" /> <source>Quota Request</source> <translation>Запрос квоты</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2288" /> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation><p> Разрешить вебсайту <b>{0}</b> использовать <b>{1}</b> постоянного хранилища?</p></translation> </message>
--- a/eric7/i18n/eric7_tr.ts Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/i18n/eric7_tr.ts Sat Apr 02 11:23:11 2022 +0200 @@ -1512,6 +1512,26 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader Delay:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Enter the time the upgrader process should wait for eric to exit</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source> s</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> <source>Reporting</source> <translation>Raporediliyor</translation> </message> @@ -48851,7 +48871,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="473" /> + <location filename="../Preferences/__init__.py" line="471" /> <location filename="../QScintilla/Lexers/__init__.py" line="415" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished">Python Dosyaları (*.py *.py3)</translation> @@ -49104,7 +49124,7 @@ <translation>Tüm Dosyalar (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="475" /> + <location filename="../Preferences/__init__.py" line="473" /> <location filename="../QScintilla/Lexers/__init__.py" line="585" /> <source>Python3 Files (*.py)</source> <translation>Python Dosyaları (*.py3)</translation> @@ -55110,119 +55130,113 @@ <context> <name>Pip</name> <message> - <location filename="../PipInterface/Pip.py" line="109" /> + <location filename="../PipInterface/Pip.py" line="123" /> <source>python exited with an error ({0}).</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="116" /> + <location filename="../PipInterface/Pip.py" line="130" /> <source>python did not finish within 30 seconds.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="119" /> + <location filename="../PipInterface/Pip.py" line="133" /> <source>python could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="179" /> + <location filename="../PipInterface/Pip.py" line="193" /> <source><project></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="208" /> + <location filename="../PipInterface/Pip.py" line="222" /> <source>Interpreter for Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="209" /> + <location filename="../PipInterface/Pip.py" line="223" /> <source>No interpreter configured for the selected virtual environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="244" /> + <location filename="../PipInterface/Pip.py" line="258" /> <source>Install PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="286" /> + <location filename="../PipInterface/Pip.py" line="300" /> <source>Repair PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="359" /> - <location filename="../PipInterface/Pip.py" line="311" /> + <location filename="../PipInterface/Pip.py" line="383" /> <source>Upgrade Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="312" /> - <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/Pip.py" line="399" /> + <location filename="../PipInterface/Pip.py" line="423" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="428" /> + <location filename="../PipInterface/Pip.py" line="452" /> <source>Install Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="491" /> - <location filename="../PipInterface/Pip.py" line="460" /> - <location filename="../PipInterface/Pip.py" line="451" /> + <location filename="../PipInterface/Pip.py" line="515" /> + <location filename="../PipInterface/Pip.py" line="484" /> + <location filename="../PipInterface/Pip.py" line="475" /> <source>Uninstall Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="492" /> - <location filename="../PipInterface/Pip.py" line="452" /> + <location filename="../PipInterface/Pip.py" line="516" /> + <location filename="../PipInterface/Pip.py" line="476" /> <source>Do you really want to uninstall these packages?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="503" /> + <location filename="../PipInterface/Pip.py" line="527" /> <source>Uninstall Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="721" /> + <location filename="../PipInterface/Pip.py" line="844" /> <source>Cache Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="746" /> - <location filename="../PipInterface/Pip.py" line="738" /> + <location filename="../PipInterface/Pip.py" line="869" /> + <location filename="../PipInterface/Pip.py" line="861" /> <source>List Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="739" /> + <location filename="../PipInterface/Pip.py" line="862" /> <source>Enter a file pattern (empty for all):</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="770" /> - <location filename="../PipInterface/Pip.py" line="764" /> + <location filename="../PipInterface/Pip.py" line="893" /> + <location filename="../PipInterface/Pip.py" line="887" /> <source>Remove Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="765" /> + <location filename="../PipInterface/Pip.py" line="888" /> <source>Enter a file pattern:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="793" /> - <location filename="../PipInterface/Pip.py" line="788" /> + <location filename="../PipInterface/Pip.py" line="916" /> + <location filename="../PipInterface/Pip.py" line="911" /> <source>Purge Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="789" /> + <location filename="../PipInterface/Pip.py" line="912" /> <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source> <translation type="unfinished" /> </message> @@ -55349,18 +55363,18 @@ <location filename="../PipInterface/PipFreezeDialog.py" line="230" /> <location filename="../PipInterface/PipFreezeDialog.py" line="210" /> <location filename="../PipInterface/PipFreezeDialog.py" line="198" /> - <location filename="../PipInterface/PipFreezeDialog.py" line="118" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="122" /> <source>Generate Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="119" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="123" /> <source>The requirements were changed. Do you want to overwrite these changes?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="160" /> - <source>No output generated by 'pip freeze'.</source> + <location filename="../PipInterface/PipFreezeDialog.py" line="158" /> + <source>No package specifiers generated by 'pip freeze'.</source> <translation type="unfinished" /> </message> <message> @@ -55390,6 +55404,16 @@ </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>Select to show requirements for packages installed to the user-site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Requirements File:</source> <translation type="unfinished" /> </message> @@ -55450,6 +55474,65 @@ </message> </context> <context> + <name>PipLicensesDialog</name> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package Licenses</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Local packages only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Version</source> + <translation type="unfinished">Sürüm</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>License</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="61" /> + <source>Licenses of "{0}"</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="65" /> + <source>No environment specified.</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PipListDialog</name> <message> <source>Version</source> @@ -55725,11 +55808,17 @@ <name>PipPackagesWidget</name> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Toggle to show or hide the dependency tree view</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only locally-installed packages</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Local packages only</source> <translation type="unfinished" /> </message> @@ -55750,11 +55839,23 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>User-Site only</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Perform vulnerability checks based on "Safety DB".</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Vulnerability Check</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Package</source> @@ -55762,12 +55863,18 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Installed Version</source> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Installed</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Available Version</source> + <source>Available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Affected</source> <translation type="unfinished" /> </message> <message> @@ -55813,6 +55920,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Press to show details for the selected entry</source> <translation type="unfinished" /> </message> @@ -55823,11 +55931,6 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Press to start the search</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Enter the search term for the package name</source> <translation type="unfinished" /> </message> @@ -55838,6 +55941,16 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to start the search</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to search for more packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Version</source> <translation type="unfinished">Sürüm</translation> </message> @@ -55862,104 +55975,150 @@ <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="169" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>View Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package requires other packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Requires</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package is required by others</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required By</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to refresh the dependency tree</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="185" /> <source>pip Menu</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="195" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="230" /> <source>Name:</source> <translation type="unfinished">Adı:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="196" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="231" /> <source>Version:</source> <translation type="unfinished">Sürüm:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="197" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="232" /> <source>Location:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="198" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="233" /> <source>Requires:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="199" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="234" /> <source>Summary:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="200" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="235" /> <source>Homepage:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="201" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="236" /> <source>Author:</source> <translation type="unfinished">Yazar:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="202" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="237" /> <source>Author Email:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="203" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="238" /> <source>License:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="204" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="239" /> <source>Metadata Version:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="205" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="240" /> <source>Installer:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="206" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="241" /> <source>Classifiers:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="207" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="242" /> <source>Entry Points:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="208" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="243" /> <source>Files:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="375" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="427" /> <source>Getting installed packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="390" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="443" /> <source>Getting outdated packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="975" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="812" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="790" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1141" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="972" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="961" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="930" /> <source>Search PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="791" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="931" /> <source><p>Received an error while searching for <b>{0}</b>.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../PipInterface/PipPackagesWidget.py" line="805" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="946" /> <source>%n package(s) found.</source> <translation type="unfinished"> <numerusform /> @@ -55967,117 +56126,158 @@ </translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="807" /> - <source>Showing first 20 packages found.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="815" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="813" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="950" /> + <source>Showing first {0} packages found.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="966" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="962" /> <source><p>There were no results for <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="976" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="973" /> + <source><p>There were no more results for <b>{0}</b>.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1142" /> <source><p>No package details info for <b>{0}</b> available.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="990" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1156" /> <source>Install Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="993" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1159" /> <source>Install Pip to User-Site</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="996" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1162" /> <source>Repair Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1116" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1000" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1299" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1166" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1003" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1169" /> <source>Install Local Package</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1007" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1173" /> <source>Install Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1010" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1176" /> <source>Re-Install Selected Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1013" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1179" /> <source>Uninstall Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1016" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1182" /> <source>Generate Requirements...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1020" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1186" /> + <source>Show Licenses...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1190" /> + <source>Check Vulnerabilities</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1194" /> + <source>Update Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1198" /> <source>Show Cache Info...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1023" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1201" /> <source>Show Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1026" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1204" /> <source>Remove Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1029" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1207" /> <source>Purge Cache...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1034" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1212" /> <source>Edit User Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1037" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1215" /> <source>Edit Environment Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1042" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1220" /> <source>Configure...</source> <translation type="unfinished">Ayarlanıyor...</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1237" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1224" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1213" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1421" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1408" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1397" /> <source>Edit Configuration</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1238" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1225" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1214" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1422" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1409" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1398" /> <source>No valid configuration path determined. Aborting</source> <translation type="unfinished" /> </message> <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1576" /> + <source>{0} {1}</source> + <comment>package name, package version</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1598" /> + <source>Affected Version:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1601" /> + <source>Advisory:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1716" /> + <source>any</source> + <translation type="unfinished" /> + </message> + <message> <source>Error: {0}</source> <translation type="vanished">Hata: {0}</translation> </message> @@ -56090,6 +56290,11 @@ <translation type="unfinished" /> </message> <message> + <location filename="../Preferences/ConfigurationPages/PipPage.py" line="34" /> + <source><b>Note:</b> Leave empty to use the default Safety DB URL ({0}).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source><b>Configure pip</b></source> <translation type="unfinished" /> @@ -56106,6 +56311,36 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Vulnerability Checks</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Safety DB URL:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the base URL for the Safety DB mirror to be used</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Cache Validity:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source> hours</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source>Environment</source> <translation type="unfinished" /> </message> @@ -56136,6 +56371,19 @@ </message> </context> <context> + <name>PipVulnerabilityChecker</name> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="219" /> + <source>Fetching Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="220" /> + <source><p>The vulnerability database <b>{0}</b> could not be loaded from <b>{1}</b>.</p><p>The vulnerability check is not available.</p></source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PixmapDiagram</name> <message> <location filename="../Graphics/PixmapDiagram.py" line="164" /> @@ -56545,32 +56793,32 @@ <translation>Modülün 'eklentitipi' ve/veya 'eklentiTipadı' niteliği eksik.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="445" /> + <location filename="../PluginManager/PluginManager.py" line="449" /> <source>Module failed to load. Error: {0}</source> <translation>Modül yüklemede başarısızlık. Hata: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="622" /> + <location filename="../PluginManager/PluginManager.py" line="626" /> <source>Incompatible plugin activation method.</source> <translation>Eklenti etkinleştirme yöntemi uyuşmuyor.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1204" /> + <location filename="../PluginManager/PluginManager.py" line="1208" /> <source>Plugin Manager Error</source> <translation>Eklenti Yöneticisi Hatası</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1205" /> + <location filename="../PluginManager/PluginManager.py" line="1209" /> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>eklenti dizini <b>{0}</b> oluşturulamıyor. Lütfen ayarlama diyaloğu aracılığı ile düzenleyin.</p><p>Sebep: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1271" /> + <location filename="../PluginManager/PluginManager.py" line="1275" /> <source>Error downloading file</source> <translation type="unfinished">Dosya yüklenirken hata</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1272" /> + <location filename="../PluginManager/PluginManager.py" line="1276" /> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> @@ -56727,6 +56975,21 @@ <source>Edit URL</source> <translation type="unfinished" /> </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Startup Behavior</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Select, to check for missing plugin dependencies at startup and install them</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Automatic dependencies installation</source> + <translation type="unfinished" /> + </message> </context> <context> <name>PluginRepositoryDialog</name> @@ -57402,18 +57665,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1654" /> + <location filename="../Preferences/__init__.py" line="1658" /> <source>Export Preferences</source> <translation>Seçenekleri Dışa Aktar</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1682" /> - <location filename="../Preferences/__init__.py" line="1656" /> + <location filename="../Preferences/__init__.py" line="1686" /> + <location filename="../Preferences/__init__.py" line="1660" /> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> + <location filename="../Preferences/__init__.py" line="1684" /> <source>Import Preferences</source> <translation>Seçenekleri İçe Aktar</translation> </message> @@ -83154,7 +83417,17 @@ <translation type="unfinished"><h3>Sürüm Numaraları</h3><table></translation> </message> <message> - <location filename="../Tools/TrayStarter.py" line="582" /> + <location filename="../Tools/TrayStarter.py" line="600" /> + <source>Desktop</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="603" /> + <source>Session Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="605" /> <source></table></source> <translation type="unfinished"></table></translation> </message> @@ -84743,2633 +85016,2583 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="256" /> + <location filename="../UI/UserInterface.py" line="253" /> <source>Initializing Basic Services...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="297" /> + <location filename="../UI/UserInterface.py" line="294" /> <source>Initializing Plugin Manager...</source> <translation>Eklenti Yöneticisi Hazırlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="304" /> + <location filename="../UI/UserInterface.py" line="301" /> <source>Generating Main User Interface...</source> <translation>Ana Kullanıcı Arayüzü Üretiliyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="346" /> + <location filename="../UI/UserInterface.py" line="343" /> <source>Setting up connections...</source> <translation>Bağlantılar ayarlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="593" /> + <location filename="../UI/UserInterface.py" line="590" /> <source>Initializing Tools...</source> <translation>Araçlar Hazırlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="603" /> + <location filename="../UI/UserInterface.py" line="600" /> <source>Registering Objects...</source> <translation>Nesneler Kaydediliyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="644" /> + <location filename="../UI/UserInterface.py" line="636" /> <source>Initializing Actions...</source> <translation>İşlemler Hazırlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="646" /> + <location filename="../UI/UserInterface.py" line="638" /> <source>Initializing Menus...</source> <translation>Menüler Hazırlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="648" /> + <location filename="../UI/UserInterface.py" line="640" /> <source>Initializing Toolbars...</source> <translation>Araççubuğu Hazırlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="650" /> + <location filename="../UI/UserInterface.py" line="642" /> <source>Initializing Statusbar...</source> <translation>Durumçubuğu Hazırlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="678" /> + <location filename="../UI/UserInterface.py" line="670" /> <source>Initializing Single Application Server...</source> <translation>Tekli Uygulama Senveri Hazırlanıyor...</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="676" /> + <source>Initializing Plugins...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="679" /> + <source>Activating Plugins...</source> + <translation>Eklentiler Aktif oluyor...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="681" /> + <source>Generating Plugins Toolbars...</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="684" /> - <source>Initializing Plugins...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="687" /> - <source>Activating Plugins...</source> - <translation>Eklentiler Aktif oluyor...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="689" /> - <source>Generating Plugins Toolbars...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="692" /> <source>Cleaning Plugins Download Area...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="703" /> + <location filename="../UI/UserInterface.py" line="695" /> <source>Restoring Toolbarmanager...</source> <translation>Araççubuğu Yöneticisi Yeniden yapılandırılıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="712" /> + <location filename="../UI/UserInterface.py" line="704" /> <source>Setting View Profile...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="725" /> + <location filename="../UI/UserInterface.py" line="717" /> <source>Reading Tasks...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="730" /> + <location filename="../UI/UserInterface.py" line="722" /> <source>Reading Templates...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="735" /> + <location filename="../UI/UserInterface.py" line="727" /> <source>Starting Debugger...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2041" /> + <location filename="../UI/UserInterface.py" line="2033" /> + <location filename="../UI/UserInterface.py" line="1057" /> + <source>Left Toolbox</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2064" /> <location filename="../UI/UserInterface.py" line="1065" /> - <source>Left Toolbox</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2072" /> - <location filename="../UI/UserInterface.py" line="1073" /> <source>Horizontal Toolbox</source> <translation>Yatay Araçkutusu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2056" /> - <location filename="../UI/UserInterface.py" line="1081" /> + <location filename="../UI/UserInterface.py" line="2048" /> + <location filename="../UI/UserInterface.py" line="1073" /> <source>Right Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1915" /> - <location filename="../UI/UserInterface.py" line="1237" /> - <location filename="../UI/UserInterface.py" line="1089" /> + <location filename="../UI/UserInterface.py" line="1907" /> + <location filename="../UI/UserInterface.py" line="1229" /> + <location filename="../UI/UserInterface.py" line="1081" /> <source>Multiproject-Viewer</source> <translation>Çokluproje-Görüntüleyici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1898" /> - <location filename="../UI/UserInterface.py" line="1242" /> - <location filename="../UI/UserInterface.py" line="1093" /> + <location filename="../UI/UserInterface.py" line="1890" /> + <location filename="../UI/UserInterface.py" line="1234" /> + <location filename="../UI/UserInterface.py" line="1085" /> <source>Project-Viewer</source> <translation>Proje-Görüntüleyici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2326" /> - <location filename="../UI/UserInterface.py" line="2325" /> - <location filename="../UI/UserInterface.py" line="1247" /> - <location filename="../UI/UserInterface.py" line="1097" /> + <location filename="../UI/UserInterface.py" line="2318" /> + <location filename="../UI/UserInterface.py" line="2317" /> + <location filename="../UI/UserInterface.py" line="1239" /> + <location filename="../UI/UserInterface.py" line="1089" /> <source>Find/Replace In Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2344" /> - <location filename="../UI/UserInterface.py" line="2343" /> - <location filename="../UI/UserInterface.py" line="1252" /> - <location filename="../UI/UserInterface.py" line="1101" /> + <location filename="../UI/UserInterface.py" line="2336" /> + <location filename="../UI/UserInterface.py" line="2335" /> + <location filename="../UI/UserInterface.py" line="1244" /> + <location filename="../UI/UserInterface.py" line="1093" /> <source>Find File</source> <translation type="unfinished">Dosya Bul</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1257" /> - <location filename="../UI/UserInterface.py" line="1105" /> + <location filename="../UI/UserInterface.py" line="1249" /> + <location filename="../UI/UserInterface.py" line="1097" /> <source>VCS Status</source> <translation type="unfinished">VCS Durumu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2022" /> - <location filename="../UI/UserInterface.py" line="1263" /> - <location filename="../UI/UserInterface.py" line="1110" /> + <location filename="../UI/UserInterface.py" line="2014" /> + <location filename="../UI/UserInterface.py" line="1255" /> + <location filename="../UI/UserInterface.py" line="1102" /> <source>Template-Viewer</source> <translation>Şablon-Gösterici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1968" /> - <location filename="../UI/UserInterface.py" line="1269" /> - <location filename="../UI/UserInterface.py" line="1115" /> + <location filename="../UI/UserInterface.py" line="1960" /> + <location filename="../UI/UserInterface.py" line="1261" /> + <location filename="../UI/UserInterface.py" line="1107" /> <source>File-Browser</source> <translation>Dosya-Gözatıcısı</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1275" /> - <location filename="../UI/UserInterface.py" line="1120" /> + <location filename="../UI/UserInterface.py" line="1267" /> + <location filename="../UI/UserInterface.py" line="1112" /> <source>Symbols</source> <translation>Semboller</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1933" /> - <location filename="../UI/UserInterface.py" line="1295" /> - <location filename="../UI/UserInterface.py" line="1290" /> - <location filename="../UI/UserInterface.py" line="1128" /> + <location filename="../UI/UserInterface.py" line="1925" /> + <location filename="../UI/UserInterface.py" line="1287" /> + <location filename="../UI/UserInterface.py" line="1282" /> + <location filename="../UI/UserInterface.py" line="1120" /> <source>Debug-Viewer</source> <translation>Hata Ayıklama Göstericisi</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2215" /> - <location filename="../UI/UserInterface.py" line="2214" /> - <location filename="../UI/UserInterface.py" line="1301" /> - <location filename="../UI/UserInterface.py" line="1133" /> + <location filename="../UI/UserInterface.py" line="2207" /> + <location filename="../UI/UserInterface.py" line="2206" /> + <location filename="../UI/UserInterface.py" line="1293" /> + <location filename="../UI/UserInterface.py" line="1125" /> <source>Code Documentation Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2380" /> - <location filename="../UI/UserInterface.py" line="2379" /> - <location filename="../UI/UserInterface.py" line="1307" /> - <location filename="../UI/UserInterface.py" line="1138" /> + <location filename="../UI/UserInterface.py" line="2372" /> + <location filename="../UI/UserInterface.py" line="2371" /> + <location filename="../UI/UserInterface.py" line="1299" /> + <location filename="../UI/UserInterface.py" line="1130" /> <source>Help Viewer</source> <translation type="unfinished">Yardım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3103" /> - <location filename="../UI/UserInterface.py" line="2289" /> - <location filename="../UI/UserInterface.py" line="2288" /> - <location filename="../UI/UserInterface.py" line="1312" /> - <location filename="../UI/UserInterface.py" line="1142" /> + <location filename="../UI/UserInterface.py" line="3069" /> + <location filename="../UI/UserInterface.py" line="2281" /> + <location filename="../UI/UserInterface.py" line="2280" /> + <location filename="../UI/UserInterface.py" line="1304" /> + <location filename="../UI/UserInterface.py" line="1134" /> <source>Plugin Repository</source> <translation>Eklenti Havuzu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2307" /> - <location filename="../UI/UserInterface.py" line="2306" /> - <location filename="../UI/UserInterface.py" line="1317" /> - <location filename="../UI/UserInterface.py" line="1146" /> + <location filename="../UI/UserInterface.py" line="2299" /> + <location filename="../UI/UserInterface.py" line="2298" /> + <location filename="../UI/UserInterface.py" line="1309" /> + <location filename="../UI/UserInterface.py" line="1138" /> <source>Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2235" /> - <location filename="../UI/UserInterface.py" line="2234" /> - <location filename="../UI/UserInterface.py" line="1322" /> - <location filename="../UI/UserInterface.py" line="1151" /> + <location filename="../UI/UserInterface.py" line="2227" /> + <location filename="../UI/UserInterface.py" line="2226" /> + <location filename="../UI/UserInterface.py" line="1314" /> + <location filename="../UI/UserInterface.py" line="1143" /> <source>PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2253" /> - <location filename="../UI/UserInterface.py" line="2252" /> - <location filename="../UI/UserInterface.py" line="1327" /> - <location filename="../UI/UserInterface.py" line="1156" /> + <location filename="../UI/UserInterface.py" line="2245" /> + <location filename="../UI/UserInterface.py" line="2244" /> + <location filename="../UI/UserInterface.py" line="1319" /> + <location filename="../UI/UserInterface.py" line="1148" /> <source>Conda</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1332" /> - <location filename="../UI/UserInterface.py" line="1161" /> + <location filename="../UI/UserInterface.py" line="1324" /> + <location filename="../UI/UserInterface.py" line="1153" /> <source>Cooperation</source> <translation>İşbirliği</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2158" /> - <location filename="../UI/UserInterface.py" line="1337" /> - <location filename="../UI/UserInterface.py" line="1166" /> + <location filename="../UI/UserInterface.py" line="2150" /> + <location filename="../UI/UserInterface.py" line="1329" /> + <location filename="../UI/UserInterface.py" line="1158" /> <source>IRC</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2271" /> - <location filename="../UI/UserInterface.py" line="2270" /> + <location filename="../UI/UserInterface.py" line="2263" /> + <location filename="../UI/UserInterface.py" line="2262" /> + <location filename="../UI/UserInterface.py" line="1335" /> + <location filename="../UI/UserInterface.py" line="1163" /> + <source>MicroPython</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1943" /> <location filename="../UI/UserInterface.py" line="1343" /> <location filename="../UI/UserInterface.py" line="1171" /> - <source>MicroPython</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1951" /> - <location filename="../UI/UserInterface.py" line="1351" /> - <location filename="../UI/UserInterface.py" line="1179" /> <source>Shell</source> <translation>Kabuk</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003" /> - <location filename="../UI/UserInterface.py" line="1355" /> - <location filename="../UI/UserInterface.py" line="1183" /> + <location filename="../UI/UserInterface.py" line="1995" /> + <location filename="../UI/UserInterface.py" line="1347" /> + <location filename="../UI/UserInterface.py" line="1175" /> <source>Task-Viewer</source> <translation>Görev-Gösterici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1985" /> - <location filename="../UI/UserInterface.py" line="1359" /> - <location filename="../UI/UserInterface.py" line="1187" /> + <location filename="../UI/UserInterface.py" line="1977" /> + <location filename="../UI/UserInterface.py" line="1351" /> + <location filename="../UI/UserInterface.py" line="1179" /> <source>Log-Viewer</source> <translation>Kayıt-Gösterici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1364" /> - <location filename="../UI/UserInterface.py" line="1192" /> + <location filename="../UI/UserInterface.py" line="1356" /> + <location filename="../UI/UserInterface.py" line="1184" /> <source>Numbers</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1752" /> + <location filename="../UI/UserInterface.py" line="1744" /> <source>{0} - Passive Mode</source> <translation>{0} - Pasif Mod</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1759" /> - <location filename="../UI/UserInterface.py" line="1755" /> + <location filename="../UI/UserInterface.py" line="1751" /> + <location filename="../UI/UserInterface.py" line="1747" /> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} -Pasif Mod</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1763" /> + <location filename="../UI/UserInterface.py" line="1755" /> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - Pasif Mod</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1786" /> + <location filename="../UI/UserInterface.py" line="1778" /> <source>Quit</source> <translation>Çık</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1788" /> + <location filename="../UI/UserInterface.py" line="1780" /> <source>&Quit</source> <translation>&Çıkış</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1789" /> + <location filename="../UI/UserInterface.py" line="1781" /> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1791" /> + <location filename="../UI/UserInterface.py" line="1783" /> <source>Quit the IDE</source> <translation>IDE den Çık</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1792" /> + <location filename="../UI/UserInterface.py" line="1784" /> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1805" /> - <location filename="../UI/UserInterface.py" line="1803" /> + <location filename="../UI/UserInterface.py" line="1797" /> + <location filename="../UI/UserInterface.py" line="1795" /> <source>Restart</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1806" /> + <location filename="../UI/UserInterface.py" line="1798" /> <source>Ctrl+Shift+Q</source> <comment>File|Quit</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1808" /> + <location filename="../UI/UserInterface.py" line="1800" /> <source>Restart the IDE</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1809" /> + <location filename="../UI/UserInterface.py" line="1801" /> <source><b>Restart the IDE</b><p>This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1822" /> - <location filename="../UI/UserInterface.py" line="1819" /> + <location filename="../UI/UserInterface.py" line="1814" /> + <location filename="../UI/UserInterface.py" line="1811" /> <source>Save session</source> <translation>Oturumu kaydet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1820" /> + <location filename="../UI/UserInterface.py" line="1812" /> <source>Save session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1823" /> + <location filename="../UI/UserInterface.py" line="1815" /> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7022" /> - <location filename="../UI/UserInterface.py" line="1835" /> - <location filename="../UI/UserInterface.py" line="1832" /> + <location filename="../UI/UserInterface.py" line="7080" /> + <location filename="../UI/UserInterface.py" line="1827" /> + <location filename="../UI/UserInterface.py" line="1824" /> <source>Load session</source> <translation type="unfinished">Oturum yükleniyor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1833" /> + <location filename="../UI/UserInterface.py" line="1825" /> <source>Load session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1836" /> + <location filename="../UI/UserInterface.py" line="1828" /> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1845" /> + <location filename="../UI/UserInterface.py" line="1837" /> <source>New Window</source> <translation type="unfinished">Yeni Pencere</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1847" /> + <location filename="../UI/UserInterface.py" line="1839" /> <source>New &Window</source> <translation type="unfinished">Yeni &Pencere</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848" /> + <location filename="../UI/UserInterface.py" line="1840" /> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1850" /> + <location filename="../UI/UserInterface.py" line="1842" /> <source>Open a new eric instance</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1852" /> + <location filename="../UI/UserInterface.py" line="1844" /> <source><b>New Window</b><p>This opens a new instance of the eric IDE.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1866" /> - <location filename="../UI/UserInterface.py" line="1864" /> + <location filename="../UI/UserInterface.py" line="1858" /> + <location filename="../UI/UserInterface.py" line="1856" /> <source>Edit Profile</source> <translation>Düzenleme Kesiti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1869" /> + <location filename="../UI/UserInterface.py" line="1861" /> <source>Activate the edit view profile</source> <translation>Düzenleyici görüntü kesitini aktif yap</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871" /> + <location filename="../UI/UserInterface.py" line="1863" /> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1883" /> - <location filename="../UI/UserInterface.py" line="1881" /> + <location filename="../UI/UserInterface.py" line="1875" /> + <location filename="../UI/UserInterface.py" line="1873" /> <source>Debug Profile</source> <translation>Hata Ayıklama Kesiti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1887" /> + <location filename="../UI/UserInterface.py" line="1879" /> <source>Activate the debug view profile</source> <translation>Debug görüntü kesitini aktif et</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1888" /> + <location filename="../UI/UserInterface.py" line="1880" /> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1899" /> + <location filename="../UI/UserInterface.py" line="1891" /> <source>&Project-Viewer</source> <translation>&proje-Görüntüleyici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1900" /> + <location filename="../UI/UserInterface.py" line="1892" /> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1903" /> + <location filename="../UI/UserInterface.py" line="1895" /> <source>Switch the input focus to the Project-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1905" /> + <location filename="../UI/UserInterface.py" line="1897" /> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1916" /> + <location filename="../UI/UserInterface.py" line="1908" /> <source>&Multiproject-Viewer</source> <translation>Çokluproje-Görü&ntüleyici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1917" /> + <location filename="../UI/UserInterface.py" line="1909" /> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920" /> + <location filename="../UI/UserInterface.py" line="1912" /> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1922" /> + <location filename="../UI/UserInterface.py" line="1914" /> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1934" /> + <location filename="../UI/UserInterface.py" line="1926" /> <source>&Debug-Viewer</source> <translation>Ha&ta Ayıklama-Göstericisi</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935" /> + <location filename="../UI/UserInterface.py" line="1927" /> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1938" /> + <location filename="../UI/UserInterface.py" line="1930" /> <source>Switch the input focus to the Debug-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1940" /> + <location filename="../UI/UserInterface.py" line="1932" /> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1952" /> + <location filename="../UI/UserInterface.py" line="1944" /> <source>&Shell</source> <translation>&Kabuk</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1953" /> + <location filename="../UI/UserInterface.py" line="1945" /> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1956" /> + <location filename="../UI/UserInterface.py" line="1948" /> <source>Switch the input focus to the Shell window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1958" /> + <location filename="../UI/UserInterface.py" line="1950" /> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1969" /> + <location filename="../UI/UserInterface.py" line="1961" /> <source>&File-Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1970" /> + <location filename="../UI/UserInterface.py" line="1962" /> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1973" /> + <location filename="../UI/UserInterface.py" line="1965" /> <source>Switch the input focus to the File-Browser window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1975" /> + <location filename="../UI/UserInterface.py" line="1967" /> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1986" /> + <location filename="../UI/UserInterface.py" line="1978" /> <source>Lo&g-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1987" /> + <location filename="../UI/UserInterface.py" line="1979" /> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1990" /> + <location filename="../UI/UserInterface.py" line="1982" /> <source>Switch the input focus to the Log-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1992" /> + <location filename="../UI/UserInterface.py" line="1984" /> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2004" /> + <location filename="../UI/UserInterface.py" line="1996" /> <source>&Task-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2005" /> + <location filename="../UI/UserInterface.py" line="1997" /> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2008" /> + <location filename="../UI/UserInterface.py" line="2000" /> <source>Switch the input focus to the Task-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2010" /> + <location filename="../UI/UserInterface.py" line="2002" /> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2023" /> + <location filename="../UI/UserInterface.py" line="2015" /> <source>Templ&ate-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2024" /> + <location filename="../UI/UserInterface.py" line="2016" /> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2027" /> + <location filename="../UI/UserInterface.py" line="2019" /> <source>Switch the input focus to the Template-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2029" /> + <location filename="../UI/UserInterface.py" line="2021" /> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2042" /> + <location filename="../UI/UserInterface.py" line="2034" /> <source>&Left Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2043" /> + <location filename="../UI/UserInterface.py" line="2035" /> <source>Toggle the Left Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2044" /> + <location filename="../UI/UserInterface.py" line="2036" /> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2057" /> + <location filename="../UI/UserInterface.py" line="2049" /> <source>&Right Toolbox</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2059" /> + <location filename="../UI/UserInterface.py" line="2051" /> <source>Toggle the Right Toolbox window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2060" /> + <location filename="../UI/UserInterface.py" line="2052" /> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2073" /> + <location filename="../UI/UserInterface.py" line="2065" /> <source>&Horizontal Toolbox</source> <translation>Ya&tay Araçkutusu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2075" /> + <location filename="../UI/UserInterface.py" line="2067" /> <source>Toggle the Horizontal Toolbox window</source> <translation>Yatay Araçkutusu penceresini açkapa</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2077" /> + <location filename="../UI/UserInterface.py" line="2069" /> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2089" /> + <location filename="../UI/UserInterface.py" line="2081" /> <source>Left Sidebar</source> <translation>Sol Durumçubuğu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2090" /> + <location filename="../UI/UserInterface.py" line="2082" /> <source>&Left Sidebar</source> <translation>So&l Durumçubuğu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2092" /> + <location filename="../UI/UserInterface.py" line="2084" /> <source>Toggle the left sidebar window</source> <translation>Sol Durum çubuğu penceresini açkapa</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2093" /> + <location filename="../UI/UserInterface.py" line="2085" /> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Sol durum çubuğu penceresini açkapa</b><p>Eğer sol durum çubuğu penceresi gizli ise onu görünür yap. Eğer görünüyor ise kapat.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2105" /> + <location filename="../UI/UserInterface.py" line="2097" /> <source>Right Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2106" /> + <location filename="../UI/UserInterface.py" line="2098" /> <source>&Right Sidebar</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2108" /> + <location filename="../UI/UserInterface.py" line="2100" /> <source>Toggle the right sidebar window</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2110" /> + <location filename="../UI/UserInterface.py" line="2102" /> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2122" /> + <location filename="../UI/UserInterface.py" line="2114" /> <source>Bottom Sidebar</source> <translation>Alt Durumçubuğu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2123" /> + <location filename="../UI/UserInterface.py" line="2115" /> <source>&Bottom Sidebar</source> <translation>Alt Durumçu&buğu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2125" /> + <location filename="../UI/UserInterface.py" line="2117" /> <source>Toggle the bottom sidebar window</source> <translation>Alt Durum çubuğu penceresini açkapa</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2127" /> + <location filename="../UI/UserInterface.py" line="2119" /> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2139" /> + <location filename="../UI/UserInterface.py" line="2131" /> <source>Cooperation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2140" /> + <location filename="../UI/UserInterface.py" line="2132" /> <source>Co&operation-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2141" /> + <location filename="../UI/UserInterface.py" line="2133" /> <source>Alt+Shift+O</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2144" /> + <location filename="../UI/UserInterface.py" line="2136" /> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2146" /> + <location filename="../UI/UserInterface.py" line="2138" /> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2159" /> + <location filename="../UI/UserInterface.py" line="2151" /> <source>&IRC</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2160" /> + <location filename="../UI/UserInterface.py" line="2152" /> <source>Ctrl+Alt+Shift+I</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2163" /> + <location filename="../UI/UserInterface.py" line="2155" /> <source>Switch the input focus to the IRC window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2165" /> + <location filename="../UI/UserInterface.py" line="2157" /> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2176" /> + <location filename="../UI/UserInterface.py" line="2168" /> <source>Symbols-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2177" /> + <location filename="../UI/UserInterface.py" line="2169" /> <source>S&ymbols-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2178" /> + <location filename="../UI/UserInterface.py" line="2170" /> <source>Alt+Shift+Y</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2181" /> + <location filename="../UI/UserInterface.py" line="2173" /> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2183" /> + <location filename="../UI/UserInterface.py" line="2175" /> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2195" /> + <location filename="../UI/UserInterface.py" line="2187" /> <source>Numbers-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2196" /> + <location filename="../UI/UserInterface.py" line="2188" /> <source>Num&bers-Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2197" /> + <location filename="../UI/UserInterface.py" line="2189" /> <source>Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2200" /> + <location filename="../UI/UserInterface.py" line="2192" /> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2202" /> + <location filename="../UI/UserInterface.py" line="2194" /> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2216" /> + <location filename="../UI/UserInterface.py" line="2208" /> <source>Ctrl+Alt+Shift+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2219" /> + <location filename="../UI/UserInterface.py" line="2211" /> <source>Switch the input focus to the Code Documentation Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2222" /> + <location filename="../UI/UserInterface.py" line="2214" /> <source><b>Code Documentation Viewer</b><p>This switches the input focus to the Code Documentation Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2236" /> + <location filename="../UI/UserInterface.py" line="2228" /> <source>Ctrl+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2239" /> + <location filename="../UI/UserInterface.py" line="2231" /> <source>Switch the input focus to the PyPI window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2241" /> + <location filename="../UI/UserInterface.py" line="2233" /> <source><b>PyPI</b><p>This switches the input focus to the PyPI window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2254" /> + <location filename="../UI/UserInterface.py" line="2246" /> <source>Ctrl+Alt+Shift+C</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2257" /> + <location filename="../UI/UserInterface.py" line="2249" /> <source>Switch the input focus to the Conda window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2259" /> + <location filename="../UI/UserInterface.py" line="2251" /> <source><b>Conda</b><p>This switches the input focus to the Conda window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2272" /> + <location filename="../UI/UserInterface.py" line="2264" /> <source>Ctrl+Alt+Shift+M</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2275" /> + <location filename="../UI/UserInterface.py" line="2267" /> <source>Switch the input focus to the MicroPython window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2277" /> + <location filename="../UI/UserInterface.py" line="2269" /> <source><b>MicroPython</b><p>This switches the input focus to the MicroPython window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2290" /> + <location filename="../UI/UserInterface.py" line="2282" /> <source>Ctrl+Alt+Shift+R</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2293" /> + <location filename="../UI/UserInterface.py" line="2285" /> <source>Switch the input focus to the Plugin Repository window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2295" /> + <location filename="../UI/UserInterface.py" line="2287" /> <source><b>Plugin Repository</b><p>This switches the input focus to the Plugin Repository window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2308" /> + <location filename="../UI/UserInterface.py" line="2300" /> <source>Ctrl+Alt+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2311" /> + <location filename="../UI/UserInterface.py" line="2303" /> <source>Switch the input focus to the Virtual Environments Manager window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2314" /> + <location filename="../UI/UserInterface.py" line="2306" /> <source><b>Virtual Environments</b><p>This switches the input focus to the Virtual Environments Manager window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2327" /> + <location filename="../UI/UserInterface.py" line="2319" /> <source>Ctrl+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2330" /> + <location filename="../UI/UserInterface.py" line="2322" /> <source>Switch the input focus to the Find/Replace In Files window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2332" /> + <location filename="../UI/UserInterface.py" line="2324" /> <source><b>Find/Replace In Files</b><p>This switches the input focus to the Find/Replace In Files window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2345" /> + <location filename="../UI/UserInterface.py" line="2337" /> <source>Ctrl+Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2348" /> + <location filename="../UI/UserInterface.py" line="2340" /> <source>Switch the input focus to the Find File window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2350" /> + <location filename="../UI/UserInterface.py" line="2342" /> <source><b>Find File</b><p>This switches the input focus to the Find File window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2362" /> - <location filename="../UI/UserInterface.py" line="2361" /> + <location filename="../UI/UserInterface.py" line="2354" /> + <location filename="../UI/UserInterface.py" line="2353" /> <source>VCS Status List</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2363" /> + <location filename="../UI/UserInterface.py" line="2355" /> <source>Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2366" /> + <location filename="../UI/UserInterface.py" line="2358" /> <source>Switch the input focus to the VCS Status List window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2368" /> + <location filename="../UI/UserInterface.py" line="2360" /> <source><b>VCS Status List</b><p>This switches the input focus to the VCS Status List window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2381" /> + <location filename="../UI/UserInterface.py" line="2373" /> <source>Alt+Shift+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2384" /> + <location filename="../UI/UserInterface.py" line="2376" /> <source>Switch the input focus to the embedded Help Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2386" /> + <location filename="../UI/UserInterface.py" line="2378" /> <source><b>Help Viewer</b><p>This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2399" /> + <location filename="../UI/UserInterface.py" line="2391" /> <source>What's This?</source> <translation>Bu nedir?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2401" /> + <location filename="../UI/UserInterface.py" line="2393" /> <source>&What's This?</source> <translation>Bu &Nedir?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2402" /> + <location filename="../UI/UserInterface.py" line="2394" /> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404" /> + <location filename="../UI/UserInterface.py" line="2396" /> <source>Context sensitive help</source> <translation>Duyarlı yardım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2405" /> + <location filename="../UI/UserInterface.py" line="2397" /> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Duyarlı yardım içeriğini görüntüle</b><p>Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2417" /> + <location filename="../UI/UserInterface.py" line="2409" /> <source>Helpviewer</source> <translation>Yardımgösterici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419" /> + <location filename="../UI/UserInterface.py" line="2411" /> <source>&Helpviewer...</source> <translation>&Yardım Gösterici...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2420" /> + <location filename="../UI/UserInterface.py" line="2412" /> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2422" /> + <location filename="../UI/UserInterface.py" line="2414" /> <source>Open the helpviewer window</source> <translation>Yardımgösterici penceresini aç</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2424" /> + <location filename="../UI/UserInterface.py" line="2416" /> <source><b>Helpviewer</b><p>Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2443" /> + <location filename="../UI/UserInterface.py" line="2435" /> <source>Show Versions</source> <translation>Sürümü Göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2444" /> + <location filename="../UI/UserInterface.py" line="2436" /> <source>Show &Versions</source> <translation>Sürümü G&öster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446" /> + <location filename="../UI/UserInterface.py" line="2438" /> <source>Display version information</source> <translation>Sürüm bilgisini görüntüle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2448" /> + <location filename="../UI/UserInterface.py" line="2440" /> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Sürümleri Göster</b><p>Sürüm bilgisini göster.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2458" /> - <location filename="../UI/UserInterface.py" line="2456" /> - <source>Check for Updates</source> - <translation>Güncellemeleri kontrol et</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2457" /> - <source>Check for &Updates...</source> - <translation>G&üncellemeleri kontrol et...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2459" /> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2467" /> - <source>Show downloadable versions</source> - <translation>Yüklenebilir sürümleri göster</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2468" /> - <source>Show &downloadable versions...</source> - <translation>Yüklenebilir sürümler&i göster...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2471" /> - <source>Show the versions available for download</source> - <translation>İndirmek için mümkün olan sürümü göster</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2472" /> - <source><b>Show downloadable versions...</b><p>Shows the eric versions available for download from the internet.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2485" /> - <location filename="../UI/UserInterface.py" line="2482" /> + <location filename="../UI/UserInterface.py" line="2451" /> + <location filename="../UI/UserInterface.py" line="2448" /> <source>Show Error Log</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2483" /> + <location filename="../UI/UserInterface.py" line="2449" /> <source>Show Error &Log...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2452" /> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2460" /> + <source>Show Install Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2461" /> + <source>Show Install &Info...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2463" /> + <source>Show Installation Information</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2465" /> + <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4083" /> + <location filename="../UI/UserInterface.py" line="2474" /> + <source>Report Bug</source> + <translation>Hata Raporu</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2475" /> + <source>Report &Bug...</source> + <translation>Hata &Raporu...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2477" /> + <source>Report a bug</source> + <translation>Bir hata rapor et</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2478" /> + <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2486" /> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2494" /> - <source>Show Install Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2495" /> - <source>Show Install &Info...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2497" /> - <source>Show Installation Information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2499" /> - <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4120" /> - <location filename="../UI/UserInterface.py" line="2508" /> - <source>Report Bug</source> - <translation>Hata Raporu</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2509" /> - <source>Report &Bug...</source> - <translation>Hata &Raporu...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2511" /> - <source>Report a bug</source> - <translation>Bir hata rapor et</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512" /> - <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> - <translation type="unfinished" /> + <source>Request Feature</source> + <translation>İhtiyaç Duyulan Özellikler</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2487" /> + <source>Request &Feature...</source> + <translation>İhtiyaç Duyulan Özellikler &F...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2489" /> + <source>Send a feature request</source> + <translation>ihtiyaç duyuulan bir özelliği gönder</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2491" /> + <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606" /> + <location filename="../UI/UserInterface.py" line="3583" /> + <location filename="../UI/UserInterface.py" line="2501" /> + <source>Unittest</source> + <translation>Birimtest</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2503" /> + <source>&Unittest...</source> + <translation>B&irimtest...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2505" /> + <source>Start unittest dialog</source> + <translation>Birimtest diyaloğunu başlat</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506" /> + <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2515" /> + <source>Unittest Restart</source> + <translation>Birimtestini yeniden başlat</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2517" /> + <source>&Restart Unittest...</source> + <translation>Bi&rimtestini Yeniden Başlat...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2519" /> + <source>Restart last unittest</source> + <translation>En son birimtesti yeniden başlat</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2520" /> - <source>Request Feature</source> - <translation>İhtiyaç Duyulan Özellikler</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2521" /> - <source>Request &Feature...</source> - <translation>İhtiyaç Duyulan Özellikler &F...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2523" /> - <source>Send a feature request</source> - <translation>ihtiyaç duyuulan bir özelliği gönder</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2525" /> - <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3643" /> - <location filename="../UI/UserInterface.py" line="3620" /> + <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2529" /> + <source>Unittest Rerun Failed</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2531" /> + <source>Rerun Failed Tests...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2533" /> + <source>Rerun failed tests of the last run</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2535" /> - <source>Unittest</source> - <translation>Birimtest</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2537" /> - <source>&Unittest...</source> - <translation>B&irimtest...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2539" /> - <source>Start unittest dialog</source> - <translation>Birimtest diyaloğunu başlat</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2540" /> - <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> - <translation type="unfinished" /> + <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2545" /> + <source>Unittest Script</source> + <translation>Betik Birimtesti</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2547" /> + <source>Unittest &Script...</source> + <translation>Betik Birimte&sti...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2549" /> - <source>Unittest Restart</source> - <translation>Birimtestini yeniden başlat</translation> + <source>Run unittest with current script</source> + <translation>Geçerli betikle test arabirimini çalıştır</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2551" /> - <source>&Restart Unittest...</source> - <translation>Bi&rimtestini Yeniden Başlat...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2553" /> - <source>Restart last unittest</source> - <translation>En son birimtesti yeniden başlat</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2554" /> - <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2563" /> - <source>Unittest Rerun Failed</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2565" /> - <source>Rerun Failed Tests...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2567" /> - <source>Rerun failed tests of the last run</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2569" /> - <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2579" /> - <source>Unittest Script</source> - <translation>Betik Birimtesti</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2581" /> - <source>Unittest &Script...</source> - <translation>Betik Birimte&sti...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2583" /> - <source>Run unittest with current script</source> - <translation>Geçerli betikle test arabirimini çalıştır</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2585" /> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2594" /> + <location filename="../UI/UserInterface.py" line="2560" /> <source>Unittest Project</source> <translation>Proje Birimtesti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596" /> + <location filename="../UI/UserInterface.py" line="2562" /> <source>Unittest &Project...</source> <translation>Birimtest &Proje...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2598" /> + <location filename="../UI/UserInterface.py" line="2564" /> <source>Run unittest with current project</source> <translation>Geçerli proje ile test arabirimini çalıştır</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600" /> + <location filename="../UI/UserInterface.py" line="2566" /> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2621" /> + <location filename="../UI/UserInterface.py" line="2587" /> <source>Qt-Designer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2623" /> + <location filename="../UI/UserInterface.py" line="2589" /> <source>Qt-&Designer...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2625" /> + <location filename="../UI/UserInterface.py" line="2591" /> <source>Start Qt-Designer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2626" /> + <location filename="../UI/UserInterface.py" line="2592" /> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2613" /> + <source>Qt-Linguist</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2615" /> + <source>Qt-&Linguist...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2617" /> + <source>Start Qt-Linguist</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2618" /> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2628" /> + <source>UI Previewer</source> + <translation>UI Öngörünümü</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2630" /> + <source>&UI Previewer...</source> + <translation>&UI Öngörünümü...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2632" /> + <source>Start the UI Previewer</source> + <translation>UI Öngörünümünü Başlat</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2633" /> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation><b>UI Öngörünümü</b><p>UI Öngörünümünü Başlat.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2641" /> + <source>Translations Previewer</source> + <translation>Çevirilerin Öngörünümleri</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2643" /> + <source>&Translations Previewer...</source> + <translation>Çevirilerin &Öngörünümleri...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2645" /> + <source>Start the Translations Previewer</source> + <translation>Çevirilerin Öngörünümlerini Başlat</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2647" /> - <source>Qt-Linguist</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2649" /> - <source>Qt-&Linguist...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2651" /> - <source>Start Qt-Linguist</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2652" /> - <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2662" /> - <source>UI Previewer</source> - <translation>UI Öngörünümü</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2664" /> - <source>&UI Previewer...</source> - <translation>&UI Öngörünümü...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2666" /> - <source>Start the UI Previewer</source> - <translation>UI Öngörünümünü Başlat</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2667" /> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation><b>UI Öngörünümü</b><p>UI Öngörünümünü Başlat.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2675" /> - <source>Translations Previewer</source> - <translation>Çevirilerin Öngörünümleri</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2677" /> - <source>&Translations Previewer...</source> - <translation>Çevirilerin &Öngörünümleri...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2679" /> - <source>Start the Translations Previewer</source> - <translation>Çevirilerin Öngörünümlerini Başlat</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2681" /> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Çeviri Öngörünümü</b><p>Çeviri Öngörünümünü Başlat.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2689" /> + <location filename="../UI/UserInterface.py" line="2655" /> <source>Compare Files</source> <translation>Dosyaları Karşılaştır</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691" /> + <location filename="../UI/UserInterface.py" line="2657" /> <source>&Compare Files...</source> <translation>D&osyaları Karşılaştır...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2706" /> - <location filename="../UI/UserInterface.py" line="2693" /> + <location filename="../UI/UserInterface.py" line="2672" /> + <location filename="../UI/UserInterface.py" line="2659" /> <source>Compare two files</source> <translation>İki dosyayı karşılaştır</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2694" /> + <location filename="../UI/UserInterface.py" line="2660" /> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Dosyaları Karşılaştır</b><p>İki dosyayı karşılaştırmak için diyalog aç.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2702" /> + <location filename="../UI/UserInterface.py" line="2668" /> <source>Compare Files side by side</source> <translation>Dosyaları yan yana karşılaştır</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2704" /> + <location filename="../UI/UserInterface.py" line="2670" /> <source>Compare &Files side by side...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2707" /> + <location filename="../UI/UserInterface.py" line="2673" /> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Dosyaları biribir karşılaştır</b><p>İki dosyayı karşılaştırmak için bir diyalog aç ve sonuçları yan yana göster.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2716" /> + <location filename="../UI/UserInterface.py" line="2682" /> <source>SQL Browser</source> <translation>SQL Gözatıcısı</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2718" /> + <location filename="../UI/UserInterface.py" line="2684" /> <source>SQL &Browser...</source> <translation>SQL &Gözatıcısı...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2720" /> + <location filename="../UI/UserInterface.py" line="2686" /> <source>Browse a SQL database</source> <translation>Bir SQL veritabanına gözat</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2721" /> + <location filename="../UI/UserInterface.py" line="2687" /> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL Gözatıcısı</b><p>Bir SQL veritabanına gözat.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2733" /> - <location filename="../UI/UserInterface.py" line="2729" /> + <location filename="../UI/UserInterface.py" line="2699" /> + <location filename="../UI/UserInterface.py" line="2695" /> <source>Mini Editor</source> <translation>Mini Düzenleyici</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2731" /> + <location filename="../UI/UserInterface.py" line="2697" /> <source>Mini &Editor...</source> <translation>Mini &Düzenleyici...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2734" /> + <location filename="../UI/UserInterface.py" line="2700" /> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Düzenleyici</b><p>Basit bir düzenleyci ile bir diyalog açılır.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2742" /> + <location filename="../UI/UserInterface.py" line="2708" /> <source>Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2744" /> + <location filename="../UI/UserInterface.py" line="2710" /> <source>&Hex Editor...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2746" /> + <location filename="../UI/UserInterface.py" line="2712" /> <source>Start the eric Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2748" /> + <location filename="../UI/UserInterface.py" line="2714" /> <source><b>Hex Editor</b><p>Starts the eric Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2723" /> + <source>eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2725" /> + <source>eric &Web Browser...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2727" /> + <source>Start the eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2729" /> + <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2737" /> + <source>Icon Editor</source> + <translation>İkon Düzenleyici</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2739" /> + <source>&Icon Editor...</source> + <translation>&İkon Düzenleyici...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2741" /> + <source>Start the eric Icon Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2743" /> + <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2751" /> + <source>Snapshot</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2753" /> + <source>&Snapshot...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2755" /> + <source>Take snapshots of a screen region</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757" /> - <source>eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2759" /> - <source>eric &Web Browser...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2761" /> - <source>Start the eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2763" /> - <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2771" /> - <source>Icon Editor</source> - <translation>İkon Düzenleyici</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2773" /> - <source>&Icon Editor...</source> - <translation>&İkon Düzenleyici...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2775" /> - <source>Start the eric Icon Editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2777" /> - <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2785" /> - <source>Snapshot</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2787" /> - <source>&Snapshot...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2789" /> - <source>Take snapshots of a screen region</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2791" /> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2766" /> + <source>Preferences</source> + <translation>Seçenekler</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768" /> + <source>&Preferences...</source> + <translation>&Seçenekler...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2770" /> + <source>Set the prefered configuration</source> + <translation>tercih edilen ayarları yapınız</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2772" /> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation><b>Tercihler</b><p>Uygulamanın ayarlama maddelerini tercih ettiğiniz değerlerle ayarlayınız.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782" /> + <source>Export Preferences</source> + <translation>Seçenekleri Dışa Aktar</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2784" /> + <source>E&xport Preferences...</source> + <translation>Tercihleri Dı&şa Aktar...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2786" /> + <source>Export the current configuration</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2788" /> + <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2796" /> + <source>Import Preferences</source> + <translation>Seçenekleri İçe Aktar</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2798" /> + <source>I&mport Preferences...</source> + <translation>Tercihleri İ&çeri Aktar...</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2800" /> - <source>Preferences</source> - <translation>Seçenekler</translation> + <source>Import a previously exported configuration</source> + <translation>daha önce dışa aktarılan ayrlamaları içe aktar</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2802" /> - <source>&Preferences...</source> - <translation>&Seçenekler...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2804" /> - <source>Set the prefered configuration</source> - <translation>tercih edilen ayarları yapınız</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2806" /> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> - <translation><b>Tercihler</b><p>Uygulamanın ayarlama maddelerini tercih ettiğiniz değerlerle ayarlayınız.</p></translation> + <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2810" /> + <source>Export Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2812" /> + <source>Export Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2814" /> + <source>Export the current theme</source> + <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2816" /> - <source>Export Preferences</source> - <translation>Seçenekleri Dışa Aktar</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2818" /> - <source>E&xport Preferences...</source> - <translation>Tercihleri Dı&şa Aktar...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2820" /> - <source>Export the current configuration</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2822" /> - <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2824" /> + <source>Import Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2826" /> + <source>Import Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2828" /> + <source>Import a previously exported theme</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2830" /> - <source>Import Preferences</source> - <translation>Seçenekleri İçe Aktar</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2832" /> - <source>I&mport Preferences...</source> - <translation>Tercihleri İ&çeri Aktar...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2834" /> - <source>Import a previously exported configuration</source> - <translation>daha önce dışa aktarılan ayrlamaları içe aktar</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2836" /> - <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2844" /> - <source>Export Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2846" /> - <source>Export Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2848" /> - <source>Export the current theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2850" /> - <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2858" /> - <source>Import Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2860" /> - <source>Import Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2862" /> - <source>Import a previously exported theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2864" /> <source><b>Import Theme</b><p>Import a previously exported theme.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2872" /> + <location filename="../UI/UserInterface.py" line="2838" /> <source>Reload APIs</source> <translation>API'leri yeniden yükle</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2839" /> + <source>Reload &APIs</source> + <translation>&API'leri yeniden yükle</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2841" /> + <source>Reload the API information</source> + <translation>API bilgisini yeniden yükle</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2843" /> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2855" /> + <location filename="../UI/UserInterface.py" line="2851" /> + <source>Show external tools</source> + <translation>Harici araçları göster</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2853" /> + <source>Show external &tools</source> + <translation>Karak&ter tablosunu göster</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857" /> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2867" /> + <source>View Profiles</source> + <translation>Görünüm Kesiti</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2869" /> + <source>&View Profiles...</source> + <translation>&Görünüm Kesiti...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2871" /> + <source>Configure view profiles</source> + <translation>Görünüm kesitlerini ayarla</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2873" /> - <source>Reload &APIs</source> - <translation>&API'leri yeniden yükle</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2875" /> - <source>Reload the API information</source> - <translation>API bilgisini yeniden yükle</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2877" /> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> - <translation type="unfinished" /> + <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2884" /> + <source>Toolbars</source> + <translation>Araççubuğu</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2886" /> + <source>Tool&bars...</source> + <translation>Araççu&buğu...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2888" /> + <source>Configure toolbars</source> + <translation>Araççubuğunu ayarla</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2889" /> - <location filename="../UI/UserInterface.py" line="2885" /> - <source>Show external tools</source> - <translation>Harici araçları göster</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887" /> - <source>Show external &tools</source> - <translation>Karak&ter tablosunu göster</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2891" /> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> - <translation type="unfinished" /> + <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2899" /> + <source>Keyboard Shortcuts</source> + <translation>Klavye Kısayolları</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2901" /> - <source>View Profiles</source> - <translation>Görünüm Kesiti</translation> + <source>Keyboard &Shortcuts...</source> + <translation>Klavye Kı&sayolları...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2903" /> - <source>&View Profiles...</source> - <translation>&Görünüm Kesiti...</translation> + <source>Set the keyboard shortcuts</source> + <translation>Klavye kısayollarını ayarla</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2905" /> - <source>Configure view profiles</source> - <translation>Görünüm kesitlerini ayarla</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2907" /> - <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> - <translation type="unfinished" /> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756" /> + <location filename="../UI/UserInterface.py" line="6738" /> + <location filename="../UI/UserInterface.py" line="2914" /> + <source>Export Keyboard Shortcuts</source> + <translation>Kılavye Kısa Yollarını Dışa Aktar</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2916" /> + <source>&Export Keyboard Shortcuts...</source> + <translation>Kılavye Kısa Yo&llarını Dışa Aktar...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2918" /> - <source>Toolbars</source> - <translation>Araççubuğu</translation> + <source>Export the keyboard shortcuts</source> + <translation>Kılavye kısa yollarını dışa aktar</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2920" /> - <source>Tool&bars...</source> - <translation>Araççu&buğu...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2922" /> - <source>Configure toolbars</source> - <translation>Araççubuğunu ayarla</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2923" /> - <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2933" /> - <source>Keyboard Shortcuts</source> - <translation>Klavye Kısayolları</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2935" /> - <source>Keyboard &Shortcuts...</source> - <translation>Klavye Kı&sayolları...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2937" /> - <source>Set the keyboard shortcuts</source> - <translation>Klavye kısayollarını ayarla</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2939" /> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6698" /> - <location filename="../UI/UserInterface.py" line="6680" /> - <location filename="../UI/UserInterface.py" line="2948" /> - <source>Export Keyboard Shortcuts</source> - <translation>Kılavye Kısa Yollarını Dışa Aktar</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2950" /> - <source>&Export Keyboard Shortcuts...</source> - <translation>Kılavye Kısa Yo&llarını Dışa Aktar...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2952" /> - <source>Export the keyboard shortcuts</source> - <translation>Kılavye kısa yollarını dışa aktar</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2954" /> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6715" /> - <location filename="../UI/UserInterface.py" line="2962" /> + <location filename="../UI/UserInterface.py" line="6773" /> + <location filename="../UI/UserInterface.py" line="2928" /> <source>Import Keyboard Shortcuts</source> <translation>Klavye kısayollarını İçe Aktar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2964" /> + <location filename="../UI/UserInterface.py" line="2930" /> <source>&Import Keyboard Shortcuts...</source> <translation>Klavye K&ısayollarını İçe Aktar...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2966" /> + <location filename="../UI/UserInterface.py" line="2932" /> <source>Import the keyboard shortcuts</source> <translation>Klavye kısayolları içeri aktarılıyor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2968" /> + <location filename="../UI/UserInterface.py" line="2934" /> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2977" /> + <location filename="../UI/UserInterface.py" line="2943" /> <source>Manage SSL Certificates</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2979" /> + <location filename="../UI/UserInterface.py" line="2945" /> <source>Manage SSL Certificates...</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2947" /> + <source>Manage the saved SSL certificates</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2949" /> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2959" /> + <source>Edit Message Filters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2961" /> + <source>Edit Message Filters...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2963" /> + <source>Edit the message filters used to suppress unwanted messages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2965" /> + <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="2981" /> - <source>Manage the saved SSL certificates</source> - <translation type="unfinished" /> + <location filename="../UI/UserInterface.py" line="2978" /> + <location filename="../UI/UserInterface.py" line="2976" /> + <source>Clear private data</source> + <translation type="unfinished">Özel verileri temizle</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2983" /> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation type="unfinished" /> - </message> - <message> + <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" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2994" /> <location filename="../UI/UserInterface.py" line="2993" /> - <source>Edit Message Filters</source> - <translation type="unfinished" /> + <source>Activate current editor</source> + <translation>Geçerli düzenleyiciyi aktif yap</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2995" /> - <source>Edit Message Filters...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2997" /> - <source>Edit the message filters used to suppress unwanted messages</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2999" /> - <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3015" /> - <location filename="../UI/UserInterface.py" line="3012" /> - <location filename="../UI/UserInterface.py" line="3010" /> - <source>Clear private data</source> - <translation type="unfinished">Özel verileri temizle</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3017" /> - <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" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3028" /> - <location filename="../UI/UserInterface.py" line="3027" /> - <source>Activate current editor</source> - <translation>Geçerli düzenleyiciyi aktif yap</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3029" /> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3038" /> - <location filename="../UI/UserInterface.py" line="3037" /> + <location filename="../UI/UserInterface.py" line="3004" /> + <location filename="../UI/UserInterface.py" line="3003" /> <source>Show next</source> <translation>Sonrakini göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3039" /> + <location filename="../UI/UserInterface.py" line="3005" /> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="3013" /> + <location filename="../UI/UserInterface.py" line="3012" /> + <source>Show previous</source> + <translation>Öncekini göster</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3014" /> + <source>Shift+Ctrl+Alt+Tab</source> + <translation>Shift+Ctrl+Alt+Tab</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3022" /> + <location filename="../UI/UserInterface.py" line="3021" /> + <source>Switch between tabs</source> + <translation>Sekmeler arasında değiştir</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3023" /> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3030" /> + <source>Plugin Infos</source> + <translation>Eklenti Bilgisi</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3032" /> + <source>&Plugin Infos...</source> + <translation>Eklenti Bil&gisi...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3033" /> + <source>Show Plugin Infos</source> + <translation>Eklenti Bilgisini Göster</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3034" /> + <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="3047" /> - <location filename="../UI/UserInterface.py" line="3046" /> - <source>Show previous</source> - <translation>Öncekini göster</translation> + <location filename="../UI/UserInterface.py" line="3043" /> + <source>Install Plugins</source> + <translation>Eklenti Kur</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3045" /> + <source>&Install Plugins...</source> + <translation>Ekle&nti Kur...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3048" /> - <source>Shift+Ctrl+Alt+Tab</source> - <translation>Shift+Ctrl+Alt+Tab</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3056" /> - <location filename="../UI/UserInterface.py" line="3055" /> - <source>Switch between tabs</source> - <translation>Sekmeler arasında değiştir</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3057" /> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3064" /> - <source>Plugin Infos</source> - <translation>Eklenti Bilgisi</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3066" /> - <source>&Plugin Infos...</source> - <translation>Eklenti Bil&gisi...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3067" /> - <source>Show Plugin Infos</source> - <translation>Eklenti Bilgisini Göster</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3068" /> - <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="3081" /> - <location filename="../UI/UserInterface.py" line="3077" /> - <source>Install Plugins</source> - <translation>Eklenti Kur</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3079" /> - <source>&Install Plugins...</source> - <translation>Ekle&nti Kur...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3082" /> <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="3094" /> - <location filename="../UI/UserInterface.py" line="3090" /> + <location filename="../UI/UserInterface.py" line="3060" /> + <location filename="../UI/UserInterface.py" line="3056" /> <source>Uninstall Plugin</source> <translation>Eklenti Kaldır</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3092" /> + <location filename="../UI/UserInterface.py" line="3058" /> <source>&Uninstall Plugin...</source> <translation>Ekle&nti Kaldır...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3095" /> + <location filename="../UI/UserInterface.py" line="3061" /> <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="3105" /> + <location filename="../UI/UserInterface.py" line="3071" /> <source>Plugin &Repository...</source> <translation>Eklenti Hav&uzu...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3107" /> + <location filename="../UI/UserInterface.py" line="3073" /> <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="3109" /> + <location filename="../UI/UserInterface.py" line="3075" /> <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="3101" /> + <location filename="../UI/UserInterface.py" line="3100" /> + <source>Qt5 Documentation</source> + <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3103" /> + <source>Open Qt5 Documentation</source> + <translation type="unfinished">QT4 Belgelerini Aç {5 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3104" /> + <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3116" /> + <location filename="../UI/UserInterface.py" line="3115" /> + <source>Qt6 Documentation</source> + <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3118" /> + <source>Open Qt6 Documentation</source> + <translation type="unfinished">QT4 Belgelerini Aç {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3119" /> + <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3131" /> + <location filename="../UI/UserInterface.py" line="3130" /> + <source>PyQt5 Documentation</source> + <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3133" /> + <source>Open PyQt5 Documentation</source> + <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="3135" /> - <location filename="../UI/UserInterface.py" line="3134" /> - <source>Qt5 Documentation</source> - <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3137" /> - <source>Open Qt5 Documentation</source> - <translation type="unfinished">QT4 Belgelerini Aç {5 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3138" /> - <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> + <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3148" /> + <location filename="../UI/UserInterface.py" line="3147" /> + <source>PyQt6 Documentation</source> + <translation type="unfinished">PyQt4 Belgeleri {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3150" /> - <location filename="../UI/UserInterface.py" line="3149" /> - <source>Qt6 Documentation</source> - <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation> + <source>Open PyQt6 Documentation</source> + <translation type="unfinished">PyQt4 Begelerini aç {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3152" /> - <source>Open Qt6 Documentation</source> - <translation type="unfinished">QT4 Belgelerini Aç {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3153" /> - <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3165" /> - <location filename="../UI/UserInterface.py" line="3164" /> - <source>PyQt5 Documentation</source> - <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3167" /> - <source>Open PyQt5 Documentation</source> - <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation> - </message> - <message> + <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3170" /> <location filename="../UI/UserInterface.py" line="3169" /> - <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3182" /> - <location filename="../UI/UserInterface.py" line="3181" /> - <source>PyQt6 Documentation</source> - <translation type="unfinished">PyQt4 Belgeleri {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3184" /> - <source>Open PyQt6 Documentation</source> - <translation type="unfinished">PyQt4 Begelerini aç {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3186" /> - <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3204" /> - <location filename="../UI/UserInterface.py" line="3203" /> <source>Python 3 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3206" /> + <location filename="../UI/UserInterface.py" line="3172" /> <source>Open Python 3 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3208" /> + <location filename="../UI/UserInterface.py" line="3174" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3226" /> - <location filename="../UI/UserInterface.py" line="3225" /> + <location filename="../UI/UserInterface.py" line="3192" /> + <location filename="../UI/UserInterface.py" line="3191" /> <source>eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3228" /> + <location filename="../UI/UserInterface.py" line="3194" /> <source>Open eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3230" /> + <location filename="../UI/UserInterface.py" line="3196" /> <source><b>eric API Documentation</b><p>Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3247" /> - <location filename="../UI/UserInterface.py" line="3246" /> + <location filename="../UI/UserInterface.py" line="3213" /> + <location filename="../UI/UserInterface.py" line="3212" /> <source>PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3249" /> + <location filename="../UI/UserInterface.py" line="3215" /> <source>Open PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3251" /> + <location filename="../UI/UserInterface.py" line="3217" /> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3267" /> - <location filename="../UI/UserInterface.py" line="3266" /> + <location filename="../UI/UserInterface.py" line="3233" /> + <location filename="../UI/UserInterface.py" line="3232" /> <source>PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3269" /> + <location filename="../UI/UserInterface.py" line="3235" /> <source>Open PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3271" /> + <location filename="../UI/UserInterface.py" line="3237" /> <source><b>PySide6 Documentation</b><p>Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3373" /> + <location filename="../UI/UserInterface.py" line="3339" /> <source>E&xtras</source> <translation>İla&veler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3383" /> + <location filename="../UI/UserInterface.py" line="3349" /> <source>Wi&zards</source> <translation>Sihirba&z</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3402" /> + <location filename="../UI/UserInterface.py" line="3368" /> <source>P&lugins</source> <translation>Ek&lentiler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3412" /> + <location filename="../UI/UserInterface.py" line="3378" /> <source>Configure...</source> <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3421" /> + <location filename="../UI/UserInterface.py" line="3387" /> <source>&Unittest</source> <translation>Bir&imtest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3438" /> + <location filename="../UI/UserInterface.py" line="3404" /> <source>Select Tool Group</source> <translation>Araç Grubunu Seç</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3449" /> + <location filename="../UI/UserInterface.py" line="3415" /> <source>Se&ttings</source> <translation>Ayar&lar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482" /> + <location filename="../UI/UserInterface.py" line="3448" /> <source>&Window</source> <translation>&Pencere</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3491" /> + <location filename="../UI/UserInterface.py" line="3457" /> <source>&Windows</source> <translation type="unfinished">&Pencereler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3496" /> + <location filename="../UI/UserInterface.py" line="3462" /> <source>Central Park</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3500" /> + <location filename="../UI/UserInterface.py" line="3466" /> <source>Left Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3517" /> + <location filename="../UI/UserInterface.py" line="3483" /> <source>Right Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3541" /> + <location filename="../UI/UserInterface.py" line="3507" /> <source>Bottom Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3549" /> + <location filename="../UI/UserInterface.py" line="3515" /> <source>Plug-ins</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3556" /> + <location filename="../UI/UserInterface.py" line="3522" /> <source>&Toolbars</source> <translation>&Araççubuğu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3569" /> + <location filename="../UI/UserInterface.py" line="3535" /> <source>&Help</source> <translation>&Yardım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3642" /> - <location filename="../UI/UserInterface.py" line="3619" /> + <location filename="../UI/UserInterface.py" line="3605" /> + <location filename="../UI/UserInterface.py" line="3582" /> <source>Tools</source> <translation>Araçlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3644" /> - <location filename="../UI/UserInterface.py" line="3623" /> + <location filename="../UI/UserInterface.py" line="3607" /> + <location filename="../UI/UserInterface.py" line="3586" /> <source>Settings</source> <translation>Ayarlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5541" /> - <location filename="../UI/UserInterface.py" line="3645" /> - <location filename="../UI/UserInterface.py" line="3624" /> + <location filename="../UI/UserInterface.py" line="5600" /> + <location filename="../UI/UserInterface.py" line="3608" /> + <location filename="../UI/UserInterface.py" line="3587" /> <source>Help</source> <translation>Yardım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3646" /> - <location filename="../UI/UserInterface.py" line="3625" /> + <location filename="../UI/UserInterface.py" line="3609" /> + <location filename="../UI/UserInterface.py" line="3588" /> <source>Profiles</source> <translation>Kesitler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3647" /> - <location filename="../UI/UserInterface.py" line="3626" /> + <location filename="../UI/UserInterface.py" line="3610" /> + <location filename="../UI/UserInterface.py" line="3589" /> <source>Plugins</source> <translation>Eklentiler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811" /> + <location filename="../UI/UserInterface.py" line="3774" /> <source><p>This part of the status bar displays the current editors language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3818" /> + <location filename="../UI/UserInterface.py" line="3781" /> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3825" /> + <location filename="../UI/UserInterface.py" line="3788" /> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3832" /> + <location filename="../UI/UserInterface.py" line="3795" /> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3839" /> + <location filename="../UI/UserInterface.py" line="3802" /> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3846" /> + <location filename="../UI/UserInterface.py" line="3809" /> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3857" /> + <location filename="../UI/UserInterface.py" line="3820" /> <source><p>This part of the status bar allows zooming the current editor or shell.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3922" /> - <location filename="../UI/UserInterface.py" line="3882" /> + <location filename="../UI/UserInterface.py" line="3885" /> + <location filename="../UI/UserInterface.py" line="3845" /> <source>External Tools/{0}</source> <translation>Harici Araçlar/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4028" /> + <location filename="../UI/UserInterface.py" line="3991" /> <source><h2>Version Numbers</h2><table></source> <translation type="unfinished"><h3>Sürüm Numaraları</h3><table> {2>?} {2>?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4082" /> + <location filename="../UI/UserInterface.py" line="4045" /> <source>Desktop</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4085" /> + <location filename="../UI/UserInterface.py" line="4048" /> <source>Session Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7778" /> - <location filename="../UI/UserInterface.py" line="4087" /> + <location filename="../UI/UserInterface.py" line="4050" /> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4121" /> + <location filename="../UI/UserInterface.py" line="4084" /> <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="4432" /> + <location filename="../UI/UserInterface.py" line="4395" /> <source>Restart application</source> <translation>Uygulmayı yeniden başlat</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4433" /> + <location filename="../UI/UserInterface.py" line="4396" /> <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="4420" /> + <source>Upgrade PyQt</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4421" /> + <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="4467" /> + <location filename="../UI/UserInterface.py" line="4443" /> + <source>Upgrade Eric</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4444" /> + <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4468" /> + <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time. + + Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4526" /> <source>&Builtin Tools</source> <translation>Ya&pılandırma Araçları</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4484" /> + <location filename="../UI/UserInterface.py" line="4543" /> <source>&Plugin Tools</source> <translation>Eklen&ti Araçları</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4487" /> + <location filename="../UI/UserInterface.py" line="4546" /> <source>&User Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4513" /> + <location filename="../UI/UserInterface.py" line="4572" /> <source>Configure Tool Groups ...</source> <translation>Alet Grupları Ayarlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517" /> + <location filename="../UI/UserInterface.py" line="4576" /> <source>Configure current Tool Group ...</source> <translation>Geçerli alet grubunu ayarla...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4558" /> - <location filename="../UI/UserInterface.py" line="4538" /> + <location filename="../UI/UserInterface.py" line="4617" /> + <location filename="../UI/UserInterface.py" line="4597" /> <source>No User Tools Configured</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4632" /> + <location filename="../UI/UserInterface.py" line="4691" /> <source>&Show all</source> <translation>Hepsini Gö&ster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4634" /> + <location filename="../UI/UserInterface.py" line="4693" /> <source>&Hide all</source> <translation>&Hepsini gizle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5669" /> - <location filename="../UI/UserInterface.py" line="5659" /> - <location filename="../UI/UserInterface.py" line="5612" /> - <location filename="../UI/UserInterface.py" line="5603" /> - <location filename="../UI/UserInterface.py" line="5442" /> - <location filename="../UI/UserInterface.py" line="5433" /> - <location filename="../UI/UserInterface.py" line="5372" /> - <location filename="../UI/UserInterface.py" line="5363" /> + <location filename="../UI/UserInterface.py" line="5728" /> + <location filename="../UI/UserInterface.py" line="5718" /> + <location filename="../UI/UserInterface.py" line="5671" /> + <location filename="../UI/UserInterface.py" line="5662" /> + <location filename="../UI/UserInterface.py" line="5501" /> + <location filename="../UI/UserInterface.py" line="5492" /> + <location filename="../UI/UserInterface.py" line="5431" /> + <location filename="../UI/UserInterface.py" line="5422" /> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5670" /> - <location filename="../UI/UserInterface.py" line="5660" /> - <location filename="../UI/UserInterface.py" line="5613" /> - <location filename="../UI/UserInterface.py" line="5604" /> - <location filename="../UI/UserInterface.py" line="5443" /> - <location filename="../UI/UserInterface.py" line="5434" /> - <location filename="../UI/UserInterface.py" line="5373" /> - <location filename="../UI/UserInterface.py" line="5364" /> + <location filename="../UI/UserInterface.py" line="5729" /> + <location filename="../UI/UserInterface.py" line="5719" /> + <location filename="../UI/UserInterface.py" line="5672" /> + <location filename="../UI/UserInterface.py" line="5663" /> + <location filename="../UI/UserInterface.py" line="5502" /> + <location filename="../UI/UserInterface.py" line="5493" /> + <location filename="../UI/UserInterface.py" line="5432" /> + <location filename="../UI/UserInterface.py" line="5423" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5877" /> - <location filename="../UI/UserInterface.py" line="5790" /> - <location filename="../UI/UserInterface.py" line="5705" /> - <location filename="../UI/UserInterface.py" line="5682" /> - <location filename="../UI/UserInterface.py" line="5625" /> - <location filename="../UI/UserInterface.py" line="5575" /> - <location filename="../UI/UserInterface.py" line="5555" /> - <location filename="../UI/UserInterface.py" line="5517" /> - <location filename="../UI/UserInterface.py" line="5508" /> - <location filename="../UI/UserInterface.py" line="5473" /> - <location filename="../UI/UserInterface.py" line="5464" /> - <location filename="../UI/UserInterface.py" line="5403" /> - <location filename="../UI/UserInterface.py" line="5394" /> + <location filename="../UI/UserInterface.py" line="5936" /> + <location filename="../UI/UserInterface.py" line="5849" /> + <location filename="../UI/UserInterface.py" line="5764" /> + <location filename="../UI/UserInterface.py" line="5741" /> + <location filename="../UI/UserInterface.py" line="5684" /> + <location filename="../UI/UserInterface.py" line="5634" /> + <location filename="../UI/UserInterface.py" line="5614" /> + <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5567" /> + <location filename="../UI/UserInterface.py" line="5532" /> + <location filename="../UI/UserInterface.py" line="5523" /> + <location filename="../UI/UserInterface.py" line="5462" /> + <location filename="../UI/UserInterface.py" line="5453" /> <source>Process Generation Error</source> <translation>İşlem Üretecinde Hata</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5395" /> + <location filename="../UI/UserInterface.py" line="5454" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5404" /> + <location filename="../UI/UserInterface.py" line="5463" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5465" /> + <location filename="../UI/UserInterface.py" line="5524" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5474" /> + <location filename="../UI/UserInterface.py" line="5533" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5509" /> + <location filename="../UI/UserInterface.py" line="5568" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5518" /> + <location filename="../UI/UserInterface.py" line="5577" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5542" /> + <location filename="../UI/UserInterface.py" line="5601" /> <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="5556" /> + <location filename="../UI/UserInterface.py" line="5615" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5635" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5626" /> + <location filename="../UI/UserInterface.py" line="5685" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5683" /> + <location filename="../UI/UserInterface.py" line="5742" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5706" /> + <location filename="../UI/UserInterface.py" line="5765" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5791" /> + <location filename="../UI/UserInterface.py" line="5850" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5822" /> - <location filename="../UI/UserInterface.py" line="5813" /> + <location filename="../UI/UserInterface.py" line="5881" /> + <location filename="../UI/UserInterface.py" line="5872" /> <source>External Tools</source> <translation>Harici Araçlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5814" /> + <location filename="../UI/UserInterface.py" line="5873" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5823" /> + <location filename="../UI/UserInterface.py" line="5882" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5859" /> + <location filename="../UI/UserInterface.py" line="5918" /> <source>Starting process '{0} {1}'. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5878" /> + <location filename="../UI/UserInterface.py" line="5937" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5953" /> + <location filename="../UI/UserInterface.py" line="6012" /> <source>Process '{0}' has exited. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6225" /> - <location filename="../UI/UserInterface.py" line="6167" /> - <location filename="../UI/UserInterface.py" line="6126" /> - <location filename="../UI/UserInterface.py" line="6058" /> - <location filename="../UI/UserInterface.py" line="5996" /> + <location filename="../UI/UserInterface.py" line="6284" /> + <location filename="../UI/UserInterface.py" line="6226" /> + <location filename="../UI/UserInterface.py" line="6185" /> + <location filename="../UI/UserInterface.py" line="6117" /> + <location filename="../UI/UserInterface.py" line="6055" /> <source>Documentation Missing</source> <translation>Eksik Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6226" /> - <location filename="../UI/UserInterface.py" line="6168" /> - <location filename="../UI/UserInterface.py" line="6127" /> - <location filename="../UI/UserInterface.py" line="6059" /> - <location filename="../UI/UserInterface.py" line="5997" /> + <location filename="../UI/UserInterface.py" line="6285" /> + <location filename="../UI/UserInterface.py" line="6227" /> + <location filename="../UI/UserInterface.py" line="6186" /> + <location filename="../UI/UserInterface.py" line="6118" /> + <location filename="../UI/UserInterface.py" line="6056" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6208" /> - <location filename="../UI/UserInterface.py" line="6099" /> + <location filename="../UI/UserInterface.py" line="6267" /> + <location filename="../UI/UserInterface.py" line="6158" /> <source>Documentation</source> <translation>Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6100" /> + <location filename="../UI/UserInterface.py" line="6159" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6209" /> + <location filename="../UI/UserInterface.py" line="6268" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6387" /> - <location filename="../UI/UserInterface.py" line="6323" /> + <location filename="../UI/UserInterface.py" line="6446" /> + <location filename="../UI/UserInterface.py" line="6382" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6324" /> + <location filename="../UI/UserInterface.py" line="6383" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6388" /> + <location filename="../UI/UserInterface.py" line="6447" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6430" /> + <location filename="../UI/UserInterface.py" line="6489" /> <source>Open Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6431" /> + <location filename="../UI/UserInterface.py" line="6490" /> <source>Could not start a web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6682" /> + <location filename="../UI/UserInterface.py" line="6740" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6699" /> + <location filename="../UI/UserInterface.py" line="6757" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6717" /> + <location filename="../UI/UserInterface.py" line="6775" /> <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6909" /> + <location filename="../UI/UserInterface.py" line="6967" /> <source>Read Tasks</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6910" /> + <location filename="../UI/UserInterface.py" line="6968" /> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6957" /> + <location filename="../UI/UserInterface.py" line="7015" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6985" /> - <location filename="../UI/UserInterface.py" line="6958" /> + <location filename="../UI/UserInterface.py" line="7043" /> + <location filename="../UI/UserInterface.py" line="7016" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6984" /> + <location filename="../UI/UserInterface.py" line="7042" /> <source>Read session</source> <translation>Oturumu oku</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7000" /> + <location filename="../UI/UserInterface.py" line="7058" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7002" /> + <location filename="../UI/UserInterface.py" line="7060" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="7082" /> <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7072" /> + <location filename="../UI/UserInterface.py" line="7130" /> <source>Crash Session found!</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7073" /> + <location filename="../UI/UserInterface.py" line="7131" /> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7374" /> + <location filename="../UI/UserInterface.py" line="7432" /> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7375" /> + <location filename="../UI/UserInterface.py" line="7433" /> <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="7552" /> - <source>&Cancel</source> - <translation>&Vazgeç</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7554" /> - <source>%v/%m</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7556" /> - <source>Version Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7561" /> - <source>Trying host {0}</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7630" /> - <location filename="../UI/UserInterface.py" line="7623" /> - <location filename="../UI/UserInterface.py" line="7574" /> - <source>Error getting versions information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7575" /> - <source>The versions information cannot not be downloaded because the Internet is <b>not reachable</b>. Please try again later.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7624" /> - <source>The versions information could not be downloaded. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> + <location filename="../UI/UserInterface.py" line="7597" /> + <source>Upgrade available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7598" /> + <source>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7642" /> <location filename="../UI/UserInterface.py" line="7631" /> - <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7722" /> - <location filename="../UI/UserInterface.py" line="7688" /> - <source>Update available</source> - <translation>Güncelleme mümkün değil</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7723" /> - <location filename="../UI/UserInterface.py" line="7689" /> - <source>The update to <b>{0}</b> of eric is available at <b>{1}</b>. Would you like to get it?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7710" /> - <location filename="../UI/UserInterface.py" line="7700" /> - <source>Update Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7701" /> - <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7711" /> - <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7734" /> - <source>eric is up to date</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7735" /> - <source>You are using the latest version of eric</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7741" /> - <source>Error during updates check</source> - <translation>Güncellemeleri kontrol esnasında hata</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7742" /> - <source>Could not perform updates check.</source> - <translation>Güncellemelere ulaşamıyorum.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7763" /> - <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="7829" /> - <location filename="../UI/UserInterface.py" line="7818" /> <source>First time usage</source> <translation>İlk kullanım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7819" /> + <location filename="../UI/UserInterface.py" line="7632" /> <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7830" /> + <location filename="../UI/UserInterface.py" line="7643" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7850" /> + <location filename="../UI/UserInterface.py" line="7663" /> <source>Select Workspace Directory</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8027" /> + <location filename="../UI/UserInterface.py" line="7840" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8028" /> + <location filename="../UI/UserInterface.py" line="7841" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> <message> + <source>&Cancel</source> + <translation type="vanished">&Vazgeç</translation> + </message> + <message> + <source>Update available</source> + <translation type="vanished">Güncelleme mümkün değil</translation> + </message> + <message> + <source>Error during updates check</source> + <translation type="vanished">Güncellemeleri kontrol esnasında hata</translation> + </message> + <message> + <source>Could not perform updates check.</source> + <translation type="vanished">Güncellemelere ulaşamıyorum.</translation> + </message> + <message> + <source><h3>Available versions</h3><table></source> + <translation type="vanished"><h3>Mümkün sürümler</h3><table></translation> + </message> + <message> + <source>Check for Updates</source> + <translation type="vanished">Güncellemeleri kontrol et</translation> + </message> + <message> + <source>Check for &Updates...</source> + <translation type="vanished">G&üncellemeleri kontrol et...</translation> + </message> + <message> + <source>Show downloadable versions</source> + <translation type="vanished">Yüklenebilir sürümleri göster</translation> + </message> + <message> + <source>Show &downloadable versions...</source> + <translation type="vanished">Yüklenebilir sürümler&i göster...</translation> + </message> + <message> + <source>Show the versions available for download</source> + <translation type="vanished">İndirmek için mümkün olan sürümü göster</translation> + </message> + <message> <source>Eric API Documentation</source> <translation type="vanished">Eric API Belgeleri</translation> </message> @@ -88671,6 +88894,49 @@ </message> </context> <context> + <name>VersionsDialog</name> + <message> + <location filename="../UI/VersionsDialog.py" line="49" /> + <source>Check for Upgrades...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="92" /> + <source>No upgrades available.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="96" /> + <source>Upgrade eric7...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="100" /> + <source><p>An upgrade of <b>eric7</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="105" /> + <source>Upgrade PyQt6...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="109" /> + <source><p>An upgrade of <b>PyQt6</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="114" /> + <source>Upgrade Both...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="128" /> + <source>Check for Upgrades</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>ViewManager</name> <message> <location filename="../HexEdit/HexEditMainWindow.py" line="518" /> @@ -93445,7 +93711,7 @@ <context> <name>VirtualenvInterpreterSelectionDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="45" /> + <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="47" /> <source>Python Interpreter</source> <translation type="unfinished" /> </message> @@ -93473,54 +93739,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="232" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="243" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="233" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="244" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="295" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="306" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="346" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="296" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="307" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="345" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="433" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="369" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="444" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="380" /> <source>{0} - {1}</source> <translation type="unfinished">{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="377" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="378" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="441" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="452" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="453" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -94521,22 +94787,22 @@ <context> <name>WebBrowserPage</name> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="195" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="189" /> <source>Suspicuous URL detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="196" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="190" /> <source><p>The URL <b>{0}</b> was found in the Safe Browsing database.</p>{1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="663" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="657" /> <source>SSL Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="664" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="658" /> <source>This site does not contain SSL information.</source> <translation type="unfinished" /> </message> @@ -95856,12 +96122,12 @@ <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2282" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2287" /> <source>Quota Request</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2288" /> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished" /> </message>
--- a/eric7/i18n/eric7_zh_CN.ts Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/i18n/eric7_zh_CN.ts Sat Apr 02 11:23:11 2022 +0200 @@ -1528,6 +1528,26 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Upgrader Delay:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source>Enter the time the upgrader process should wait for eric to exit</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> + <source> s</source> + <translation type="unfinished"> 秒</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ApplicationPage.ui" line="0" /> <source>Reporting</source> <translation>漏洞报告</translation> </message> @@ -49633,7 +49653,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="473" /> + <location filename="../Preferences/__init__.py" line="471" /> <location filename="../QScintilla/Lexers/__init__.py" line="415" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished">Python 文件 (*.py *.py3)</translation> @@ -49886,7 +49906,7 @@ <translation>所有文件 (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="475" /> + <location filename="../Preferences/__init__.py" line="473" /> <location filename="../QScintilla/Lexers/__init__.py" line="585" /> <source>Python3 Files (*.py)</source> <translation type="unfinished" /> @@ -55975,119 +55995,113 @@ <context> <name>Pip</name> <message> - <location filename="../PipInterface/Pip.py" line="109" /> + <location filename="../PipInterface/Pip.py" line="123" /> <source>python exited with an error ({0}).</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="116" /> + <location filename="../PipInterface/Pip.py" line="130" /> <source>python did not finish within 30 seconds.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="119" /> + <location filename="../PipInterface/Pip.py" line="133" /> <source>python could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="179" /> + <location filename="../PipInterface/Pip.py" line="193" /> <source><project></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="208" /> + <location filename="../PipInterface/Pip.py" line="222" /> <source>Interpreter for Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="209" /> + <location filename="../PipInterface/Pip.py" line="223" /> <source>No interpreter configured for the selected virtual environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="244" /> + <location filename="../PipInterface/Pip.py" line="258" /> <source>Install PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="286" /> + <location filename="../PipInterface/Pip.py" line="300" /> <source>Repair PIP</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="359" /> - <location filename="../PipInterface/Pip.py" line="311" /> + <location filename="../PipInterface/Pip.py" line="383" /> <source>Upgrade Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="312" /> - <source>You are trying to upgrade PyQt packages. This might not work for the current instance of Python ({0}). Do you want to continue?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/Pip.py" line="399" /> + <location filename="../PipInterface/Pip.py" line="423" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="428" /> + <location filename="../PipInterface/Pip.py" line="452" /> <source>Install Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="491" /> - <location filename="../PipInterface/Pip.py" line="460" /> - <location filename="../PipInterface/Pip.py" line="451" /> + <location filename="../PipInterface/Pip.py" line="515" /> + <location filename="../PipInterface/Pip.py" line="484" /> + <location filename="../PipInterface/Pip.py" line="475" /> <source>Uninstall Packages</source> <translation type="unfinished">卸载包</translation> </message> <message> - <location filename="../PipInterface/Pip.py" line="492" /> - <location filename="../PipInterface/Pip.py" line="452" /> + <location filename="../PipInterface/Pip.py" line="516" /> + <location filename="../PipInterface/Pip.py" line="476" /> <source>Do you really want to uninstall these packages?</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="503" /> + <location filename="../PipInterface/Pip.py" line="527" /> <source>Uninstall Packages from Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="721" /> + <location filename="../PipInterface/Pip.py" line="844" /> <source>Cache Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="746" /> - <location filename="../PipInterface/Pip.py" line="738" /> + <location filename="../PipInterface/Pip.py" line="869" /> + <location filename="../PipInterface/Pip.py" line="861" /> <source>List Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="739" /> + <location filename="../PipInterface/Pip.py" line="862" /> <source>Enter a file pattern (empty for all):</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="770" /> - <location filename="../PipInterface/Pip.py" line="764" /> + <location filename="../PipInterface/Pip.py" line="893" /> + <location filename="../PipInterface/Pip.py" line="887" /> <source>Remove Cached Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="765" /> + <location filename="../PipInterface/Pip.py" line="888" /> <source>Enter a file pattern:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="793" /> - <location filename="../PipInterface/Pip.py" line="788" /> + <location filename="../PipInterface/Pip.py" line="916" /> + <location filename="../PipInterface/Pip.py" line="911" /> <source>Purge Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/Pip.py" line="789" /> + <location filename="../PipInterface/Pip.py" line="912" /> <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source> <translation type="unfinished" /> </message> @@ -56214,18 +56228,18 @@ <location filename="../PipInterface/PipFreezeDialog.py" line="230" /> <location filename="../PipInterface/PipFreezeDialog.py" line="210" /> <location filename="../PipInterface/PipFreezeDialog.py" line="198" /> - <location filename="../PipInterface/PipFreezeDialog.py" line="118" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="122" /> <source>Generate Requirements</source> <translation type="unfinished">生成必要文件</translation> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="119" /> + <location filename="../PipInterface/PipFreezeDialog.py" line="123" /> <source>The requirements were changed. Do you want to overwrite these changes?</source> <translation type="unfinished">必要文件已改变。覆盖此更变?</translation> </message> <message> - <location filename="../PipInterface/PipFreezeDialog.py" line="160" /> - <source>No output generated by 'pip freeze'.</source> + <location filename="../PipInterface/PipFreezeDialog.py" line="158" /> + <source>No package specifiers generated by 'pip freeze'.</source> <translation type="unfinished" /> </message> <message> @@ -56255,6 +56269,16 @@ </message> <message> <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>Select to show requirements for packages installed to the user-site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipFreezeDialog.ui" line="0" /> <source>Requirements File:</source> <translation type="unfinished">必要文件:</translation> </message> @@ -56315,6 +56339,65 @@ </message> </context> <context> + <name>PipLicensesDialog</name> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package Licenses</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Local packages only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Select to show only licenses of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>User-Site only</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Package</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Version</source> + <translation type="unfinished">版本</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>License</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.ui" line="0" /> + <source>Count</source> + <translation type="unfinished">总计</translation> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="61" /> + <source>Licenses of "{0}"</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipLicensesDialog.py" line="65" /> + <source>No environment specified.</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PipListDialog</name> <message> <source>&Refresh</source> @@ -56598,11 +56681,17 @@ <name>PipPackagesWidget</name> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Toggle to show or hide the dependency tree view</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Select to show only locally-installed packages</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Local packages only</source> <translation type="unfinished" /> </message> @@ -56623,11 +56712,23 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>User-Site only</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Perform vulnerability checks based on "Safety DB".</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Vulnerability Check</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Package</source> @@ -56635,12 +56736,18 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Installed Version</source> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Installed</source> <translation type="unfinished" /> </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Available Version</source> + <source>Available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Affected</source> <translation type="unfinished" /> </message> <message> @@ -56686,6 +56793,7 @@ <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Press to show details for the selected entry</source> <translation type="unfinished" /> </message> @@ -56696,11 +56804,6 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> - <source>Press to start the search</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Enter the search term for the package name</source> <translation type="unfinished" /> </message> @@ -56711,6 +56814,16 @@ </message> <message> <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to start the search</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to search for more packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> <source>Version</source> <translation type="unfinished">版本</translation> </message> @@ -56735,221 +56848,308 @@ <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="169" /> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>View Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package requires other packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Requires</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show which package is required by others</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required By</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of locally installed packages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Select to show only dependencies of packages installed to the user-site</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Required</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.ui" line="0" /> + <source>Press to refresh the dependency tree</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="185" /> <source>pip Menu</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="195" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="230" /> <source>Name:</source> <translation type="unfinished">名称:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="196" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="231" /> <source>Version:</source> <translation type="unfinished">版本:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="197" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="232" /> <source>Location:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="198" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="233" /> <source>Requires:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="199" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="234" /> <source>Summary:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="200" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="235" /> <source>Homepage:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="201" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="236" /> <source>Author:</source> <translation type="unfinished">作者:</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="202" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="237" /> <source>Author Email:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="203" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="238" /> <source>License:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="204" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="239" /> <source>Metadata Version:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="205" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="240" /> <source>Installer:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="206" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="241" /> <source>Classifiers:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="207" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="242" /> <source>Entry Points:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="208" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="243" /> <source>Files:</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="375" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="427" /> <source>Getting installed packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="390" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="443" /> <source>Getting outdated packages...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="975" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="812" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="790" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1141" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="972" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="961" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="930" /> <source>Search PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="791" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="931" /> <source><p>Received an error while searching for <b>{0}</b>.</p><p>Error: {1}</p></source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../PipInterface/PipPackagesWidget.py" line="805" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="946" /> <source>%n package(s) found.</source> <translation type="unfinished"> <numerusform /> </translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="807" /> - <source>Showing first 20 packages found.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="815" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="813" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="950" /> + <source>Showing first {0} packages found.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="966" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="962" /> <source><p>There were no results for <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="976" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="973" /> + <source><p>There were no more results for <b>{0}</b>.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1142" /> <source><p>No package details info for <b>{0}</b> available.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="990" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1156" /> <source>Install Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="993" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1159" /> <source>Install Pip to User-Site</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="996" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1162" /> <source>Repair Pip</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1116" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1000" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1299" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1166" /> <source>Install Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1003" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1169" /> <source>Install Local Package</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1007" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1173" /> <source>Install Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1010" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1176" /> <source>Re-Install Selected Packages</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1013" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1179" /> <source>Uninstall Requirements</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1016" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1182" /> <source>Generate Requirements...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1020" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1186" /> + <source>Show Licenses...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1190" /> + <source>Check Vulnerabilities</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1194" /> + <source>Update Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1198" /> <source>Show Cache Info...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1023" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1201" /> <source>Show Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1026" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1204" /> <source>Remove Cached Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1029" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1207" /> <source>Purge Cache...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1034" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1212" /> <source>Edit User Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1037" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1215" /> <source>Edit Environment Configuration...</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1042" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1220" /> <source>Configure...</source> <translation type="unfinished">配置…</translation> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1237" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1224" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1213" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1421" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1408" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1397" /> <source>Edit Configuration</source> <translation type="unfinished" /> </message> <message> - <location filename="../PipInterface/PipPackagesWidget.py" line="1238" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1225" /> - <location filename="../PipInterface/PipPackagesWidget.py" line="1214" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1422" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1409" /> + <location filename="../PipInterface/PipPackagesWidget.py" line="1398" /> <source>No valid configuration path determined. Aborting</source> <translation type="unfinished" /> </message> <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1576" /> + <source>{0} {1}</source> + <comment>package name, package version</comment> + <translation type="unfinished">{0} {1}</translation> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1598" /> + <source>Affected Version:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1601" /> + <source>Advisory:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipPackagesWidget.py" line="1716" /> + <source>any</source> + <translation type="unfinished" /> + </message> + <message> <source>Error: {0}</source> <translation type="vanished">错误:{0}</translation> </message> @@ -56962,6 +57162,11 @@ <translation type="unfinished" /> </message> <message> + <location filename="../Preferences/ConfigurationPages/PipPage.py" line="34" /> + <source><b>Note:</b> Leave empty to use the default Safety DB URL ({0}).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source><b>Configure pip</b></source> <translation type="unfinished" /> @@ -56978,6 +57183,36 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Vulnerability Checks</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Safety DB URL:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the base URL for the Safety DB mirror to be used</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Cache Validity:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source>Enter the Safety DB cache validity time in hours (2 hours up to 7 days)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> + <source> hours</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="0" /> <source>Environment</source> <translation type="unfinished" /> </message> @@ -57008,6 +57243,19 @@ </message> </context> <context> + <name>PipVulnerabilityChecker</name> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="219" /> + <source>Fetching Vulnerability Database</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../PipInterface/PipVulnerabilityChecker.py" line="220" /> + <source><p>The vulnerability database <b>{0}</b> could not be loaded from <b>{1}</b>.</p><p>The vulnerability check is not available.</p></source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>PixmapDiagram</name> <message> <location filename="../Graphics/PixmapDiagram.py" line="164" /> @@ -57417,32 +57665,32 @@ <translation>模块丢失“pluginType”和/或“pluginTypename”属性。</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="445" /> + <location filename="../PluginManager/PluginManager.py" line="449" /> <source>Module failed to load. Error: {0}</source> <translation>模块加载失败。错误:{0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="622" /> + <location filename="../PluginManager/PluginManager.py" line="626" /> <source>Incompatible plugin activation method.</source> <translation>插件激活方法不兼容。</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1204" /> + <location filename="../PluginManager/PluginManager.py" line="1208" /> <source>Plugin Manager Error</source> <translation>插件管理错误</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1205" /> + <location filename="../PluginManager/PluginManager.py" line="1209" /> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>插件下载目录 <b>{0}</b> 无法创建。请使用配置对话框进行配置。</p><p>原因:{1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1271" /> + <location filename="../PluginManager/PluginManager.py" line="1275" /> <source>Error downloading file</source> <translation>下载文件出错</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1272" /> + <location filename="../PluginManager/PluginManager.py" line="1276" /> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>无法从 {0} 下载指定文件。</p><p>错误:{1}</p></translation> </message> @@ -57615,6 +57863,21 @@ <source>Edit URL</source> <translation>编辑 URL</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Startup Behavior</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Select, to check for missing plugin dependencies at startup and install them</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/PluginManagerPage.ui" line="0" /> + <source>Automatic dependencies installation</source> + <translation type="unfinished" /> + </message> </context> <context> <name>PluginRepositoryDialog</name> @@ -58303,18 +58566,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1654" /> + <location filename="../Preferences/__init__.py" line="1658" /> <source>Export Preferences</source> <translation>导出首选项</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1682" /> - <location filename="../Preferences/__init__.py" line="1656" /> + <location filename="../Preferences/__init__.py" line="1686" /> + <location filename="../Preferences/__init__.py" line="1660" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>属性文件 (*.ini);;所有文件 (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> + <location filename="../Preferences/__init__.py" line="1684" /> <source>Import Preferences</source> <translation>导入首选项</translation> </message> @@ -84812,7 +85075,17 @@ <translation type="unfinished"><h3>版本号</h3><table></translation> </message> <message> - <location filename="../Tools/TrayStarter.py" line="582" /> + <location filename="../Tools/TrayStarter.py" line="600" /> + <source>Desktop</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="603" /> + <source>Session Type</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Tools/TrayStarter.py" line="605" /> <source></table></source> <translation type="unfinished"></table></translation> </message> @@ -86404,2635 +86677,2605 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="256" /> + <location filename="../UI/UserInterface.py" line="253" /> <source>Initializing Basic Services...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="297" /> + <location filename="../UI/UserInterface.py" line="294" /> <source>Initializing Plugin Manager...</source> <translation>初始化插件管理器…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="304" /> + <location filename="../UI/UserInterface.py" line="301" /> <source>Generating Main User Interface...</source> <translation>生成主用户界面…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="346" /> + <location filename="../UI/UserInterface.py" line="343" /> <source>Setting up connections...</source> <translation>建立连接…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="593" /> + <location filename="../UI/UserInterface.py" line="590" /> <source>Initializing Tools...</source> <translation>初始化工具…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="603" /> + <location filename="../UI/UserInterface.py" line="600" /> <source>Registering Objects...</source> <translation>注册对象…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="644" /> + <location filename="../UI/UserInterface.py" line="636" /> <source>Initializing Actions...</source> <translation>初始化动作…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="646" /> + <location filename="../UI/UserInterface.py" line="638" /> <source>Initializing Menus...</source> <translation>初始化菜单…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="648" /> + <location filename="../UI/UserInterface.py" line="640" /> <source>Initializing Toolbars...</source> <translation>初始化工具栏…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="650" /> + <location filename="../UI/UserInterface.py" line="642" /> <source>Initializing Statusbar...</source> <translation>初始化状态栏…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="678" /> + <location filename="../UI/UserInterface.py" line="670" /> <source>Initializing Single Application Server...</source> <translation>初始化单应用程序服务器…</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="676" /> + <source>Initializing Plugins...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="679" /> + <source>Activating Plugins...</source> + <translation>激活插件…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="681" /> + <source>Generating Plugins Toolbars...</source> + <translation>生成插件工具栏…</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="684" /> - <source>Initializing Plugins...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="687" /> - <source>Activating Plugins...</source> - <translation>激活插件…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="689" /> - <source>Generating Plugins Toolbars...</source> - <translation>生成插件工具栏…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="692" /> <source>Cleaning Plugins Download Area...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="703" /> + <location filename="../UI/UserInterface.py" line="695" /> <source>Restoring Toolbarmanager...</source> <translation>恢复工具拦管理器…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="712" /> + <location filename="../UI/UserInterface.py" line="704" /> <source>Setting View Profile...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="725" /> + <location filename="../UI/UserInterface.py" line="717" /> <source>Reading Tasks...</source> <translation>读取任务…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="730" /> + <location filename="../UI/UserInterface.py" line="722" /> <source>Reading Templates...</source> <translation>读取模板…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="735" /> + <location filename="../UI/UserInterface.py" line="727" /> <source>Starting Debugger...</source> <translation>启动调试器…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2041" /> - <location filename="../UI/UserInterface.py" line="1065" /> + <location filename="../UI/UserInterface.py" line="2033" /> + <location filename="../UI/UserInterface.py" line="1057" /> <source>Left Toolbox</source> <translation>左工具箱</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2072" /> - <location filename="../UI/UserInterface.py" line="1073" /> + <location filename="../UI/UserInterface.py" line="2064" /> + <location filename="../UI/UserInterface.py" line="1065" /> <source>Horizontal Toolbox</source> <translation>横向工具箱</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2056" /> - <location filename="../UI/UserInterface.py" line="1081" /> + <location filename="../UI/UserInterface.py" line="2048" /> + <location filename="../UI/UserInterface.py" line="1073" /> <source>Right Toolbox</source> <translation>右工具箱</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1915" /> - <location filename="../UI/UserInterface.py" line="1237" /> - <location filename="../UI/UserInterface.py" line="1089" /> + <location filename="../UI/UserInterface.py" line="1907" /> + <location filename="../UI/UserInterface.py" line="1229" /> + <location filename="../UI/UserInterface.py" line="1081" /> <source>Multiproject-Viewer</source> <translation>多重项目浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1898" /> - <location filename="../UI/UserInterface.py" line="1242" /> - <location filename="../UI/UserInterface.py" line="1093" /> + <location filename="../UI/UserInterface.py" line="1890" /> + <location filename="../UI/UserInterface.py" line="1234" /> + <location filename="../UI/UserInterface.py" line="1085" /> <source>Project-Viewer</source> <translation>项目浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2326" /> - <location filename="../UI/UserInterface.py" line="2325" /> - <location filename="../UI/UserInterface.py" line="1247" /> - <location filename="../UI/UserInterface.py" line="1097" /> + <location filename="../UI/UserInterface.py" line="2318" /> + <location filename="../UI/UserInterface.py" line="2317" /> + <location filename="../UI/UserInterface.py" line="1239" /> + <location filename="../UI/UserInterface.py" line="1089" /> <source>Find/Replace In Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2344" /> - <location filename="../UI/UserInterface.py" line="2343" /> - <location filename="../UI/UserInterface.py" line="1252" /> - <location filename="../UI/UserInterface.py" line="1101" /> + <location filename="../UI/UserInterface.py" line="2336" /> + <location filename="../UI/UserInterface.py" line="2335" /> + <location filename="../UI/UserInterface.py" line="1244" /> + <location filename="../UI/UserInterface.py" line="1093" /> <source>Find File</source> <translation type="unfinished">查找文件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1257" /> - <location filename="../UI/UserInterface.py" line="1105" /> + <location filename="../UI/UserInterface.py" line="1249" /> + <location filename="../UI/UserInterface.py" line="1097" /> <source>VCS Status</source> <translation type="unfinished">版本控制系统状态</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2022" /> - <location filename="../UI/UserInterface.py" line="1263" /> - <location filename="../UI/UserInterface.py" line="1110" /> + <location filename="../UI/UserInterface.py" line="2014" /> + <location filename="../UI/UserInterface.py" line="1255" /> + <location filename="../UI/UserInterface.py" line="1102" /> <source>Template-Viewer</source> <translation>模板浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1968" /> - <location filename="../UI/UserInterface.py" line="1269" /> - <location filename="../UI/UserInterface.py" line="1115" /> + <location filename="../UI/UserInterface.py" line="1960" /> + <location filename="../UI/UserInterface.py" line="1261" /> + <location filename="../UI/UserInterface.py" line="1107" /> <source>File-Browser</source> <translation>文件浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1275" /> - <location filename="../UI/UserInterface.py" line="1120" /> + <location filename="../UI/UserInterface.py" line="1267" /> + <location filename="../UI/UserInterface.py" line="1112" /> <source>Symbols</source> <translation>符号</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1933" /> - <location filename="../UI/UserInterface.py" line="1295" /> - <location filename="../UI/UserInterface.py" line="1290" /> - <location filename="../UI/UserInterface.py" line="1128" /> + <location filename="../UI/UserInterface.py" line="1925" /> + <location filename="../UI/UserInterface.py" line="1287" /> + <location filename="../UI/UserInterface.py" line="1282" /> + <location filename="../UI/UserInterface.py" line="1120" /> <source>Debug-Viewer</source> <translation>调试浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2215" /> - <location filename="../UI/UserInterface.py" line="2214" /> - <location filename="../UI/UserInterface.py" line="1301" /> - <location filename="../UI/UserInterface.py" line="1133" /> + <location filename="../UI/UserInterface.py" line="2207" /> + <location filename="../UI/UserInterface.py" line="2206" /> + <location filename="../UI/UserInterface.py" line="1293" /> + <location filename="../UI/UserInterface.py" line="1125" /> <source>Code Documentation Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2380" /> - <location filename="../UI/UserInterface.py" line="2379" /> - <location filename="../UI/UserInterface.py" line="1307" /> - <location filename="../UI/UserInterface.py" line="1138" /> + <location filename="../UI/UserInterface.py" line="2372" /> + <location filename="../UI/UserInterface.py" line="2371" /> + <location filename="../UI/UserInterface.py" line="1299" /> + <location filename="../UI/UserInterface.py" line="1130" /> <source>Help Viewer</source> <translation type="unfinished">帮助浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3103" /> - <location filename="../UI/UserInterface.py" line="2289" /> - <location filename="../UI/UserInterface.py" line="2288" /> - <location filename="../UI/UserInterface.py" line="1312" /> - <location filename="../UI/UserInterface.py" line="1142" /> + <location filename="../UI/UserInterface.py" line="3069" /> + <location filename="../UI/UserInterface.py" line="2281" /> + <location filename="../UI/UserInterface.py" line="2280" /> + <location filename="../UI/UserInterface.py" line="1304" /> + <location filename="../UI/UserInterface.py" line="1134" /> <source>Plugin Repository</source> <translation>插件储存库</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2307" /> - <location filename="../UI/UserInterface.py" line="2306" /> - <location filename="../UI/UserInterface.py" line="1317" /> - <location filename="../UI/UserInterface.py" line="1146" /> + <location filename="../UI/UserInterface.py" line="2299" /> + <location filename="../UI/UserInterface.py" line="2298" /> + <location filename="../UI/UserInterface.py" line="1309" /> + <location filename="../UI/UserInterface.py" line="1138" /> <source>Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2235" /> - <location filename="../UI/UserInterface.py" line="2234" /> - <location filename="../UI/UserInterface.py" line="1322" /> - <location filename="../UI/UserInterface.py" line="1151" /> + <location filename="../UI/UserInterface.py" line="2227" /> + <location filename="../UI/UserInterface.py" line="2226" /> + <location filename="../UI/UserInterface.py" line="1314" /> + <location filename="../UI/UserInterface.py" line="1143" /> <source>PyPI</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2253" /> - <location filename="../UI/UserInterface.py" line="2252" /> - <location filename="../UI/UserInterface.py" line="1327" /> - <location filename="../UI/UserInterface.py" line="1156" /> + <location filename="../UI/UserInterface.py" line="2245" /> + <location filename="../UI/UserInterface.py" line="2244" /> + <location filename="../UI/UserInterface.py" line="1319" /> + <location filename="../UI/UserInterface.py" line="1148" /> <source>Conda</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1332" /> - <location filename="../UI/UserInterface.py" line="1161" /> + <location filename="../UI/UserInterface.py" line="1324" /> + <location filename="../UI/UserInterface.py" line="1153" /> <source>Cooperation</source> <translation>协作</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2158" /> - <location filename="../UI/UserInterface.py" line="1337" /> - <location filename="../UI/UserInterface.py" line="1166" /> + <location filename="../UI/UserInterface.py" line="2150" /> + <location filename="../UI/UserInterface.py" line="1329" /> + <location filename="../UI/UserInterface.py" line="1158" /> <source>IRC</source> <translation>IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2271" /> - <location filename="../UI/UserInterface.py" line="2270" /> + <location filename="../UI/UserInterface.py" line="2263" /> + <location filename="../UI/UserInterface.py" line="2262" /> + <location filename="../UI/UserInterface.py" line="1335" /> + <location filename="../UI/UserInterface.py" line="1163" /> + <source>MicroPython</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1943" /> <location filename="../UI/UserInterface.py" line="1343" /> <location filename="../UI/UserInterface.py" line="1171" /> - <source>MicroPython</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1951" /> - <location filename="../UI/UserInterface.py" line="1351" /> - <location filename="../UI/UserInterface.py" line="1179" /> <source>Shell</source> <translation>命令行</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003" /> - <location filename="../UI/UserInterface.py" line="1355" /> - <location filename="../UI/UserInterface.py" line="1183" /> + <location filename="../UI/UserInterface.py" line="1995" /> + <location filename="../UI/UserInterface.py" line="1347" /> + <location filename="../UI/UserInterface.py" line="1175" /> <source>Task-Viewer</source> <translation>任务浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1985" /> - <location filename="../UI/UserInterface.py" line="1359" /> - <location filename="../UI/UserInterface.py" line="1187" /> + <location filename="../UI/UserInterface.py" line="1977" /> + <location filename="../UI/UserInterface.py" line="1351" /> + <location filename="../UI/UserInterface.py" line="1179" /> <source>Log-Viewer</source> <translation>日志浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1364" /> - <location filename="../UI/UserInterface.py" line="1192" /> + <location filename="../UI/UserInterface.py" line="1356" /> + <location filename="../UI/UserInterface.py" line="1184" /> <source>Numbers</source> <translation>数字</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1752" /> + <location filename="../UI/UserInterface.py" line="1744" /> <source>{0} - Passive Mode</source> <translation>{0} - 被动模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1759" /> - <location filename="../UI/UserInterface.py" line="1755" /> + <location filename="../UI/UserInterface.py" line="1751" /> + <location filename="../UI/UserInterface.py" line="1747" /> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - 被动模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1763" /> + <location filename="../UI/UserInterface.py" line="1755" /> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - 被动模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1786" /> + <location filename="../UI/UserInterface.py" line="1778" /> <source>Quit</source> <translation>退出</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1788" /> + <location filename="../UI/UserInterface.py" line="1780" /> <source>&Quit</source> <translation>退出(&Q)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1789" /> + <location filename="../UI/UserInterface.py" line="1781" /> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1791" /> + <location filename="../UI/UserInterface.py" line="1783" /> <source>Quit the IDE</source> <translation>退出程序</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1792" /> + <location filename="../UI/UserInterface.py" line="1784" /> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>退出程序</b><p>退出本程序。 先保存任何未保存的更改。任何被调试的 Python 程序都将停止,并将选项写入磁盘。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1805" /> - <location filename="../UI/UserInterface.py" line="1803" /> + <location filename="../UI/UserInterface.py" line="1797" /> + <location filename="../UI/UserInterface.py" line="1795" /> <source>Restart</source> <translation type="unfinished">重启</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1806" /> + <location filename="../UI/UserInterface.py" line="1798" /> <source>Ctrl+Shift+Q</source> <comment>File|Quit</comment> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1808" /> + <location filename="../UI/UserInterface.py" line="1800" /> <source>Restart the IDE</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1809" /> + <location filename="../UI/UserInterface.py" line="1801" /> <source><b>Restart the IDE</b><p>This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1822" /> - <location filename="../UI/UserInterface.py" line="1819" /> + <location filename="../UI/UserInterface.py" line="1814" /> + <location filename="../UI/UserInterface.py" line="1811" /> <source>Save session</source> <translation>保存会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1820" /> + <location filename="../UI/UserInterface.py" line="1812" /> <source>Save session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1823" /> + <location filename="../UI/UserInterface.py" line="1815" /> <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7022" /> - <location filename="../UI/UserInterface.py" line="1835" /> - <location filename="../UI/UserInterface.py" line="1832" /> + <location filename="../UI/UserInterface.py" line="7080" /> + <location filename="../UI/UserInterface.py" line="1827" /> + <location filename="../UI/UserInterface.py" line="1824" /> <source>Load session</source> <translation type="unfinished">载入会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1833" /> + <location filename="../UI/UserInterface.py" line="1825" /> <source>Load session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1836" /> + <location filename="../UI/UserInterface.py" line="1828" /> <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1845" /> + <location filename="../UI/UserInterface.py" line="1837" /> <source>New Window</source> <translation>新建窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1847" /> + <location filename="../UI/UserInterface.py" line="1839" /> <source>New &Window</source> <translation>新建窗口(&W)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848" /> + <location filename="../UI/UserInterface.py" line="1840" /> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1850" /> + <location filename="../UI/UserInterface.py" line="1842" /> <source>Open a new eric instance</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1852" /> + <location filename="../UI/UserInterface.py" line="1844" /> <source><b>New Window</b><p>This opens a new instance of the eric IDE.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1866" /> - <location filename="../UI/UserInterface.py" line="1864" /> + <location filename="../UI/UserInterface.py" line="1858" /> + <location filename="../UI/UserInterface.py" line="1856" /> <source>Edit Profile</source> <translation>编辑模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1869" /> + <location filename="../UI/UserInterface.py" line="1861" /> <source>Activate the edit view profile</source> <translation>激活编辑视图模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871" /> + <location filename="../UI/UserInterface.py" line="1863" /> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>编辑模式</b><p>激活“编辑视图模式”。如果激活了该模式,则显示的窗口将按“视图模式配置”对话框进行配置。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1883" /> - <location filename="../UI/UserInterface.py" line="1881" /> + <location filename="../UI/UserInterface.py" line="1875" /> + <location filename="../UI/UserInterface.py" line="1873" /> <source>Debug Profile</source> <translation>调试模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1887" /> + <location filename="../UI/UserInterface.py" line="1879" /> <source>Activate the debug view profile</source> <translation>激活调试模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1888" /> + <location filename="../UI/UserInterface.py" line="1880" /> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>调试模式</b><p>激活“调试视图模式”。如果激活了该模式,则显示的窗口将按“视图模式配置”对话框进行配置。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1899" /> + <location filename="../UI/UserInterface.py" line="1891" /> <source>&Project-Viewer</source> <translation>项目浏览器(&P)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1900" /> + <location filename="../UI/UserInterface.py" line="1892" /> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1903" /> + <location filename="../UI/UserInterface.py" line="1895" /> <source>Switch the input focus to the Project-Viewer window.</source> <translation>将输入焦点切换至项目查看器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1905" /> + <location filename="../UI/UserInterface.py" line="1897" /> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1916" /> + <location filename="../UI/UserInterface.py" line="1908" /> <source>&Multiproject-Viewer</source> <translation>多重项目浏览器(&M)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1917" /> + <location filename="../UI/UserInterface.py" line="1909" /> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1920" /> + <location filename="../UI/UserInterface.py" line="1912" /> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation>将输入焦点切换至多项目查看器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1922" /> + <location filename="../UI/UserInterface.py" line="1914" /> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1934" /> + <location filename="../UI/UserInterface.py" line="1926" /> <source>&Debug-Viewer</source> <translation>调试浏览器(&D)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935" /> + <location filename="../UI/UserInterface.py" line="1927" /> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1938" /> + <location filename="../UI/UserInterface.py" line="1930" /> <source>Switch the input focus to the Debug-Viewer window.</source> <translation>将输入焦点切换至调试查看器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1940" /> + <location filename="../UI/UserInterface.py" line="1932" /> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1952" /> + <location filename="../UI/UserInterface.py" line="1944" /> <source>&Shell</source> <translation>命令行(&S)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1953" /> + <location filename="../UI/UserInterface.py" line="1945" /> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1956" /> + <location filename="../UI/UserInterface.py" line="1948" /> <source>Switch the input focus to the Shell window.</source> <translation>将输入焦点切换至 Shell 窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1958" /> + <location filename="../UI/UserInterface.py" line="1950" /> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="1969" /> + <location filename="../UI/UserInterface.py" line="1961" /> <source>&File-Browser</source> <translation>文件浏览器(&F)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1970" /> + <location filename="../UI/UserInterface.py" line="1962" /> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1973" /> + <location filename="../UI/UserInterface.py" line="1965" /> <source>Switch the input focus to the File-Browser window.</source> <translation>将输入焦点切换至文件浏览器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1975" /> + <location filename="../UI/UserInterface.py" line="1967" /> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation><b>激活文件浏览器</b><p>将输入焦点切换至文件浏览器窗口。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1986" /> + <location filename="../UI/UserInterface.py" line="1978" /> <source>Lo&g-Viewer</source> <translation>日志浏览器(&G)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1987" /> + <location filename="../UI/UserInterface.py" line="1979" /> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1990" /> + <location filename="../UI/UserInterface.py" line="1982" /> <source>Switch the input focus to the Log-Viewer window.</source> <translation>将输入焦点切换至日志查看器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1992" /> + <location filename="../UI/UserInterface.py" line="1984" /> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation><b>激活日志查看器</b><p>将输入焦点切换至日志查看器。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2004" /> + <location filename="../UI/UserInterface.py" line="1996" /> <source>&Task-Viewer</source> <translation>任务浏览器(&T)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2005" /> + <location filename="../UI/UserInterface.py" line="1997" /> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2008" /> + <location filename="../UI/UserInterface.py" line="2000" /> <source>Switch the input focus to the Task-Viewer window.</source> <translation>将输入焦点切换至任务浏览器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2010" /> + <location filename="../UI/UserInterface.py" line="2002" /> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2023" /> + <location filename="../UI/UserInterface.py" line="2015" /> <source>Templ&ate-Viewer</source> <translation>模板浏览器(&A)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2024" /> + <location filename="../UI/UserInterface.py" line="2016" /> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2027" /> + <location filename="../UI/UserInterface.py" line="2019" /> <source>Switch the input focus to the Template-Viewer window.</source> <translation>将输入焦点切换至模板浏览器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2029" /> + <location filename="../UI/UserInterface.py" line="2021" /> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2042" /> + <location filename="../UI/UserInterface.py" line="2034" /> <source>&Left Toolbox</source> <translation>左工具箱(&L)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2043" /> + <location filename="../UI/UserInterface.py" line="2035" /> <source>Toggle the Left Toolbox window</source> <translation>切换左工具箱窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2044" /> + <location filename="../UI/UserInterface.py" line="2036" /> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换左工具箱窗口</b><p>如果左工具箱窗口已隐藏则显示它。如果它可见则隐藏它。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2057" /> + <location filename="../UI/UserInterface.py" line="2049" /> <source>&Right Toolbox</source> <translation>右工具箱(&R)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2059" /> + <location filename="../UI/UserInterface.py" line="2051" /> <source>Toggle the Right Toolbox window</source> <translation>切换右工具箱窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2060" /> + <location filename="../UI/UserInterface.py" line="2052" /> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换右工具箱窗口</b><p>如果右工具箱窗口已隐藏则显示它。如果它可见则隐藏它。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2073" /> + <location filename="../UI/UserInterface.py" line="2065" /> <source>&Horizontal Toolbox</source> <translation>横向工具箱(&H)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2075" /> + <location filename="../UI/UserInterface.py" line="2067" /> <source>Toggle the Horizontal Toolbox window</source> <translation>切换横向工具箱窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2077" /> + <location filename="../UI/UserInterface.py" line="2069" /> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换横向工具箱窗口</b><p>在横向工具箱窗口的显示和隐藏状态间切换。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2089" /> + <location filename="../UI/UserInterface.py" line="2081" /> <source>Left Sidebar</source> <translation>左侧边栏</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2090" /> + <location filename="../UI/UserInterface.py" line="2082" /> <source>&Left Sidebar</source> <translation>左侧边栏(&L)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2092" /> + <location filename="../UI/UserInterface.py" line="2084" /> <source>Toggle the left sidebar window</source> <translation>切换左侧边栏窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2093" /> + <location filename="../UI/UserInterface.py" line="2085" /> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换左侧边栏窗口</b><p>如果左侧边栏窗口已隐藏则显示它。如果它可见则隐藏它。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2105" /> + <location filename="../UI/UserInterface.py" line="2097" /> <source>Right Sidebar</source> <translation>右侧边栏</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2106" /> + <location filename="../UI/UserInterface.py" line="2098" /> <source>&Right Sidebar</source> <translation>右侧边栏(&R)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2108" /> + <location filename="../UI/UserInterface.py" line="2100" /> <source>Toggle the right sidebar window</source> <translation>切换右侧边栏窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2110" /> + <location filename="../UI/UserInterface.py" line="2102" /> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换右侧边栏窗口</b><p>如果右侧边栏窗口已隐藏则显示它。如果它可见则隐藏它。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2122" /> + <location filename="../UI/UserInterface.py" line="2114" /> <source>Bottom Sidebar</source> <translation>底栏</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2123" /> + <location filename="../UI/UserInterface.py" line="2115" /> <source>&Bottom Sidebar</source> <translation>底栏(&B)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2125" /> + <location filename="../UI/UserInterface.py" line="2117" /> <source>Toggle the bottom sidebar window</source> <translation>切换底栏窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2127" /> + <location filename="../UI/UserInterface.py" line="2119" /> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换底栏窗口</b><p>如果底栏窗口已隐藏则显示它。如果它可见则隐藏它。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2139" /> + <location filename="../UI/UserInterface.py" line="2131" /> <source>Cooperation-Viewer</source> <translation>协作浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2140" /> + <location filename="../UI/UserInterface.py" line="2132" /> <source>Co&operation-Viewer</source> <translation>协作浏览器(&O)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2141" /> + <location filename="../UI/UserInterface.py" line="2133" /> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2144" /> + <location filename="../UI/UserInterface.py" line="2136" /> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation>将输入焦点切换至协作浏览器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146" /> + <location filename="../UI/UserInterface.py" line="2138" /> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation><b>激活协作浏览器</b><p>将输入焦点切换至协作浏览器窗口。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2159" /> + <location filename="../UI/UserInterface.py" line="2151" /> <source>&IRC</source> <translation>&IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2160" /> + <location filename="../UI/UserInterface.py" line="2152" /> <source>Ctrl+Alt+Shift+I</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2163" /> + <location filename="../UI/UserInterface.py" line="2155" /> <source>Switch the input focus to the IRC window.</source> <translation>将输入焦点切换至 IRC 窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2165" /> + <location filename="../UI/UserInterface.py" line="2157" /> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation><b>激活 IRC</b><p>将输入焦点切换至 IRC 窗口。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2176" /> + <location filename="../UI/UserInterface.py" line="2168" /> <source>Symbols-Viewer</source> <translation>符号查看器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2177" /> + <location filename="../UI/UserInterface.py" line="2169" /> <source>S&ymbols-Viewer</source> <translation>符号查看器(&Y)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2178" /> + <location filename="../UI/UserInterface.py" line="2170" /> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2181" /> + <location filename="../UI/UserInterface.py" line="2173" /> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation>将输入焦点切换至符号查看器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2183" /> + <location filename="../UI/UserInterface.py" line="2175" /> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2195" /> + <location filename="../UI/UserInterface.py" line="2187" /> <source>Numbers-Viewer</source> <translation>数字查看器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2196" /> + <location filename="../UI/UserInterface.py" line="2188" /> <source>Num&bers-Viewer</source> <translation>数字查看器(&B)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2197" /> + <location filename="../UI/UserInterface.py" line="2189" /> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2200" /> + <location filename="../UI/UserInterface.py" line="2192" /> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation>将输入焦点切换至数字查看器窗口。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2202" /> + <location filename="../UI/UserInterface.py" line="2194" /> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2216" /> + <location filename="../UI/UserInterface.py" line="2208" /> <source>Ctrl+Alt+Shift+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2219" /> + <location filename="../UI/UserInterface.py" line="2211" /> <source>Switch the input focus to the Code Documentation Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2222" /> + <location filename="../UI/UserInterface.py" line="2214" /> <source><b>Code Documentation Viewer</b><p>This switches the input focus to the Code Documentation Viewer window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2236" /> + <location filename="../UI/UserInterface.py" line="2228" /> <source>Ctrl+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2239" /> + <location filename="../UI/UserInterface.py" line="2231" /> <source>Switch the input focus to the PyPI window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2241" /> + <location filename="../UI/UserInterface.py" line="2233" /> <source><b>PyPI</b><p>This switches the input focus to the PyPI window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2254" /> + <location filename="../UI/UserInterface.py" line="2246" /> <source>Ctrl+Alt+Shift+C</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2257" /> + <location filename="../UI/UserInterface.py" line="2249" /> <source>Switch the input focus to the Conda window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2259" /> + <location filename="../UI/UserInterface.py" line="2251" /> <source><b>Conda</b><p>This switches the input focus to the Conda window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2272" /> + <location filename="../UI/UserInterface.py" line="2264" /> <source>Ctrl+Alt+Shift+M</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2275" /> + <location filename="../UI/UserInterface.py" line="2267" /> <source>Switch the input focus to the MicroPython window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2277" /> + <location filename="../UI/UserInterface.py" line="2269" /> <source><b>MicroPython</b><p>This switches the input focus to the MicroPython window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2290" /> + <location filename="../UI/UserInterface.py" line="2282" /> <source>Ctrl+Alt+Shift+R</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2293" /> + <location filename="../UI/UserInterface.py" line="2285" /> <source>Switch the input focus to the Plugin Repository window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2295" /> + <location filename="../UI/UserInterface.py" line="2287" /> <source><b>Plugin Repository</b><p>This switches the input focus to the Plugin Repository window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2308" /> + <location filename="../UI/UserInterface.py" line="2300" /> <source>Ctrl+Alt+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2311" /> + <location filename="../UI/UserInterface.py" line="2303" /> <source>Switch the input focus to the Virtual Environments Manager window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2314" /> + <location filename="../UI/UserInterface.py" line="2306" /> <source><b>Virtual Environments</b><p>This switches the input focus to the Virtual Environments Manager window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2327" /> + <location filename="../UI/UserInterface.py" line="2319" /> <source>Ctrl+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2330" /> + <location filename="../UI/UserInterface.py" line="2322" /> <source>Switch the input focus to the Find/Replace In Files window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2332" /> + <location filename="../UI/UserInterface.py" line="2324" /> <source><b>Find/Replace In Files</b><p>This switches the input focus to the Find/Replace In Files window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2345" /> + <location filename="../UI/UserInterface.py" line="2337" /> <source>Ctrl+Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2348" /> + <location filename="../UI/UserInterface.py" line="2340" /> <source>Switch the input focus to the Find File window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2350" /> + <location filename="../UI/UserInterface.py" line="2342" /> <source><b>Find File</b><p>This switches the input focus to the Find File window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2362" /> - <location filename="../UI/UserInterface.py" line="2361" /> + <location filename="../UI/UserInterface.py" line="2354" /> + <location filename="../UI/UserInterface.py" line="2353" /> <source>VCS Status List</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2363" /> + <location filename="../UI/UserInterface.py" line="2355" /> <source>Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2366" /> + <location filename="../UI/UserInterface.py" line="2358" /> <source>Switch the input focus to the VCS Status List window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2368" /> + <location filename="../UI/UserInterface.py" line="2360" /> <source><b>VCS Status List</b><p>This switches the input focus to the VCS Status List window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2381" /> + <location filename="../UI/UserInterface.py" line="2373" /> <source>Alt+Shift+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2384" /> + <location filename="../UI/UserInterface.py" line="2376" /> <source>Switch the input focus to the embedded Help Viewer window.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2386" /> + <location filename="../UI/UserInterface.py" line="2378" /> <source><b>Help Viewer</b><p>This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2399" /> + <location filename="../UI/UserInterface.py" line="2391" /> <source>What's This?</source> <translation>这是什么?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2401" /> + <location filename="../UI/UserInterface.py" line="2393" /> <source>&What's This?</source> <translation>这是什么(&W)?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2402" /> + <location filename="../UI/UserInterface.py" line="2394" /> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2404" /> + <location filename="../UI/UserInterface.py" line="2396" /> <source>Context sensitive help</source> <translation>背景帮助</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2405" /> + <location filename="../UI/UserInterface.py" line="2397" /> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>显示背景帮助</b><p>在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2417" /> + <location filename="../UI/UserInterface.py" line="2409" /> <source>Helpviewer</source> <translation>帮助浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2419" /> + <location filename="../UI/UserInterface.py" line="2411" /> <source>&Helpviewer...</source> <translation>帮助浏览器(&H)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2420" /> + <location filename="../UI/UserInterface.py" line="2412" /> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2422" /> + <location filename="../UI/UserInterface.py" line="2414" /> <source>Open the helpviewer window</source> <translation>打开帮助浏览器窗口</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2424" /> + <location filename="../UI/UserInterface.py" line="2416" /> <source><b>Helpviewer</b><p>Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is searched in the Qt help collection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2443" /> + <location filename="../UI/UserInterface.py" line="2435" /> <source>Show Versions</source> <translation>显示版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2444" /> + <location filename="../UI/UserInterface.py" line="2436" /> <source>Show &Versions</source> <translation>显示版本(&V)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2446" /> + <location filename="../UI/UserInterface.py" line="2438" /> <source>Display version information</source> <translation>显示版本信息</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2448" /> + <location filename="../UI/UserInterface.py" line="2440" /> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>显示版本</b><p>显示版本信息。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2458" /> - <location filename="../UI/UserInterface.py" line="2456" /> - <source>Check for Updates</source> - <translation>检查更新</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2457" /> - <source>Check for &Updates...</source> - <translation>检查更新(&U)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2459" /> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2467" /> - <source>Show downloadable versions</source> - <translation>显示可下载的版本</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2468" /> - <source>Show &downloadable versions...</source> - <translation>显示可下载的版本(&D)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2471" /> - <source>Show the versions available for download</source> - <translation>显示可以下载的版本</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2472" /> - <source><b>Show downloadable versions...</b><p>Shows the eric versions available for download from the internet.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2485" /> - <location filename="../UI/UserInterface.py" line="2482" /> + <location filename="../UI/UserInterface.py" line="2451" /> + <location filename="../UI/UserInterface.py" line="2448" /> <source>Show Error Log</source> <translation>显示错误日志</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2483" /> + <location filename="../UI/UserInterface.py" line="2449" /> <source>Show Error &Log...</source> <translation>显示错误日志(&L)…</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2452" /> + <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> + <translation><b>显示错误日志…</b><p>打开一个对话框显示最近的错误日志。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2460" /> + <source>Show Install Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2461" /> + <source>Show Install &Info...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2463" /> + <source>Show Installation Information</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2465" /> + <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4083" /> + <location filename="../UI/UserInterface.py" line="2474" /> + <source>Report Bug</source> + <translation>报告错误</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2475" /> + <source>Report &Bug...</source> + <translation>报告错误(&B)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2477" /> + <source>Report a bug</source> + <translation>报告一个错误</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2478" /> + <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> + <translation><b>报告错误…</b><p>打开一个对话框并报告一个错误。</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2486" /> - <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> - <translation><b>显示错误日志…</b><p>打开一个对话框显示最近的错误日志。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2494" /> - <source>Show Install Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2495" /> - <source>Show Install &Info...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2497" /> - <source>Show Installation Information</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2499" /> - <source><b>Show Install Info...</b><p>Opens a dialog showing some information about the installation process.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="4120" /> - <location filename="../UI/UserInterface.py" line="2508" /> - <source>Report Bug</source> - <translation>报告错误</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2509" /> - <source>Report &Bug...</source> - <translation>报告错误(&B)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2511" /> - <source>Report a bug</source> - <translation>报告一个错误</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2512" /> - <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> - <translation><b>报告错误…</b><p>打开一个对话框并报告一个错误。</p></translation> + <source>Request Feature</source> + <translation>请求功能</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2487" /> + <source>Request &Feature...</source> + <translation>请求功能(&F)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2489" /> + <source>Send a feature request</source> + <translation>发送一个功能请求</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2491" /> + <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> + <translation><b>请求功能…</b><p>打开一个对话框并发送一个功能请求。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3606" /> + <location filename="../UI/UserInterface.py" line="3583" /> + <location filename="../UI/UserInterface.py" line="2501" /> + <source>Unittest</source> + <translation>单元测试</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2503" /> + <source>&Unittest...</source> + <translation>单元测试(&U)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2505" /> + <source>Start unittest dialog</source> + <translation>打开单元测试对话框</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2506" /> + <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> + <translation><b>单元测试</b><p>执行单元测试。通过对话框可以选择和运行一个单元测试组件。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2515" /> + <source>Unittest Restart</source> + <translation>单元测试重启</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2517" /> + <source>&Restart Unittest...</source> + <translation>重启单元测试(&R)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2519" /> + <source>Restart last unittest</source> + <translation>重启最后的单元测试</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2520" /> - <source>Request Feature</source> - <translation>请求功能</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2521" /> - <source>Request &Feature...</source> - <translation>请求功能(&F)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2523" /> - <source>Send a feature request</source> - <translation>发送一个功能请求</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2525" /> - <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> - <translation><b>请求功能…</b><p>打开一个对话框并发送一个功能请求。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3643" /> - <location filename="../UI/UserInterface.py" line="3620" /> + <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> + <translation><b>重启单元测试</b><p>重新启动最后执行的单元测试。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2529" /> + <source>Unittest Rerun Failed</source> + <translation>单元测试再次运行失败</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2531" /> + <source>Rerun Failed Tests...</source> + <translation>重新运行失败的测试…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2533" /> + <source>Rerun failed tests of the last run</source> + <translation>重新运行上一次运行中失败的测试</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2535" /> - <source>Unittest</source> - <translation>单元测试</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2537" /> - <source>&Unittest...</source> - <translation>单元测试(&U)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2539" /> - <source>Start unittest dialog</source> - <translation>打开单元测试对话框</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2540" /> - <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> - <translation><b>单元测试</b><p>执行单元测试。通过对话框可以选择和运行一个单元测试组件。</p></translation> + <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> + <translation><b>重新运行失败的测试</b><p>重新运行上一次单元测试中失败的所有测试。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2545" /> + <source>Unittest Script</source> + <translation>脚本单元测试</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2547" /> + <source>Unittest &Script...</source> + <translation>脚本单元测试(&S)…</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2549" /> - <source>Unittest Restart</source> - <translation>单元测试重启</translation> + <source>Run unittest with current script</source> + <translation>对当前脚本运行单元测试</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2551" /> - <source>&Restart Unittest...</source> - <translation>重启单元测试(&R)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2553" /> - <source>Restart last unittest</source> - <translation>重启最后的单元测试</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2554" /> - <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> - <translation><b>重启单元测试</b><p>重新启动最后执行的单元测试。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2563" /> - <source>Unittest Rerun Failed</source> - <translation>单元测试再次运行失败</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2565" /> - <source>Rerun Failed Tests...</source> - <translation>重新运行失败的测试…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2567" /> - <source>Rerun failed tests of the last run</source> - <translation>重新运行上一次运行中失败的测试</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2569" /> - <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> - <translation><b>重新运行失败的测试</b><p>重新运行上一次单元测试中失败的所有测试。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2579" /> - <source>Unittest Script</source> - <translation>脚本单元测试</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2581" /> - <source>Unittest &Script...</source> - <translation>脚本单元测试(&S)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2583" /> - <source>Run unittest with current script</source> - <translation>对当前脚本运行单元测试</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2585" /> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>脚本单元测试</b><p>对当前脚本运动单元测试。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2594" /> + <location filename="../UI/UserInterface.py" line="2560" /> <source>Unittest Project</source> <translation>项目单元测试</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2596" /> + <location filename="../UI/UserInterface.py" line="2562" /> <source>Unittest &Project...</source> <translation>项目单元测试(&P)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2598" /> + <location filename="../UI/UserInterface.py" line="2564" /> <source>Run unittest with current project</source> <translation>对当前项目运行单元测试</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2600" /> + <location filename="../UI/UserInterface.py" line="2566" /> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>项目单元测试</b><p>对当前项目运行单元测试。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2621" /> + <location filename="../UI/UserInterface.py" line="2587" /> <source>Qt-Designer</source> <translation>Qt 设计师</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2623" /> + <location filename="../UI/UserInterface.py" line="2589" /> <source>Qt-&Designer...</source> <translation>Qt 设计师(&D)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2625" /> + <location filename="../UI/UserInterface.py" line="2591" /> <source>Start Qt-Designer</source> <translation>启动 Qt 设计师</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2626" /> + <location filename="../UI/UserInterface.py" line="2592" /> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation><b>Qt 设计师</b><p>启动 Qt 设计师。</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2613" /> + <source>Qt-Linguist</source> + <translation>Qt 语言家</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2615" /> + <source>Qt-&Linguist...</source> + <translation>Qt 语言家(&L)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2617" /> + <source>Start Qt-Linguist</source> + <translation>启动 Qt 语言家</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2618" /> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation><b>Qt 语言家</b><p>启动 Qt 语言家。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2628" /> + <source>UI Previewer</source> + <translation>用户界面预览器</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2630" /> + <source>&UI Previewer...</source> + <translation>用户界面预览器(&U)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2632" /> + <source>Start the UI Previewer</source> + <translation>开启用户界面预览器</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2633" /> + <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> + <translation><b>助词界面预览器</b><p>开启用户界面预览器。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2641" /> + <source>Translations Previewer</source> + <translation>翻译预览器</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2643" /> + <source>&Translations Previewer...</source> + <translation>翻译预览器(&T)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2645" /> + <source>Start the Translations Previewer</source> + <translation>开启翻译预览器</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2647" /> - <source>Qt-Linguist</source> - <translation>Qt 语言家</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2649" /> - <source>Qt-&Linguist...</source> - <translation>Qt 语言家(&L)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2651" /> - <source>Start Qt-Linguist</source> - <translation>启动 Qt 语言家</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2652" /> - <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> - <translation><b>Qt 语言家</b><p>启动 Qt 语言家。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2662" /> - <source>UI Previewer</source> - <translation>用户界面预览器</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2664" /> - <source>&UI Previewer...</source> - <translation>用户界面预览器(&U)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2666" /> - <source>Start the UI Previewer</source> - <translation>开启用户界面预览器</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2667" /> - <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> - <translation><b>助词界面预览器</b><p>开启用户界面预览器。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2675" /> - <source>Translations Previewer</source> - <translation>翻译预览器</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2677" /> - <source>&Translations Previewer...</source> - <translation>翻译预览器(&T)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2679" /> - <source>Start the Translations Previewer</source> - <translation>开启翻译预览器</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2681" /> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>翻译预览器</b><p>开启翻译预览器。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2689" /> + <location filename="../UI/UserInterface.py" line="2655" /> <source>Compare Files</source> <translation>比较文件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691" /> + <location filename="../UI/UserInterface.py" line="2657" /> <source>&Compare Files...</source> <translation>比较文件(&C)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2706" /> - <location filename="../UI/UserInterface.py" line="2693" /> + <location filename="../UI/UserInterface.py" line="2672" /> + <location filename="../UI/UserInterface.py" line="2659" /> <source>Compare two files</source> <translation>比较两个文件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2694" /> + <location filename="../UI/UserInterface.py" line="2660" /> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>比较文件</b><p>打开对话框比较两个文件。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2702" /> + <location filename="../UI/UserInterface.py" line="2668" /> <source>Compare Files side by side</source> <translation>并排比较文件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2704" /> + <location filename="../UI/UserInterface.py" line="2670" /> <source>Compare &Files side by side...</source> <translation>并排比较文件(&F)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2707" /> + <location filename="../UI/UserInterface.py" line="2673" /> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>并排比较文件</b><p>打开对话框比较两个文件,并排显示结果。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2716" /> + <location filename="../UI/UserInterface.py" line="2682" /> <source>SQL Browser</source> <translation>SQL 浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2718" /> + <location filename="../UI/UserInterface.py" line="2684" /> <source>SQL &Browser...</source> <translation>SQL 浏览器(&B)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2720" /> + <location filename="../UI/UserInterface.py" line="2686" /> <source>Browse a SQL database</source> <translation>浏览 SQL 数据库</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2721" /> + <location filename="../UI/UserInterface.py" line="2687" /> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL 浏览器</b><p>浏览 SQL 数据库。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2733" /> - <location filename="../UI/UserInterface.py" line="2729" /> + <location filename="../UI/UserInterface.py" line="2699" /> + <location filename="../UI/UserInterface.py" line="2695" /> <source>Mini Editor</source> <translation>小型编辑器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2731" /> + <location filename="../UI/UserInterface.py" line="2697" /> <source>Mini &Editor...</source> <translation>小型编辑器(&E)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2734" /> + <location filename="../UI/UserInterface.py" line="2700" /> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>小型编辑器</b><p>打开一个具有简化功能编辑器的对话框。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2742" /> + <location filename="../UI/UserInterface.py" line="2708" /> <source>Hex Editor</source> <translation>十六进制编辑器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2744" /> + <location filename="../UI/UserInterface.py" line="2710" /> <source>&Hex Editor...</source> <translation>十六进制编辑器(&H)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2746" /> + <location filename="../UI/UserInterface.py" line="2712" /> <source>Start the eric Hex Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2748" /> + <location filename="../UI/UserInterface.py" line="2714" /> <source><b>Hex Editor</b><p>Starts the eric Hex Editor for viewing or editing binary files.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/UserInterface.py" line="2723" /> + <source>eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2725" /> + <source>eric &Web Browser...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2727" /> + <source>Start the eric Web Browser</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2729" /> + <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2737" /> + <source>Icon Editor</source> + <translation>图标编辑器</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2739" /> + <source>&Icon Editor...</source> + <translation>图标编辑器(&I)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2741" /> + <source>Start the eric Icon Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2743" /> + <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2751" /> + <source>Snapshot</source> + <translation>快照</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2753" /> + <source>&Snapshot...</source> + <translation>快照(&S)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2755" /> + <source>Take snapshots of a screen region</source> + <translation>截取屏幕区域的快照</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2757" /> - <source>eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2759" /> - <source>eric &Web Browser...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2761" /> - <source>Start the eric Web Browser</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2763" /> - <source><b>eric Web Browser</b><p>Browse the Internet with the eric Web Browser.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2771" /> - <source>Icon Editor</source> - <translation>图标编辑器</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2773" /> - <source>&Icon Editor...</source> - <translation>图标编辑器(&I)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2775" /> - <source>Start the eric Icon Editor</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2777" /> - <source><b>Icon Editor</b><p>Starts the eric Icon Editor for editing simple icons.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2785" /> - <source>Snapshot</source> - <translation>快照</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2787" /> - <source>&Snapshot...</source> - <translation>快照(&S)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2789" /> - <source>Take snapshots of a screen region</source> - <translation>截取屏幕区域的快照</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2791" /> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation><b>快照</b><p>打开一个对话框来截取屏幕一个区域的快照。</p></translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2766" /> + <source>Preferences</source> + <translation>首选项</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2768" /> + <source>&Preferences...</source> + <translation>首选项(&P)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2770" /> + <source>Set the prefered configuration</source> + <translation>设定偏好配置</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2772" /> + <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> + <translation><b>首选项</b><p>将应用程序的配置项设定为你喜欢的值。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2782" /> + <source>Export Preferences</source> + <translation>导出首选项</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2784" /> + <source>E&xport Preferences...</source> + <translation>导出首选项(&X)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2786" /> + <source>Export the current configuration</source> + <translation>导出当前配置</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2788" /> + <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> + <translation><b>导出首选项</b><p>将当前配置导出到一个文件中。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2796" /> + <source>Import Preferences</source> + <translation>导入首选项</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2798" /> + <source>I&mport Preferences...</source> + <translation>导入首选项(&M)…</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2800" /> - <source>Preferences</source> - <translation>首选项</translation> + <source>Import a previously exported configuration</source> + <translation>导入以前导出的配置</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2802" /> - <source>&Preferences...</source> - <translation>首选项(&P)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2804" /> - <source>Set the prefered configuration</source> - <translation>设定偏好配置</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2806" /> - <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> - <translation><b>首选项</b><p>将应用程序的配置项设定为你喜欢的值。</p></translation> + <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> + <translation><b>导入首选项</b><p>导入以前导出的配置。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2810" /> + <source>Export Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2812" /> + <source>Export Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2814" /> + <source>Export the current theme</source> + <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2816" /> - <source>Export Preferences</source> - <translation>导出首选项</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2818" /> - <source>E&xport Preferences...</source> - <translation>导出首选项(&X)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2820" /> - <source>Export the current configuration</source> - <translation>导出当前配置</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2822" /> - <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> - <translation><b>导出首选项</b><p>将当前配置导出到一个文件中。</p></translation> + <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2824" /> + <source>Import Theme</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2826" /> + <source>Import Theme...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2828" /> + <source>Import a previously exported theme</source> + <translation type="unfinished" /> </message> <message> <location filename="../UI/UserInterface.py" line="2830" /> - <source>Import Preferences</source> - <translation>导入首选项</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2832" /> - <source>I&mport Preferences...</source> - <translation>导入首选项(&M)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2834" /> - <source>Import a previously exported configuration</source> - <translation>导入以前导出的配置</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2836" /> - <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> - <translation><b>导入首选项</b><p>导入以前导出的配置。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2844" /> - <source>Export Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2846" /> - <source>Export Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2848" /> - <source>Export the current theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2850" /> - <source><b>Export Theme</b><p>Export the current theme to a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2858" /> - <source>Import Theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2860" /> - <source>Import Theme...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2862" /> - <source>Import a previously exported theme</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2864" /> <source><b>Import Theme</b><p>Import a previously exported theme.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="2872" /> + <location filename="../UI/UserInterface.py" line="2838" /> <source>Reload APIs</source> <translation>重新载入 API</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2839" /> + <source>Reload &APIs</source> + <translation>重新载入 &API</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2841" /> + <source>Reload the API information</source> + <translation>重新载入 API 信息</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2843" /> + <source><b>Reload APIs</b><p>Reload the API information.</p></source> + <translation><b>重新载入 API</b><p>重新载入 API 信息。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2855" /> + <location filename="../UI/UserInterface.py" line="2851" /> + <source>Show external tools</source> + <translation>显示外部工具</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2853" /> + <source>Show external &tools</source> + <translation>显示外部工具(&T)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2857" /> + <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2867" /> + <source>View Profiles</source> + <translation>视图模式</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2869" /> + <source>&View Profiles...</source> + <translation>视图模式(&V)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2871" /> + <source>Configure view profiles</source> + <translation>配置视图模式</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2873" /> - <source>Reload &APIs</source> - <translation>重新载入 &API</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2875" /> - <source>Reload the API information</source> - <translation>重新载入 API 信息</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2877" /> - <source><b>Reload APIs</b><p>Reload the API information.</p></source> - <translation><b>重新载入 API</b><p>重新载入 API 信息。</p></translation> + <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> + <translation><b>视图模式</b><p>配置视图模式。通过该对话框可以为预先确定的视图设置多个窗口的可见性。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2884" /> + <source>Toolbars</source> + <translation>工具栏</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2886" /> + <source>Tool&bars...</source> + <translation>工具栏(&B)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2888" /> + <source>Configure toolbars</source> + <translation>配置工具栏</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2889" /> - <location filename="../UI/UserInterface.py" line="2885" /> - <source>Show external tools</source> - <translation>显示外部工具</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2887" /> - <source>Show external &tools</source> - <translation>显示外部工具(&T)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2891" /> - <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric.</p></source> - <translation type="unfinished" /> + <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> + <translation><b>工具栏</b><p>配置工具栏通过该对话框可以改变显示于多个工具栏的动作,还可以自定义工具栏。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2899" /> + <source>Keyboard Shortcuts</source> + <translation>键盘快捷键</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2901" /> - <source>View Profiles</source> - <translation>视图模式</translation> + <source>Keyboard &Shortcuts...</source> + <translation>键盘快捷键(&S)…</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2903" /> - <source>&View Profiles...</source> - <translation>视图模式(&V)…</translation> + <source>Set the keyboard shortcuts</source> + <translation>设置键盘快捷键</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2905" /> - <source>Configure view profiles</source> - <translation>配置视图模式</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2907" /> - <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> - <translation><b>视图模式</b><p>配置视图模式。通过该对话框可以为预先确定的视图设置多个窗口的可见性。</p></translation> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation><b>键盘快捷键</b><p>将程序的键盘快捷键设置成你喜欢的按键。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6756" /> + <location filename="../UI/UserInterface.py" line="6738" /> + <location filename="../UI/UserInterface.py" line="2914" /> + <source>Export Keyboard Shortcuts</source> + <translation>导出键盘快捷键</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2916" /> + <source>&Export Keyboard Shortcuts...</source> + <translation>导出键盘快捷键(&E)…</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2918" /> - <source>Toolbars</source> - <translation>工具栏</translation> + <source>Export the keyboard shortcuts</source> + <translation>导出键盘快捷键</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2920" /> - <source>Tool&bars...</source> - <translation>工具栏(&B)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2922" /> - <source>Configure toolbars</source> - <translation>配置工具栏</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2923" /> - <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> - <translation><b>工具栏</b><p>配置工具栏通过该对话框可以改变显示于多个工具栏的动作,还可以自定义工具栏。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2933" /> - <source>Keyboard Shortcuts</source> - <translation>键盘快捷键</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2935" /> - <source>Keyboard &Shortcuts...</source> - <translation>键盘快捷键(&S)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2937" /> - <source>Set the keyboard shortcuts</source> - <translation>设置键盘快捷键</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2939" /> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation><b>键盘快捷键</b><p>将程序的键盘快捷键设置成你喜欢的按键。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6698" /> - <location filename="../UI/UserInterface.py" line="6680" /> - <location filename="../UI/UserInterface.py" line="2948" /> - <source>Export Keyboard Shortcuts</source> - <translation>导出键盘快捷键</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2950" /> - <source>&Export Keyboard Shortcuts...</source> - <translation>导出键盘快捷键(&E)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2952" /> - <source>Export the keyboard shortcuts</source> - <translation>导出键盘快捷键</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2954" /> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>导出键盘快捷键</b><p>导出程序的键盘快捷键。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6715" /> - <location filename="../UI/UserInterface.py" line="2962" /> + <location filename="../UI/UserInterface.py" line="6773" /> + <location filename="../UI/UserInterface.py" line="2928" /> <source>Import Keyboard Shortcuts</source> <translation>导入键盘快捷键</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2964" /> + <location filename="../UI/UserInterface.py" line="2930" /> <source>&Import Keyboard Shortcuts...</source> <translation>导入键盘快捷键(&I)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2966" /> + <location filename="../UI/UserInterface.py" line="2932" /> <source>Import the keyboard shortcuts</source> <translation>导入键盘快捷键</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2968" /> + <location filename="../UI/UserInterface.py" line="2934" /> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>导入键盘快捷键</b><p>导入程序的键盘快捷键。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2977" /> + <location filename="../UI/UserInterface.py" line="2943" /> <source>Manage SSL Certificates</source> <translation>管理 SSL 证书</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2979" /> + <location filename="../UI/UserInterface.py" line="2945" /> <source>Manage SSL Certificates...</source> <translation>管理 SSL 证书…</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="2947" /> + <source>Manage the saved SSL certificates</source> + <translation>管理保存的 SSL 证书</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2949" /> + <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> + <translation><b>管理 SSL 证书…</b><p>打开一个对话框来管理保存的 SSL 证书。</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2959" /> + <source>Edit Message Filters</source> + <translation>编辑消息过滤器</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2961" /> + <source>Edit Message Filters...</source> + <translation>编辑消息过滤器…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2963" /> + <source>Edit the message filters used to suppress unwanted messages</source> + <translation>编辑消息过滤器使得不期望的消息不显示</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2965" /> + <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> + <translation><b>编辑消息过滤器</b><p>打开对话框来编辑消息过滤器,使得不期望的错误信息不再在错误窗口中显示。</p></translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="2981" /> - <source>Manage the saved SSL certificates</source> - <translation>管理保存的 SSL 证书</translation> + <location filename="../UI/UserInterface.py" line="2978" /> + <location filename="../UI/UserInterface.py" line="2976" /> + <source>Clear private data</source> + <translation type="unfinished">清空隐私数据</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2983" /> - <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> - <translation><b>管理 SSL 证书…</b><p>打开一个对话框来管理保存的 SSL 证书。</p></translation> - </message> - <message> + <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" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2994" /> <location filename="../UI/UserInterface.py" line="2993" /> - <source>Edit Message Filters</source> - <translation>编辑消息过滤器</translation> + <source>Activate current editor</source> + <translation>激活当前编辑器</translation> </message> <message> <location filename="../UI/UserInterface.py" line="2995" /> - <source>Edit Message Filters...</source> - <translation>编辑消息过滤器…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2997" /> - <source>Edit the message filters used to suppress unwanted messages</source> - <translation>编辑消息过滤器使得不期望的消息不显示</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2999" /> - <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> - <translation><b>编辑消息过滤器</b><p>打开对话框来编辑消息过滤器,使得不期望的错误信息不再在错误窗口中显示。</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3015" /> - <location filename="../UI/UserInterface.py" line="3012" /> - <location filename="../UI/UserInterface.py" line="3010" /> - <source>Clear private data</source> - <translation type="unfinished">清空隐私数据</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3017" /> - <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" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3028" /> - <location filename="../UI/UserInterface.py" line="3027" /> - <source>Activate current editor</source> - <translation>激活当前编辑器</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3029" /> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3038" /> - <location filename="../UI/UserInterface.py" line="3037" /> + <location filename="../UI/UserInterface.py" line="3004" /> + <location filename="../UI/UserInterface.py" line="3003" /> <source>Show next</source> <translation>显示下一个</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3039" /> + <location filename="../UI/UserInterface.py" line="3005" /> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="3013" /> + <location filename="../UI/UserInterface.py" line="3012" /> + <source>Show previous</source> + <translation>显示上一个</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3014" /> + <source>Shift+Ctrl+Alt+Tab</source> + <translation>Shift+Ctrl+Alt+Tab</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3022" /> + <location filename="../UI/UserInterface.py" line="3021" /> + <source>Switch between tabs</source> + <translation>在选项卡间切换</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3023" /> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3030" /> + <source>Plugin Infos</source> + <translation>插件信息</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3032" /> + <source>&Plugin Infos...</source> + <translation>插件信息(&P)…</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3033" /> + <source>Show Plugin Infos</source> + <translation>显示插件信息</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3034" /> + <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="3047" /> - <location filename="../UI/UserInterface.py" line="3046" /> - <source>Show previous</source> - <translation>显示上一个</translation> + <location filename="../UI/UserInterface.py" line="3043" /> + <source>Install Plugins</source> + <translation>安装插件</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3045" /> + <source>&Install Plugins...</source> + <translation>安装插件(&I)…</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3048" /> - <source>Shift+Ctrl+Alt+Tab</source> - <translation>Shift+Ctrl+Alt+Tab</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3056" /> - <location filename="../UI/UserInterface.py" line="3055" /> - <source>Switch between tabs</source> - <translation>在选项卡间切换</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3057" /> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3064" /> - <source>Plugin Infos</source> - <translation>插件信息</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3066" /> - <source>&Plugin Infos...</source> - <translation>插件信息(&P)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3067" /> - <source>Show Plugin Infos</source> - <translation>显示插件信息</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3068" /> - <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="3081" /> - <location filename="../UI/UserInterface.py" line="3077" /> - <source>Install Plugins</source> - <translation>安装插件</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3079" /> - <source>&Install Plugins...</source> - <translation>安装插件(&I)…</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3082" /> <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="3094" /> - <location filename="../UI/UserInterface.py" line="3090" /> + <location filename="../UI/UserInterface.py" line="3060" /> + <location filename="../UI/UserInterface.py" line="3056" /> <source>Uninstall Plugin</source> <translation>卸载插件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3092" /> + <location filename="../UI/UserInterface.py" line="3058" /> <source>&Uninstall Plugin...</source> <translation>卸载插件(&U)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3095" /> + <location filename="../UI/UserInterface.py" line="3061" /> <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="3105" /> + <location filename="../UI/UserInterface.py" line="3071" /> <source>Plugin &Repository...</source> <translation>插件储存库(&R)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3107" /> + <location filename="../UI/UserInterface.py" line="3073" /> <source>Show Plugins available for download</source> <translation>显示可以下载的插件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3109" /> + <location filename="../UI/UserInterface.py" line="3075" /> <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="3101" /> + <location filename="../UI/UserInterface.py" line="3100" /> + <source>Qt5 Documentation</source> + <translation>Qt5 文档</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3103" /> + <source>Open Qt5 Documentation</source> + <translation>打开 Qt5 文档</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3104" /> + <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3116" /> + <location filename="../UI/UserInterface.py" line="3115" /> + <source>Qt6 Documentation</source> + <translation type="unfinished">Qt5 文档 {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3118" /> + <source>Open Qt6 Documentation</source> + <translation type="unfinished">打开 Qt5 文档 {6 ?}</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3119" /> + <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3131" /> + <location filename="../UI/UserInterface.py" line="3130" /> + <source>PyQt5 Documentation</source> + <translation>PyQt5 文档</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3133" /> + <source>Open PyQt5 Documentation</source> + <translation>打开 PyQt5 文档</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="3135" /> - <location filename="../UI/UserInterface.py" line="3134" /> - <source>Qt5 Documentation</source> - <translation>Qt5 文档</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3137" /> - <source>Open Qt5 Documentation</source> - <translation>打开 Qt5 文档</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3138" /> - <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> + <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3148" /> + <location filename="../UI/UserInterface.py" line="3147" /> + <source>PyQt6 Documentation</source> + <translation type="unfinished">PyQt5 文档 {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3150" /> - <location filename="../UI/UserInterface.py" line="3149" /> - <source>Qt6 Documentation</source> - <translation type="unfinished">Qt5 文档 {6 ?}</translation> + <source>Open PyQt6 Documentation</source> + <translation type="unfinished">打开 PyQt5 文档 {6 ?}</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3152" /> - <source>Open Qt6 Documentation</source> - <translation type="unfinished">打开 Qt5 文档 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3153" /> - <source><b>Qt6 Documentation</b><p>Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3165" /> - <location filename="../UI/UserInterface.py" line="3164" /> - <source>PyQt5 Documentation</source> - <translation>PyQt5 文档</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3167" /> - <source>Open PyQt5 Documentation</source> - <translation>打开 PyQt5 文档</translation> - </message> - <message> + <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3170" /> <location filename="../UI/UserInterface.py" line="3169" /> - <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3182" /> - <location filename="../UI/UserInterface.py" line="3181" /> - <source>PyQt6 Documentation</source> - <translation type="unfinished">PyQt5 文档 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3184" /> - <source>Open PyQt6 Documentation</source> - <translation type="unfinished">打开 PyQt5 文档 {6 ?}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3186" /> - <source><b>PyQt6 Documentation</b><p>Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3204" /> - <location filename="../UI/UserInterface.py" line="3203" /> <source>Python 3 Documentation</source> <translation>Python 3 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3206" /> + <location filename="../UI/UserInterface.py" line="3172" /> <source>Open Python 3 Documentation</source> <translation>打开 Python 3 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3208" /> + <location filename="../UI/UserInterface.py" line="3174" /> <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="3226" /> - <location filename="../UI/UserInterface.py" line="3225" /> + <location filename="../UI/UserInterface.py" line="3192" /> + <location filename="../UI/UserInterface.py" line="3191" /> <source>eric API Documentation</source> <translation type="unfinished">eric API 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3228" /> + <location filename="../UI/UserInterface.py" line="3194" /> <source>Open eric API Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3230" /> + <location filename="../UI/UserInterface.py" line="3196" /> <source><b>eric API Documentation</b><p>Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3247" /> - <location filename="../UI/UserInterface.py" line="3246" /> + <location filename="../UI/UserInterface.py" line="3213" /> + <location filename="../UI/UserInterface.py" line="3212" /> <source>PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3249" /> + <location filename="../UI/UserInterface.py" line="3215" /> <source>Open PySide2 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3251" /> + <location filename="../UI/UserInterface.py" line="3217" /> <source><b>PySide2 Documentation</b><p>Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3267" /> - <location filename="../UI/UserInterface.py" line="3266" /> + <location filename="../UI/UserInterface.py" line="3233" /> + <location filename="../UI/UserInterface.py" line="3232" /> <source>PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3269" /> + <location filename="../UI/UserInterface.py" line="3235" /> <source>Open PySide6 Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3271" /> + <location filename="../UI/UserInterface.py" line="3237" /> <source><b>PySide6 Documentation</b><p>Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3373" /> + <location filename="../UI/UserInterface.py" line="3339" /> <source>E&xtras</source> <translation>附加程序(&X)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3383" /> + <location filename="../UI/UserInterface.py" line="3349" /> <source>Wi&zards</source> <translation>向导(&Z)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3402" /> + <location filename="../UI/UserInterface.py" line="3368" /> <source>P&lugins</source> <translation>插件(&L)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3412" /> + <location filename="../UI/UserInterface.py" line="3378" /> <source>Configure...</source> <translation>配置…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3421" /> + <location filename="../UI/UserInterface.py" line="3387" /> <source>&Unittest</source> <translation>单元测试(&U)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3438" /> + <location filename="../UI/UserInterface.py" line="3404" /> <source>Select Tool Group</source> <translation>选择工具组</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3449" /> + <location filename="../UI/UserInterface.py" line="3415" /> <source>Se&ttings</source> <translation>设置(&T)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3482" /> + <location filename="../UI/UserInterface.py" line="3448" /> <source>&Window</source> <translation>窗口(&W)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3491" /> + <location filename="../UI/UserInterface.py" line="3457" /> <source>&Windows</source> <translation>窗口(&W)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3496" /> + <location filename="../UI/UserInterface.py" line="3462" /> <source>Central Park</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3500" /> + <location filename="../UI/UserInterface.py" line="3466" /> <source>Left Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3517" /> + <location filename="../UI/UserInterface.py" line="3483" /> <source>Right Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3541" /> + <location filename="../UI/UserInterface.py" line="3507" /> <source>Bottom Side</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3549" /> + <location filename="../UI/UserInterface.py" line="3515" /> <source>Plug-ins</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3556" /> + <location filename="../UI/UserInterface.py" line="3522" /> <source>&Toolbars</source> <translation>工具栏(&T)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3569" /> + <location filename="../UI/UserInterface.py" line="3535" /> <source>&Help</source> <translation>帮助(&H)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3642" /> - <location filename="../UI/UserInterface.py" line="3619" /> + <location filename="../UI/UserInterface.py" line="3605" /> + <location filename="../UI/UserInterface.py" line="3582" /> <source>Tools</source> <translation>工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3644" /> - <location filename="../UI/UserInterface.py" line="3623" /> + <location filename="../UI/UserInterface.py" line="3607" /> + <location filename="../UI/UserInterface.py" line="3586" /> <source>Settings</source> <translation>设置</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5541" /> - <location filename="../UI/UserInterface.py" line="3645" /> - <location filename="../UI/UserInterface.py" line="3624" /> + <location filename="../UI/UserInterface.py" line="5600" /> + <location filename="../UI/UserInterface.py" line="3608" /> + <location filename="../UI/UserInterface.py" line="3587" /> <source>Help</source> <translation>帮助</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3646" /> - <location filename="../UI/UserInterface.py" line="3625" /> + <location filename="../UI/UserInterface.py" line="3609" /> + <location filename="../UI/UserInterface.py" line="3588" /> <source>Profiles</source> <translation>模式</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3647" /> - <location filename="../UI/UserInterface.py" line="3626" /> + <location filename="../UI/UserInterface.py" line="3610" /> + <location filename="../UI/UserInterface.py" line="3589" /> <source>Plugins</source> <translation>插件</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811" /> + <location filename="../UI/UserInterface.py" line="3774" /> <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="3818" /> + <location filename="../UI/UserInterface.py" line="3781" /> <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="3825" /> + <location filename="../UI/UserInterface.py" line="3788" /> <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="3832" /> + <location filename="../UI/UserInterface.py" line="3795" /> <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="3839" /> + <location filename="../UI/UserInterface.py" line="3802" /> <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="3846" /> + <location filename="../UI/UserInterface.py" line="3809" /> <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="3857" /> + <location filename="../UI/UserInterface.py" line="3820" /> <source><p>This part of the status bar allows zooming the current editor or shell.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="3922" /> - <location filename="../UI/UserInterface.py" line="3882" /> + <location filename="../UI/UserInterface.py" line="3885" /> + <location filename="../UI/UserInterface.py" line="3845" /> <source>External Tools/{0}</source> <translation>外部工具/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4028" /> + <location filename="../UI/UserInterface.py" line="3991" /> <source><h2>Version Numbers</h2><table></source> <translation type="unfinished"><h3>版本号</h3><table> {2>?} {2>?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4082" /> + <location filename="../UI/UserInterface.py" line="4045" /> <source>Desktop</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="4085" /> + <location filename="../UI/UserInterface.py" line="4048" /> <source>Session Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7778" /> - <location filename="../UI/UserInterface.py" line="4087" /> + <location filename="../UI/UserInterface.py" line="4050" /> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4121" /> + <location filename="../UI/UserInterface.py" line="4084" /> <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="4432" /> + <location filename="../UI/UserInterface.py" line="4395" /> <source>Restart application</source> <translation>重启程序</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4433" /> + <location filename="../UI/UserInterface.py" line="4396" /> <source>The application needs to be restarted. Do it now?</source> <translation>程序需要重启。现在重启?</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="4420" /> + <source>Upgrade PyQt</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4421" /> + <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/UserInterface.py" line="4467" /> + <location filename="../UI/UserInterface.py" line="4443" /> + <source>Upgrade Eric</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4444" /> + <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time. + +Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4468" /> + <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time. + + Shall the upgrade be done now?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="4526" /> <source>&Builtin Tools</source> <translation>内建工具(&B)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4484" /> + <location filename="../UI/UserInterface.py" line="4543" /> <source>&Plugin Tools</source> <translation>插件工具(&P)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4487" /> + <location filename="../UI/UserInterface.py" line="4546" /> <source>&User Tools</source> <translation>用户工具(&U)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4513" /> + <location filename="../UI/UserInterface.py" line="4572" /> <source>Configure Tool Groups ...</source> <translation>配置工具组…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517" /> + <location filename="../UI/UserInterface.py" line="4576" /> <source>Configure current Tool Group ...</source> <translation>配置当前工具组…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4558" /> - <location filename="../UI/UserInterface.py" line="4538" /> + <location filename="../UI/UserInterface.py" line="4617" /> + <location filename="../UI/UserInterface.py" line="4597" /> <source>No User Tools Configured</source> <translation>没有配置的用户工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4632" /> + <location filename="../UI/UserInterface.py" line="4691" /> <source>&Show all</source> <translation>全部显示(&S)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4634" /> + <location filename="../UI/UserInterface.py" line="4693" /> <source>&Hide all</source> <translation>全部隐藏(&H)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5669" /> - <location filename="../UI/UserInterface.py" line="5659" /> - <location filename="../UI/UserInterface.py" line="5612" /> - <location filename="../UI/UserInterface.py" line="5603" /> - <location filename="../UI/UserInterface.py" line="5442" /> - <location filename="../UI/UserInterface.py" line="5433" /> - <location filename="../UI/UserInterface.py" line="5372" /> - <location filename="../UI/UserInterface.py" line="5363" /> + <location filename="../UI/UserInterface.py" line="5728" /> + <location filename="../UI/UserInterface.py" line="5718" /> + <location filename="../UI/UserInterface.py" line="5671" /> + <location filename="../UI/UserInterface.py" line="5662" /> + <location filename="../UI/UserInterface.py" line="5501" /> + <location filename="../UI/UserInterface.py" line="5492" /> + <location filename="../UI/UserInterface.py" line="5431" /> + <location filename="../UI/UserInterface.py" line="5422" /> <source>Problem</source> <translation>问题</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5670" /> - <location filename="../UI/UserInterface.py" line="5660" /> - <location filename="../UI/UserInterface.py" line="5613" /> - <location filename="../UI/UserInterface.py" line="5604" /> - <location filename="../UI/UserInterface.py" line="5443" /> - <location filename="../UI/UserInterface.py" line="5434" /> - <location filename="../UI/UserInterface.py" line="5373" /> - <location filename="../UI/UserInterface.py" line="5364" /> + <location filename="../UI/UserInterface.py" line="5729" /> + <location filename="../UI/UserInterface.py" line="5719" /> + <location filename="../UI/UserInterface.py" line="5672" /> + <location filename="../UI/UserInterface.py" line="5663" /> + <location filename="../UI/UserInterface.py" line="5502" /> + <location filename="../UI/UserInterface.py" line="5493" /> + <location filename="../UI/UserInterface.py" line="5432" /> + <location filename="../UI/UserInterface.py" line="5423" /> <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="5877" /> - <location filename="../UI/UserInterface.py" line="5790" /> - <location filename="../UI/UserInterface.py" line="5705" /> - <location filename="../UI/UserInterface.py" line="5682" /> - <location filename="../UI/UserInterface.py" line="5625" /> - <location filename="../UI/UserInterface.py" line="5575" /> - <location filename="../UI/UserInterface.py" line="5555" /> - <location filename="../UI/UserInterface.py" line="5517" /> - <location filename="../UI/UserInterface.py" line="5508" /> - <location filename="../UI/UserInterface.py" line="5473" /> - <location filename="../UI/UserInterface.py" line="5464" /> - <location filename="../UI/UserInterface.py" line="5403" /> - <location filename="../UI/UserInterface.py" line="5394" /> + <location filename="../UI/UserInterface.py" line="5936" /> + <location filename="../UI/UserInterface.py" line="5849" /> + <location filename="../UI/UserInterface.py" line="5764" /> + <location filename="../UI/UserInterface.py" line="5741" /> + <location filename="../UI/UserInterface.py" line="5684" /> + <location filename="../UI/UserInterface.py" line="5634" /> + <location filename="../UI/UserInterface.py" line="5614" /> + <location filename="../UI/UserInterface.py" line="5576" /> + <location filename="../UI/UserInterface.py" line="5567" /> + <location filename="../UI/UserInterface.py" line="5532" /> + <location filename="../UI/UserInterface.py" line="5523" /> + <location filename="../UI/UserInterface.py" line="5462" /> + <location filename="../UI/UserInterface.py" line="5453" /> <source>Process Generation Error</source> <translation>进程生成错误</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5395" /> + <location filename="../UI/UserInterface.py" line="5454" /> <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="5404" /> + <location filename="../UI/UserInterface.py" line="5463" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5465" /> + <location filename="../UI/UserInterface.py" line="5524" /> <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="5474" /> + <location filename="../UI/UserInterface.py" line="5533" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5509" /> + <location filename="../UI/UserInterface.py" line="5568" /> <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="5518" /> + <location filename="../UI/UserInterface.py" line="5577" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5542" /> + <location filename="../UI/UserInterface.py" line="5601" /> <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="5556" /> + <location filename="../UI/UserInterface.py" line="5615" /> <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="5576" /> + <location filename="../UI/UserInterface.py" line="5635" /> <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="5626" /> + <location filename="../UI/UserInterface.py" line="5685" /> <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="5683" /> + <location filename="../UI/UserInterface.py" line="5742" /> <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="5706" /> + <location filename="../UI/UserInterface.py" line="5765" /> <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="5791" /> + <location filename="../UI/UserInterface.py" line="5850" /> <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="5822" /> - <location filename="../UI/UserInterface.py" line="5813" /> + <location filename="../UI/UserInterface.py" line="5881" /> + <location filename="../UI/UserInterface.py" line="5872" /> <source>External Tools</source> <translation>外部工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5814" /> + <location filename="../UI/UserInterface.py" line="5873" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5823" /> + <location filename="../UI/UserInterface.py" line="5882" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5859" /> + <location filename="../UI/UserInterface.py" line="5918" /> <source>Starting process '{0} {1}'. </source> <translation>正在启动进程“{0} {1}”。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5878" /> + <location filename="../UI/UserInterface.py" line="5937" /> <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" /> </message> <message> - <location filename="../UI/UserInterface.py" line="5953" /> + <location filename="../UI/UserInterface.py" line="6012" /> <source>Process '{0}' has exited. </source> <translation>进程“{0}”已退出。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6225" /> - <location filename="../UI/UserInterface.py" line="6167" /> - <location filename="../UI/UserInterface.py" line="6126" /> - <location filename="../UI/UserInterface.py" line="6058" /> - <location filename="../UI/UserInterface.py" line="5996" /> + <location filename="../UI/UserInterface.py" line="6284" /> + <location filename="../UI/UserInterface.py" line="6226" /> + <location filename="../UI/UserInterface.py" line="6185" /> + <location filename="../UI/UserInterface.py" line="6117" /> + <location filename="../UI/UserInterface.py" line="6055" /> <source>Documentation Missing</source> <translation>文档缺失</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6226" /> - <location filename="../UI/UserInterface.py" line="6168" /> - <location filename="../UI/UserInterface.py" line="6127" /> - <location filename="../UI/UserInterface.py" line="6059" /> - <location filename="../UI/UserInterface.py" line="5997" /> + <location filename="../UI/UserInterface.py" line="6285" /> + <location filename="../UI/UserInterface.py" line="6227" /> + <location filename="../UI/UserInterface.py" line="6186" /> + <location filename="../UI/UserInterface.py" line="6118" /> + <location filename="../UI/UserInterface.py" line="6056" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6208" /> - <location filename="../UI/UserInterface.py" line="6099" /> + <location filename="../UI/UserInterface.py" line="6267" /> + <location filename="../UI/UserInterface.py" line="6158" /> <source>Documentation</source> <translation>文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6100" /> + <location filename="../UI/UserInterface.py" line="6159" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6209" /> + <location filename="../UI/UserInterface.py" line="6268" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6387" /> - <location filename="../UI/UserInterface.py" line="6323" /> + <location filename="../UI/UserInterface.py" line="6446" /> + <location filename="../UI/UserInterface.py" line="6382" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6324" /> + <location filename="../UI/UserInterface.py" line="6383" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6388" /> + <location filename="../UI/UserInterface.py" line="6447" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6430" /> + <location filename="../UI/UserInterface.py" line="6489" /> <source>Open Browser</source> <translation>打开浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6431" /> + <location filename="../UI/UserInterface.py" line="6490" /> <source>Could not start a web browser</source> <translation>无法启动网络浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6682" /> + <location filename="../UI/UserInterface.py" line="6740" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6699" /> + <location filename="../UI/UserInterface.py" line="6757" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6717" /> + <location filename="../UI/UserInterface.py" line="6775" /> <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6909" /> + <location filename="../UI/UserInterface.py" line="6967" /> <source>Read Tasks</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6910" /> + <location filename="../UI/UserInterface.py" line="6968" /> <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="6957" /> + <location filename="../UI/UserInterface.py" line="7015" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6985" /> - <location filename="../UI/UserInterface.py" line="6958" /> + <location filename="../UI/UserInterface.py" line="7043" /> + <location filename="../UI/UserInterface.py" line="7016" /> <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="6984" /> + <location filename="../UI/UserInterface.py" line="7042" /> <source>Read session</source> <translation>读取会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7000" /> + <location filename="../UI/UserInterface.py" line="7058" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7002" /> + <location filename="../UI/UserInterface.py" line="7060" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="7082" /> <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7072" /> + <location filename="../UI/UserInterface.py" line="7130" /> <source>Crash Session found!</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7073" /> + <location filename="../UI/UserInterface.py" line="7131" /> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7374" /> + <location filename="../UI/UserInterface.py" line="7432" /> <source>Drop Error</source> <translation>降落误差</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7375" /> + <location filename="../UI/UserInterface.py" line="7433" /> <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="7552" /> - <source>&Cancel</source> - <translation>取消(&C)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7554" /> - <source>%v/%m</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7556" /> - <source>Version Check</source> - <translation>版本检查</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7561" /> - <source>Trying host {0}</source> - <translation>正在尝试主机 {0}</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7630" /> - <location filename="../UI/UserInterface.py" line="7623" /> - <location filename="../UI/UserInterface.py" line="7574" /> - <source>Error getting versions information</source> - <translation>获取版本信息出错</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7575" /> - <source>The versions information cannot not be downloaded because the Internet is <b>not reachable</b>. Please try again later.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7624" /> - <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="7597" /> + <source>Upgrade available</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7598" /> + <source>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="7642" /> <location filename="../UI/UserInterface.py" line="7631" /> - <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> - <translation>过去7天均无法获取版本信息。请连线并再试一次。</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7722" /> - <location filename="../UI/UserInterface.py" line="7688" /> - <source>Update available</source> - <translation>可用更新</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7723" /> - <location filename="../UI/UserInterface.py" line="7689" /> - <source>The update to <b>{0}</b> of eric is available at <b>{1}</b>. Would you like to get it?</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7710" /> - <location filename="../UI/UserInterface.py" line="7700" /> - <source>Update Check</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7701" /> - <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7711" /> - <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7734" /> - <source>eric is up to date</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7735" /> - <source>You are using the latest version of eric</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7741" /> - <source>Error during updates check</source> - <translation>检查更新时出错</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7742" /> - <source>Could not perform updates check.</source> - <translation>无法完成更新检查。</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7763" /> - <source><h3>Available versions</h3><table></source> - <translation><h3>可用版本</h3><table></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="7829" /> - <location filename="../UI/UserInterface.py" line="7818" /> <source>First time usage</source> <translation>第一次使用</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7819" /> + <location filename="../UI/UserInterface.py" line="7632" /> <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7830" /> + <location filename="../UI/UserInterface.py" line="7643" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7850" /> + <location filename="../UI/UserInterface.py" line="7663" /> <source>Select Workspace Directory</source> <translation>选择工作区目录</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8027" /> + <location filename="../UI/UserInterface.py" line="7840" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8028" /> + <location filename="../UI/UserInterface.py" line="7841" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> <message> + <source>&Cancel</source> + <translation type="vanished">取消(&C)</translation> + </message> + <message> + <source>Version Check</source> + <translation type="vanished">版本检查</translation> + </message> + <message> + <source>Trying host {0}</source> + <translation type="vanished">正在尝试主机 {0}</translation> + </message> + <message> + <source>Error getting versions information</source> + <translation type="vanished">获取版本信息出错</translation> + </message> + <message> + <source>The versions information could not be downloaded. Please go online and try again.</source> + <translation type="vanished">无法获取版本信息。请连线并再试一次。</translation> + </message> + <message> + <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> + <translation type="vanished">过去7天均无法获取版本信息。请连线并再试一次。</translation> + </message> + <message> + <source>Update available</source> + <translation type="vanished">可用更新</translation> + </message> + <message> + <source>Error during updates check</source> + <translation type="vanished">检查更新时出错</translation> + </message> + <message> + <source>Could not perform updates check.</source> + <translation type="vanished">无法完成更新检查。</translation> + </message> + <message> + <source><h3>Available versions</h3><table></source> + <translation type="vanished"><h3>可用版本</h3><table></translation> + </message> + <message> + <source>Check for Updates</source> + <translation type="vanished">检查更新</translation> + </message> + <message> + <source>Check for &Updates...</source> + <translation type="vanished">检查更新(&U)…</translation> + </message> + <message> + <source>Show downloadable versions</source> + <translation type="vanished">显示可下载的版本</translation> + </message> + <message> + <source>Show &downloadable versions...</source> + <translation type="vanished">显示可下载的版本(&D)…</translation> + </message> + <message> + <source>Show the versions available for download</source> + <translation type="vanished">显示可以下载的版本</translation> + </message> + <message> <source>Eric API Documentation</source> <translation type="vanished">Eric API 文档</translation> </message> @@ -90459,6 +90702,49 @@ </message> </context> <context> + <name>VersionsDialog</name> + <message> + <location filename="../UI/VersionsDialog.py" line="49" /> + <source>Check for Upgrades...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="92" /> + <source>No upgrades available.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="96" /> + <source>Upgrade eric7...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="100" /> + <source><p>An upgrade of <b>eric7</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="105" /> + <source>Upgrade PyQt6...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="109" /> + <source><p>An upgrade of <b>PyQt6</b> is available.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="114" /> + <source>Upgrade Both...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/VersionsDialog.py" line="128" /> + <source>Check for Upgrades</source> + <translation type="unfinished" /> + </message> + </context> + <context> <name>ViewManager</name> <message> <location filename="../HexEdit/HexEditMainWindow.py" line="518" /> @@ -95262,7 +95548,7 @@ <context> <name>VirtualenvInterpreterSelectionDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="45" /> + <location filename="../VirtualEnv/VirtualenvInterpreterSelectionDialog.py" line="47" /> <source>Python Interpreter</source> <translation type="unfinished" /> </message> @@ -95290,54 +95576,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="232" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="243" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="233" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="244" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="295" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="306" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="346" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="296" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="307" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="345" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="433" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="369" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="444" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="380" /> <source>{0} - {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="377" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="378" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="441" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="452" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="453" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -96350,22 +96636,22 @@ <context> <name>WebBrowserPage</name> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="195" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="189" /> <source>Suspicuous URL detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="196" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="190" /> <source><p>The URL <b>{0}</b> was found in the Safe Browsing database.</p>{1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="663" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="657" /> <source>SSL Info</source> <translation type="unfinished">SSL 信息</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserPage.py" line="664" /> + <location filename="../WebBrowser/WebBrowserPage.py" line="658" /> <source>This site does not contain SSL information.</source> <translation type="unfinished">这个站点未包括 SSL 信息。</translation> </message> @@ -97685,12 +97971,12 @@ <translation type="unfinished">保存网页</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2282" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2287" /> <source>Quota Request</source> <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283" /> + <location filename="../WebBrowser/WebBrowserView.py" line="2288" /> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished" /> </message>
--- a/eric7/icons/breeze-dark/sbLogViewer48.svg Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/icons/breeze-dark/sbLogViewer48.svg Sat Apr 02 11:23:11 2022 +0200 @@ -1,186 +1,47 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + viewBox="0 0 48 48" version="1.1" - viewBox="0 0 48 48" - id="svg54" + id="svg6" sodipodi:docname="sbLogViewer48.svg" width="48" height="48" - inkscape:version="1.0.2 (e86c870879, 2021-01-15)"> - <metadata - id="metadata60"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs58" /> + inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> <sodipodi:namedview + id="namedview8" pagecolor="#ffffff" bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" + borderopacity="1.0" inkscape:pageshadow="2" - inkscape:window-width="1581" - inkscape:window-height="990" - id="namedview56" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" showgrid="false" - inkscape:zoom="16.25" - inkscape:cx="25.094552" - inkscape:cy="23.132689" - inkscape:window-x="0" + inkscape:zoom="14.318182" + inkscape:cx="29.053968" + inkscape:cy="28.565079" + inkscape:window-width="2580" + inkscape:window-height="1080" + inkscape:window-x="856" inkscape:window-y="0" inkscape:window-maximized="0" - inkscape:current-layer="svg54" /> - <linearGradient - id="c" - x1="386.57001" - x2="386.57001" - y1="527.13" - y2="504.91" - gradientTransform="matrix(0.71429,0,0,0.70714,-276.55,-352.47)" - gradientUnits="userSpaceOnUse"> - <stop - stop-color="#1d1e1e" - offset="0" - id="stop2" /> - <stop - stop-color="#44484c" - offset="1" - id="stop4" /> - </linearGradient> - <linearGradient - id="d" - x1="-2" - x2="-2" - y1="30" - y2="2" - gradientTransform="matrix(0.71429,0,0,0.71429,-0.42857,-0.42857)" - gradientUnits="userSpaceOnUse"> - <stop - stop-color="#c6cdd1" - offset="0" - id="stop7" /> - <stop - stop-color="#e0e5e7" - offset="1" - id="stop9" /> - </linearGradient> - <rect - x="5.9312716" - y="5.9312716" - width="36.137455" - height="36.137451" - fill="#232629" - stroke="#eff0f1" - stroke-width="3.86255" - id="rect12" /> - <g - transform="matrix(1.5999759,0,0,1.5999758,6.3670651,6.5704622)" - id="g52"> - <g - stroke-width="0.71429" - id="g42"> - <path - d="M 1,1 V 21 H 21 V 1 Z" - fill="url(#d)" - id="path14" - style="fill:url(#d)" /> - <path - d="m 1,4.5714 h 20 v 14.286 H 1 Z" - fill="url(#c)" - id="path16" - style="fill:url(#c)" /> - <path - d="M 1,1 H 21 V 3.8571 H 1 Z" - fill="#566069" - id="path18" /> - <path - d="M 1,3.8571 H 21 V 4.57139 H 1 Z" - fill="#3daee9" - id="path20" /> - <rect - x="18.857" - y="1.7143" - width="1.4286" - height="1.4286" - rx="0.71429002" - fill="#eff0f1" - id="rect22" /> - <circle - cx="4.9285998" - cy="14.929" - r="2.5" - fill="#eff0f1" - id="circle24" /> - <circle - cx="4.9285998" - cy="14.929" - r="1.7857" - fill="#3daefd" - id="circle26" /> - <path - d="m 8.8571,7.4286 h 1.4286 V 8.14289 H 8.8571 Z m 2.1429,0 h 2.1429 V 8.14289 H 11 Z" - fill="#da4453" - id="path28" /> - <path - d="m 15.286,7.4286 h 2.1429 V 8.14289 H 15.286 Z m 0,1.4286 h 4.2857 V 9.57149 H 15.286 Z m 2.8571,-1.4286 h 1.4286 v 0.71429 h -1.4286 z" - fill="#95a5a6" - id="path30" /> - <path - d="m 8.8571,8.8571 h 2.8571 V 9.57139 H 8.8571 Z m 3.5714,0 h 1.4286 v 0.71429 h -1.4286 z" - fill="#bdc3c7" - id="path32" /> - <path - d="m 8.8571,13.857 h 1.4286 v 0.71429 H 8.8571 Z m 2.1429,0 h 2.1429 v 0.71429 H 11 Z" - fill="#3daefd" - id="path34" /> - <path - d="m 15.286,13.857 h 2.8571 v 0.71429 H 15.286 Z" - fill="#95a5a6" - id="path36" /> - <path - d="M 8.8571,15.286 H 11 v 0.71429 H 8.8571 Z" - fill="#bdc3c7" - id="path38" /> - <path - d="m 15.286,15.286 h 2.1429 v 0.71429 H 15.286 Z m 2.8571,0 h 0.71429 v 0.71429 H 18.1431 Z m 0.71429,-1.4286 h 0.71429 v 0.71429 h -0.71429 z" - fill="#95a5a6" - id="path40" /> - </g> - <g - transform="matrix(0.71429,0,0,0.71429,-0.42857,-0.42857)" - fill-rule="evenodd" - id="g48"> - <path - d="m 7.5,8.92 -3.501,1.467 c 0,0 0.416,1.902 0.867,3 0.225,0.551 0.5,1.121 0.889,1.617 0.389,0.496 0.965,0.99 1.745,0.99 0.78,0 1.354,-0.494 1.743,-0.99 0.389,-0.496 0.664,-1.066 0.889,-1.617 0.451,-1.102 0.869,-3 0.869,-3 z" - fill="#eff0f1" - id="path44" /> - <path - d="M 5,11 7.5,10 10,11 C 10,11 9.072,15 7.5,15 5.928,15 5,11 5,11" - fill="#da4453" - id="path46" /> - </g> - <path - d="m 1,20.286 h 20 v 0.71429 H 1 Z" - fill="#99a1a7" - stroke-width="0.71429" - id="path50" /> - </g> + inkscape:current-layer="svg6" /> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#eff0f1; + } + </style> + </defs> + <path + style="fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2.5" + d="M 4,4 V 6.5 H 44 V 4 Z m 0,5 v 2.5 H 26.5 V 9 Z m 0,10 v 2.5 H 44 V 19 Z m 0,5 v 2.5 H 29 V 24 Z m 0,10 v 2.5 H 44 V 34 Z m 0,5 v 2.5 H 36.5 V 39 Z m 35,2.5 V 44 h 5 v -2.5 z" + class="ColorScheme-Text" + id="path4" /> </svg>
--- a/eric7/icons/breeze-dark/sbLogViewer96.svg Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/icons/breeze-dark/sbLogViewer96.svg Sat Apr 02 11:23:11 2022 +0200 @@ -1,195 +1,47 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + viewBox="0 0 96 96" version="1.1" - viewBox="0 0 96 96" - id="svg54" + id="svg6" sodipodi:docname="sbLogViewer96.svg" width="96" height="96" - inkscape:version="0.92.0 r15299"> - <metadata - id="metadata60"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs58" /> + inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> <sodipodi:namedview + id="namedview8" pagecolor="#ffffff" bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" + borderopacity="1.0" inkscape:pageshadow="2" - inkscape:window-width="1581" - inkscape:window-height="990" - id="namedview56" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" showgrid="false" - inkscape:zoom="16.25" - inkscape:cx="25.094552" - inkscape:cy="23.132689" - inkscape:window-x="0" + inkscape:zoom="7.1590909" + inkscape:cx="40.787302" + inkscape:cy="54.057143" + inkscape:window-width="2580" + inkscape:window-height="1080" + inkscape:window-x="856" inkscape:window-y="0" inkscape:window-maximized="0" - inkscape:current-layer="svg54" /> - <linearGradient - id="c" - x1="386.57001" - x2="386.57001" - y1="527.13" - y2="504.91" - gradientTransform="matrix(0.71429,0,0,0.70714,-276.55,-352.47)" - gradientUnits="userSpaceOnUse"> - <stop - stop-color="#1d1e1e" - offset="0" - id="stop2" /> - <stop - stop-color="#44484c" - offset="1" - id="stop4" /> - </linearGradient> - <linearGradient - id="d" - x1="-2" - x2="-2" - y1="30" - y2="2" - gradientTransform="matrix(0.71429,0,0,0.71429,-0.42857,-0.42857)" - gradientUnits="userSpaceOnUse"> - <stop - stop-color="#c6cdd1" - offset="0" - id="stop7" /> - <stop - stop-color="#e0e5e7" - offset="1" - id="stop9" /> - </linearGradient> - <rect - x="10.055677" - y="10.055676" - width="75.888641" - height="75.888649" - id="rect12" - style="fill:#232629;stroke:#eff0f1;stroke-width:8.11135483" /> - <g - transform="matrix(3.3599489,0,0,3.3599491,10.970844,11.397979)" - id="g52"> - <g - id="g42" - style="stroke-width:0.71429002"> - <path - d="M 1,1 V 21 H 21 V 1 Z" - id="path14" - style="fill:url(#d)" - inkscape:connector-curvature="0" /> - <path - d="m 1,4.5714 h 20 v 14.286 H 1 Z" - id="path16" - style="fill:url(#c)" - inkscape:connector-curvature="0" /> - <path - d="M 1,1 H 21 V 3.8571 H 1 Z" - id="path18" - inkscape:connector-curvature="0" - style="fill:#566069" /> - <path - d="M 1,3.8571 H 21 V 4.57139 H 1 Z" - id="path20" - inkscape:connector-curvature="0" - style="fill:#3daee9" /> - <rect - x="18.857" - y="1.7143" - width="1.4286" - height="1.4286" - rx="0.71429002" - id="rect22" - style="fill:#eff0f1" /> - <circle - cx="4.9285998" - cy="14.929" - r="2.5" - id="circle24" - style="fill:#eff0f1" /> - <circle - cx="4.9285998" - cy="14.929" - r="1.7857" - id="circle26" - style="fill:#3daefd" /> - <path - d="m 8.8571,7.4286 h 1.4286 V 8.14289 H 8.8571 Z m 2.1429,0 h 2.1429 V 8.14289 H 11 Z" - id="path28" - inkscape:connector-curvature="0" - style="fill:#da4453" /> - <path - d="m 15.286,7.4286 h 2.1429 V 8.14289 H 15.286 Z m 0,1.4286 h 4.2857 V 9.57149 H 15.286 Z m 2.8571,-1.4286 h 1.4286 v 0.71429 h -1.4286 z" - id="path30" - inkscape:connector-curvature="0" - style="fill:#95a5a6" /> - <path - d="m 8.8571,8.8571 h 2.8571 V 9.57139 H 8.8571 Z m 3.5714,0 h 1.4286 v 0.71429 h -1.4286 z" - id="path32" - inkscape:connector-curvature="0" - style="fill:#bdc3c7" /> - <path - d="m 8.8571,13.857 h 1.4286 v 0.71429 H 8.8571 Z m 2.1429,0 h 2.1429 v 0.71429 H 11 Z" - id="path34" - inkscape:connector-curvature="0" - style="fill:#3daefd" /> - <path - d="m 15.286,13.857 h 2.8571 v 0.71429 H 15.286 Z" - id="path36" - inkscape:connector-curvature="0" - style="fill:#95a5a6" /> - <path - d="M 8.8571,15.286 H 11 v 0.71429 H 8.8571 Z" - id="path38" - inkscape:connector-curvature="0" - style="fill:#bdc3c7" /> - <path - d="m 15.286,15.286 h 2.1429 v 0.71429 H 15.286 Z m 2.8571,0 h 0.71429 v 0.71429 H 18.1431 Z m 0.71429,-1.4286 h 0.71429 v 0.71429 h -0.71429 z" - id="path40" - inkscape:connector-curvature="0" - style="fill:#95a5a6" /> - </g> - <g - transform="matrix(0.71429,0,0,0.71429,-0.42857,-0.42857)" - id="g48" - style="fill-rule:evenodd"> - <path - d="m 7.5,8.92 -3.501,1.467 c 0,0 0.416,1.902 0.867,3 0.225,0.551 0.5,1.121 0.889,1.617 0.389,0.496 0.965,0.99 1.745,0.99 0.78,0 1.354,-0.494 1.743,-0.99 0.389,-0.496 0.664,-1.066 0.889,-1.617 0.451,-1.102 0.869,-3 0.869,-3 z" - id="path44" - inkscape:connector-curvature="0" - style="fill:#eff0f1" /> - <path - d="M 5,11 7.5,10 10,11 C 10,11 9.072,15 7.5,15 5.928,15 5,11 5,11" - id="path46" - inkscape:connector-curvature="0" - style="fill:#da4453" /> - </g> - <path - d="m 1,20.286 h 20 v 0.71429 H 1 Z" - id="path50" - inkscape:connector-curvature="0" - style="fill:#99a1a7;stroke-width:0.71429002" /> - </g> + inkscape:current-layer="svg6" /> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#eff0f1; + } + </style> + </defs> + <path + style="fill:currentColor;fill-opacity:1;stroke:none;stroke-width:5.24999" + d="m 6,6 v 5.25 H 90 V 6 Z m 0,10.5 v 5.25 H 53.25 V 16.5 Z m 0,21 v 5.25 H 90 V 37.5 Z M 6,48 v 5.25 H 58.5 V 48 Z m 0,21 v 5.25 H 90 V 69 Z m 0,10.5 v 5.25 H 74.25 V 79.5 Z m 73.5,5.25 V 90 H 90 v -5.25 z" + class="ColorScheme-Text" + id="path4" /> </svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/icons/breeze-dark/viewListTree.svg Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + viewBox="0 0 22 22" + version="1.1" + id="svg6" + sodipodi:docname="viewListTree.svg" + inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview + id="namedview8" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="28.636364" + inkscape:cx="11" + inkscape:cy="11" + inkscape:window-width="2580" + inkscape:window-height="1080" + inkscape:window-x="-4" + inkscape:window-y="293" + inkscape:window-maximized="0" + inkscape:current-layer="svg6" /> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#232629; + } + </style> + </defs> + <path + style="fill:#eff0f1;fill-opacity:1;stroke:none;stroke-width:1.25" + d="m 1,1 v 8.75 h 7.5 v 7.5 h 1.25 2.5 V 21 H 21 V 12.25 H 12.25 V 16 H 9.75 V 9.75 6 h 2.5 V 9.75 H 21 V 1 H 12.25 V 4.75 H 9.75 V 1 Z M 2.25,2.25 H 8.5 V 8.5 H 2.25 Z m 11.25,0 h 6.25 V 8.5 H 13.5 Z" + class="ColorScheme-Text" + id="path4" /> +</svg>
--- a/eric7/icons/breeze-light/sbLogViewer48.svg Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/icons/breeze-light/sbLogViewer48.svg Sat Apr 02 11:23:11 2022 +0200 @@ -1,186 +1,47 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + viewBox="0 0 48 48" version="1.1" - viewBox="0 0 48 48" - id="svg54" + id="svg6" sodipodi:docname="sbLogViewer48.svg" width="48" height="48" - inkscape:version="1.0.2 (e86c870879, 2021-01-15)"> - <metadata - id="metadata60"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs58" /> + inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> <sodipodi:namedview + id="namedview8" pagecolor="#ffffff" bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" + borderopacity="1.0" inkscape:pageshadow="2" - inkscape:window-width="1581" - inkscape:window-height="990" - id="namedview56" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" showgrid="false" - inkscape:zoom="16.25" - inkscape:cx="25.094552" - inkscape:cy="23.132689" - inkscape:window-x="0" + inkscape:zoom="14.318182" + inkscape:cx="29.053968" + inkscape:cy="28.565079" + inkscape:window-width="2580" + inkscape:window-height="1080" + inkscape:window-x="856" inkscape:window-y="0" inkscape:window-maximized="0" - inkscape:current-layer="svg54" /> - <linearGradient - id="c" - x1="386.57001" - x2="386.57001" - y1="527.13" - y2="504.91" - gradientTransform="matrix(0.71429,0,0,0.70714,-276.55,-352.47)" - gradientUnits="userSpaceOnUse"> - <stop - stop-color="#1d1e1e" - offset="0" - id="stop2" /> - <stop - stop-color="#44484c" - offset="1" - id="stop4" /> - </linearGradient> - <linearGradient - id="d" - x1="-2" - x2="-2" - y1="30" - y2="2" - gradientTransform="matrix(0.71429,0,0,0.71429,-0.42857,-0.42857)" - gradientUnits="userSpaceOnUse"> - <stop - stop-color="#c6cdd1" - offset="0" - id="stop7" /> - <stop - stop-color="#e0e5e7" - offset="1" - id="stop9" /> - </linearGradient> - <rect - x="5.9312716" - y="5.9312716" - width="36.137455" - height="36.137451" - fill="#232629" - stroke="#eff0f1" - stroke-width="3.86255" - id="rect12" /> - <g - transform="matrix(1.5999759,0,0,1.5999758,6.3670651,6.5704622)" - id="g52"> - <g - stroke-width="0.71429" - id="g42"> - <path - d="M 1,1 V 21 H 21 V 1 Z" - fill="url(#d)" - id="path14" - style="fill:url(#d)" /> - <path - d="m 1,4.5714 h 20 v 14.286 H 1 Z" - fill="url(#c)" - id="path16" - style="fill:url(#c)" /> - <path - d="M 1,1 H 21 V 3.8571 H 1 Z" - fill="#566069" - id="path18" /> - <path - d="M 1,3.8571 H 21 V 4.57139 H 1 Z" - fill="#3daee9" - id="path20" /> - <rect - x="18.857" - y="1.7143" - width="1.4286" - height="1.4286" - rx="0.71429002" - fill="#eff0f1" - id="rect22" /> - <circle - cx="4.9285998" - cy="14.929" - r="2.5" - fill="#eff0f1" - id="circle24" /> - <circle - cx="4.9285998" - cy="14.929" - r="1.7857" - fill="#3daefd" - id="circle26" /> - <path - d="m 8.8571,7.4286 h 1.4286 V 8.14289 H 8.8571 Z m 2.1429,0 h 2.1429 V 8.14289 H 11 Z" - fill="#da4453" - id="path28" /> - <path - d="m 15.286,7.4286 h 2.1429 V 8.14289 H 15.286 Z m 0,1.4286 h 4.2857 V 9.57149 H 15.286 Z m 2.8571,-1.4286 h 1.4286 v 0.71429 h -1.4286 z" - fill="#95a5a6" - id="path30" /> - <path - d="m 8.8571,8.8571 h 2.8571 V 9.57139 H 8.8571 Z m 3.5714,0 h 1.4286 v 0.71429 h -1.4286 z" - fill="#bdc3c7" - id="path32" /> - <path - d="m 8.8571,13.857 h 1.4286 v 0.71429 H 8.8571 Z m 2.1429,0 h 2.1429 v 0.71429 H 11 Z" - fill="#3daefd" - id="path34" /> - <path - d="m 15.286,13.857 h 2.8571 v 0.71429 H 15.286 Z" - fill="#95a5a6" - id="path36" /> - <path - d="M 8.8571,15.286 H 11 v 0.71429 H 8.8571 Z" - fill="#bdc3c7" - id="path38" /> - <path - d="m 15.286,15.286 h 2.1429 v 0.71429 H 15.286 Z m 2.8571,0 h 0.71429 v 0.71429 H 18.1431 Z m 0.71429,-1.4286 h 0.71429 v 0.71429 h -0.71429 z" - fill="#95a5a6" - id="path40" /> - </g> - <g - transform="matrix(0.71429,0,0,0.71429,-0.42857,-0.42857)" - fill-rule="evenodd" - id="g48"> - <path - d="m 7.5,8.92 -3.501,1.467 c 0,0 0.416,1.902 0.867,3 0.225,0.551 0.5,1.121 0.889,1.617 0.389,0.496 0.965,0.99 1.745,0.99 0.78,0 1.354,-0.494 1.743,-0.99 0.389,-0.496 0.664,-1.066 0.889,-1.617 0.451,-1.102 0.869,-3 0.869,-3 z" - fill="#eff0f1" - id="path44" /> - <path - d="M 5,11 7.5,10 10,11 C 10,11 9.072,15 7.5,15 5.928,15 5,11 5,11" - fill="#da4453" - id="path46" /> - </g> - <path - d="m 1,20.286 h 20 v 0.71429 H 1 Z" - fill="#99a1a7" - stroke-width="0.71429" - id="path50" /> - </g> + inkscape:current-layer="svg6" /> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#eff0f1; + } + </style> + </defs> + <path + style="fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2.5" + d="M 4,4 V 6.5 H 44 V 4 Z m 0,5 v 2.5 H 26.5 V 9 Z m 0,10 v 2.5 H 44 V 19 Z m 0,5 v 2.5 H 29 V 24 Z m 0,10 v 2.5 H 44 V 34 Z m 0,5 v 2.5 H 36.5 V 39 Z m 35,2.5 V 44 h 5 v -2.5 z" + class="ColorScheme-Text" + id="path4" /> </svg>
--- a/eric7/icons/breeze-light/sbLogViewer96.svg Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/icons/breeze-light/sbLogViewer96.svg Sat Apr 02 11:23:11 2022 +0200 @@ -1,195 +1,47 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + viewBox="0 0 96 96" version="1.1" - viewBox="0 0 96 96" - id="svg54" + id="svg6" sodipodi:docname="sbLogViewer96.svg" width="96" height="96" - inkscape:version="0.92.0 r15299"> - <metadata - id="metadata60"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs58" /> + inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> <sodipodi:namedview + id="namedview8" pagecolor="#ffffff" bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" + borderopacity="1.0" inkscape:pageshadow="2" - inkscape:window-width="1581" - inkscape:window-height="990" - id="namedview56" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" showgrid="false" - inkscape:zoom="16.25" - inkscape:cx="25.094552" - inkscape:cy="23.132689" - inkscape:window-x="0" + inkscape:zoom="7.1590909" + inkscape:cx="40.787302" + inkscape:cy="54.057143" + inkscape:window-width="2580" + inkscape:window-height="1080" + inkscape:window-x="856" inkscape:window-y="0" inkscape:window-maximized="0" - inkscape:current-layer="svg54" /> - <linearGradient - id="c" - x1="386.57001" - x2="386.57001" - y1="527.13" - y2="504.91" - gradientTransform="matrix(0.71429,0,0,0.70714,-276.55,-352.47)" - gradientUnits="userSpaceOnUse"> - <stop - stop-color="#1d1e1e" - offset="0" - id="stop2" /> - <stop - stop-color="#44484c" - offset="1" - id="stop4" /> - </linearGradient> - <linearGradient - id="d" - x1="-2" - x2="-2" - y1="30" - y2="2" - gradientTransform="matrix(0.71429,0,0,0.71429,-0.42857,-0.42857)" - gradientUnits="userSpaceOnUse"> - <stop - stop-color="#c6cdd1" - offset="0" - id="stop7" /> - <stop - stop-color="#e0e5e7" - offset="1" - id="stop9" /> - </linearGradient> - <rect - x="10.055677" - y="10.055676" - width="75.888641" - height="75.888649" - id="rect12" - style="fill:#232629;stroke:#eff0f1;stroke-width:8.11135483" /> - <g - transform="matrix(3.3599489,0,0,3.3599491,10.970844,11.397979)" - id="g52"> - <g - id="g42" - style="stroke-width:0.71429002"> - <path - d="M 1,1 V 21 H 21 V 1 Z" - id="path14" - style="fill:url(#d)" - inkscape:connector-curvature="0" /> - <path - d="m 1,4.5714 h 20 v 14.286 H 1 Z" - id="path16" - style="fill:url(#c)" - inkscape:connector-curvature="0" /> - <path - d="M 1,1 H 21 V 3.8571 H 1 Z" - id="path18" - inkscape:connector-curvature="0" - style="fill:#566069" /> - <path - d="M 1,3.8571 H 21 V 4.57139 H 1 Z" - id="path20" - inkscape:connector-curvature="0" - style="fill:#3daee9" /> - <rect - x="18.857" - y="1.7143" - width="1.4286" - height="1.4286" - rx="0.71429002" - id="rect22" - style="fill:#eff0f1" /> - <circle - cx="4.9285998" - cy="14.929" - r="2.5" - id="circle24" - style="fill:#eff0f1" /> - <circle - cx="4.9285998" - cy="14.929" - r="1.7857" - id="circle26" - style="fill:#3daefd" /> - <path - d="m 8.8571,7.4286 h 1.4286 V 8.14289 H 8.8571 Z m 2.1429,0 h 2.1429 V 8.14289 H 11 Z" - id="path28" - inkscape:connector-curvature="0" - style="fill:#da4453" /> - <path - d="m 15.286,7.4286 h 2.1429 V 8.14289 H 15.286 Z m 0,1.4286 h 4.2857 V 9.57149 H 15.286 Z m 2.8571,-1.4286 h 1.4286 v 0.71429 h -1.4286 z" - id="path30" - inkscape:connector-curvature="0" - style="fill:#95a5a6" /> - <path - d="m 8.8571,8.8571 h 2.8571 V 9.57139 H 8.8571 Z m 3.5714,0 h 1.4286 v 0.71429 h -1.4286 z" - id="path32" - inkscape:connector-curvature="0" - style="fill:#bdc3c7" /> - <path - d="m 8.8571,13.857 h 1.4286 v 0.71429 H 8.8571 Z m 2.1429,0 h 2.1429 v 0.71429 H 11 Z" - id="path34" - inkscape:connector-curvature="0" - style="fill:#3daefd" /> - <path - d="m 15.286,13.857 h 2.8571 v 0.71429 H 15.286 Z" - id="path36" - inkscape:connector-curvature="0" - style="fill:#95a5a6" /> - <path - d="M 8.8571,15.286 H 11 v 0.71429 H 8.8571 Z" - id="path38" - inkscape:connector-curvature="0" - style="fill:#bdc3c7" /> - <path - d="m 15.286,15.286 h 2.1429 v 0.71429 H 15.286 Z m 2.8571,0 h 0.71429 v 0.71429 H 18.1431 Z m 0.71429,-1.4286 h 0.71429 v 0.71429 h -0.71429 z" - id="path40" - inkscape:connector-curvature="0" - style="fill:#95a5a6" /> - </g> - <g - transform="matrix(0.71429,0,0,0.71429,-0.42857,-0.42857)" - id="g48" - style="fill-rule:evenodd"> - <path - d="m 7.5,8.92 -3.501,1.467 c 0,0 0.416,1.902 0.867,3 0.225,0.551 0.5,1.121 0.889,1.617 0.389,0.496 0.965,0.99 1.745,0.99 0.78,0 1.354,-0.494 1.743,-0.99 0.389,-0.496 0.664,-1.066 0.889,-1.617 0.451,-1.102 0.869,-3 0.869,-3 z" - id="path44" - inkscape:connector-curvature="0" - style="fill:#eff0f1" /> - <path - d="M 5,11 7.5,10 10,11 C 10,11 9.072,15 7.5,15 5.928,15 5,11 5,11" - id="path46" - inkscape:connector-curvature="0" - style="fill:#da4453" /> - </g> - <path - d="m 1,20.286 h 20 v 0.71429 H 1 Z" - id="path50" - inkscape:connector-curvature="0" - style="fill:#99a1a7;stroke-width:0.71429002" /> - </g> + inkscape:current-layer="svg6" /> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#eff0f1; + } + </style> + </defs> + <path + style="fill:currentColor;fill-opacity:1;stroke:none;stroke-width:5.24999" + d="m 6,6 v 5.25 H 90 V 6 Z m 0,10.5 v 5.25 H 53.25 V 16.5 Z m 0,21 v 5.25 H 90 V 37.5 Z M 6,48 v 5.25 H 58.5 V 48 Z m 0,21 v 5.25 H 90 V 69 Z m 0,10.5 v 5.25 H 74.25 V 79.5 Z m 73.5,5.25 V 90 H 90 v -5.25 z" + class="ColorScheme-Text" + id="path4" /> </svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/icons/breeze-light/viewListTree.svg Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,14 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> + <defs id="defs3051"> + <style type="text/css" id="current-color-scheme"> + .ColorScheme-Text { + color:#232629; + } + </style> + </defs> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="M 3 3 L 3 10 L 9 10 L 9 16 L 10 16 L 12 16 L 12 19 L 19 19 L 19 12 L 12 12 L 12 15 L 10 15 L 10 10 L 10 7 L 12 7 L 12 10 L 19 10 L 19 3 L 12 3 L 12 6 L 10 6 L 10 3 L 3 3 z M 4 4 L 9 4 L 9 9 L 4 9 L 4 4 z M 13 4 L 18 4 L 18 9 L 13 9 L 13 4 z " + class="ColorScheme-Text" + /> +</svg>
--- a/eric7/icons/oxygen/sbLogViewer96.svg Fri Mar 04 18:07:10 2022 +0100 +++ b/eric7/icons/oxygen/sbLogViewer96.svg Sat Apr 02 11:23:11 2022 +0200 @@ -1,195 +1,47 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + viewBox="0 0 96 96" version="1.1" - viewBox="0 0 96 96" - id="svg54" + id="svg6" sodipodi:docname="sbLogViewer96.svg" width="96" height="96" - inkscape:version="0.92.0 r15299"> - <metadata - id="metadata60"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs58" /> + inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> <sodipodi:namedview + id="namedview8" pagecolor="#ffffff" bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" + borderopacity="1.0" inkscape:pageshadow="2" - inkscape:window-width="1581" - inkscape:window-height="990" - id="namedview56" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" showgrid="false" - inkscape:zoom="16.25" - inkscape:cx="25.094552" - inkscape:cy="23.132689" - inkscape:window-x="0" + inkscape:zoom="7.1590909" + inkscape:cx="40.787302" + inkscape:cy="54.057143" + inkscape:window-width="2580" + inkscape:window-height="1080" + inkscape:window-x="856" inkscape:window-y="0" inkscape:window-maximized="0" - inkscape:current-layer="svg54" /> - <linearGradient - id="c" - x1="386.57001" - x2="386.57001" - y1="527.13" - y2="504.91" - gradientTransform="matrix(0.71429,0,0,0.70714,-276.55,-352.47)" - gradientUnits="userSpaceOnUse"> - <stop - stop-color="#1d1e1e" - offset="0" - id="stop2" /> - <stop - stop-color="#44484c" - offset="1" - id="stop4" /> - </linearGradient> - <linearGradient - id="d" - x1="-2" - x2="-2" - y1="30" - y2="2" - gradientTransform="matrix(0.71429,0,0,0.71429,-0.42857,-0.42857)" - gradientUnits="userSpaceOnUse"> - <stop - stop-color="#c6cdd1" - offset="0" - id="stop7" /> - <stop - stop-color="#e0e5e7" - offset="1" - id="stop9" /> - </linearGradient> - <rect - x="10.055677" - y="10.055676" - width="75.888641" - height="75.888649" - id="rect12" - style="fill:#232629;stroke:#eff0f1;stroke-width:8.11135483" /> - <g - transform="matrix(3.3599489,0,0,3.3599491,10.970844,11.397979)" - id="g52"> - <g - id="g42" - style="stroke-width:0.71429002"> - <path - d="M 1,1 V 21 H 21 V 1 Z" - id="path14" - style="fill:url(#d)" - inkscape:connector-curvature="0" /> - <path - d="m 1,4.5714 h 20 v 14.286 H 1 Z" - id="path16" - style="fill:url(#c)" - inkscape:connector-curvature="0" /> - <path - d="M 1,1 H 21 V 3.8571 H 1 Z" - id="path18" - inkscape:connector-curvature="0" - style="fill:#566069" /> - <path - d="M 1,3.8571 H 21 V 4.57139 H 1 Z" - id="path20" - inkscape:connector-curvature="0" - style="fill:#3daee9" /> - <rect - x="18.857" - y="1.7143" - width="1.4286" - height="1.4286" - rx="0.71429002" - id="rect22" - style="fill:#eff0f1" /> - <circle - cx="4.9285998" - cy="14.929" - r="2.5" - id="circle24" - style="fill:#eff0f1" /> - <circle - cx="4.9285998" - cy="14.929" - r="1.7857" - id="circle26" - style="fill:#3daefd" /> - <path - d="m 8.8571,7.4286 h 1.4286 V 8.14289 H 8.8571 Z m 2.1429,0 h 2.1429 V 8.14289 H 11 Z" - id="path28" - inkscape:connector-curvature="0" - style="fill:#da4453" /> - <path - d="m 15.286,7.4286 h 2.1429 V 8.14289 H 15.286 Z m 0,1.4286 h 4.2857 V 9.57149 H 15.286 Z m 2.8571,-1.4286 h 1.4286 v 0.71429 h -1.4286 z" - id="path30" - inkscape:connector-curvature="0" - style="fill:#95a5a6" /> - <path - d="m 8.8571,8.8571 h 2.8571 V 9.57139 H 8.8571 Z m 3.5714,0 h 1.4286 v 0.71429 h -1.4286 z" - id="path32" - inkscape:connector-curvature="0" - style="fill:#bdc3c7" /> - <path - d="m 8.8571,13.857 h 1.4286 v 0.71429 H 8.8571 Z m 2.1429,0 h 2.1429 v 0.71429 H 11 Z" - id="path34" - inkscape:connector-curvature="0" - style="fill:#3daefd" /> - <path - d="m 15.286,13.857 h 2.8571 v 0.71429 H 15.286 Z" - id="path36" - inkscape:connector-curvature="0" - style="fill:#95a5a6" /> - <path - d="M 8.8571,15.286 H 11 v 0.71429 H 8.8571 Z" - id="path38" - inkscape:connector-curvature="0" - style="fill:#bdc3c7" /> - <path - d="m 15.286,15.286 h 2.1429 v 0.71429 H 15.286 Z m 2.8571,0 h 0.71429 v 0.71429 H 18.1431 Z m 0.71429,-1.4286 h 0.71429 v 0.71429 h -0.71429 z" - id="path40" - inkscape:connector-curvature="0" - style="fill:#95a5a6" /> - </g> - <g - transform="matrix(0.71429,0,0,0.71429,-0.42857,-0.42857)" - id="g48" - style="fill-rule:evenodd"> - <path - d="m 7.5,8.92 -3.501,1.467 c 0,0 0.416,1.902 0.867,3 0.225,0.551 0.5,1.121 0.889,1.617 0.389,0.496 0.965,0.99 1.745,0.99 0.78,0 1.354,-0.494 1.743,-0.99 0.389,-0.496 0.664,-1.066 0.889,-1.617 0.451,-1.102 0.869,-3 0.869,-3 z" - id="path44" - inkscape:connector-curvature="0" - style="fill:#eff0f1" /> - <path - d="M 5,11 7.5,10 10,11 C 10,11 9.072,15 7.5,15 5.928,15 5,11 5,11" - id="path46" - inkscape:connector-curvature="0" - style="fill:#da4453" /> - </g> - <path - d="m 1,20.286 h 20 v 0.71429 H 1 Z" - id="path50" - inkscape:connector-curvature="0" - style="fill:#99a1a7;stroke-width:0.71429002" /> - </g> + inkscape:current-layer="svg6" /> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#eff0f1; + } + </style> + </defs> + <path + style="fill:currentColor;fill-opacity:1;stroke:none;stroke-width:5.24999" + d="m 6,6 v 5.25 H 90 V 6 Z m 0,10.5 v 5.25 H 53.25 V 16.5 Z m 0,21 v 5.25 H 90 V 37.5 Z M 6,48 v 5.25 H 58.5 V 48 Z m 0,21 v 5.25 H 90 V 69 Z m 0,10.5 v 5.25 H 74.25 V 79.5 Z m 73.5,5.25 V 90 H 90 v -5.25 z" + class="ColorScheme-Text" + id="path4" /> </svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scripts/install-dependencies.py Sat Apr 02 11:23:11 2022 +0200 @@ -0,0 +1,81 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +# Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> +# +# This script installs all packages eric depends on. + +""" +Installation script for the eric IDE dependencies. +""" + +import subprocess +import sys + + +def pipInstall(packageName): + """ + Install the given package via pip. + + @param packageName name of the package to be installed + @type str + @return flag indicating a successful installation + @rtype bool + """ + ok = False + exitCode = subprocess.run( # secok + [sys.executable, "-m", "pip", "install", "--prefer-binary", + "--upgrade", packageName] + ).returncode + ok = (exitCode == 0) + + return ok + + +def main(): + """ + Function to install the eric dependencies. + """ + packages = ( + "pyqt6", + "pyqt6-charts", + "pyqt6-webengine", + "pyqt6-qscintilla", + + "docutils", + "Markdown", + "pyyaml", + "toml", + "chardet", + "asttokens", + "EditorConfig", + "Send2Trash", + "Pygments", + "pyenchant", + "wheel", + "parso", + "jedi", + "packaging", + ) + + failedPackages = [] + for package in packages: + ok = pipInstall(package) + if not ok: + failedPackages.append(package) + + print() + print("Installation Summary") + print("--------------------") + if failedPackages: + print("These packages could not be installed:") + for package in failedPackages: + print(" " + package) + else: + print("All packages installed successfully.") + +if __name__ == "__main__": + main() + +# +# eflag: noqa = M801
--- a/scripts/install.py Fri Mar 04 18:07:10 2022 +0100 +++ b/scripts/install.py Sat Apr 02 11:23:11 2022 +0200 @@ -1608,6 +1608,8 @@ "wheel": ("wheel", ""), "parso": ("parso", ""), "jedi": ("jedi", ""), + "packaging": ("packaging", ""), + "pipdeptree": ("pipdeptree", ""), } if not ignorePyqt6Tools: optionalModulesList["qt6-applications"] = ("qt6_applications", "") @@ -2128,8 +2130,8 @@ print() exit(res) - - + + if __name__ == "__main__": try: main(sys.argv)
--- a/setup.py Fri Mar 04 18:07:10 2022 +0100 +++ b/setup.py Sat Apr 02 11:23:11 2022 +0200 @@ -336,7 +336,7 @@ "Topic :: Text Editors :: Integrated Development Environments (IDE)" ], keywords="Development PyQt6 IDE Python3", - python_requires=">=3.6", + python_requires=">=3.7", install_requires=[ "pip>=19.0", "wheel", @@ -355,6 +355,8 @@ "Pygments", "parso", "jedi", + "packaging", + "pipdeptree", "pywin32>=1.0;platform_system=='Windows'", ], data_files=getDataFiles(),