Sat, 24 Nov 2018 15:37:04 +0100
Project Forms Browser: added support for the --resource-suffix= and --import-from= options of pyuic (the PyQt forms compiler).
--- a/APIs/Python3/eric6.api Wed Nov 21 19:26:59 2018 +0100 +++ b/APIs/Python3/eric6.api Sat Nov 24 15:37:04 2018 +0100 @@ -1590,6 +1590,7 @@ eric6.E5XML.Config.pluginRepositoryFileFormatVersion?7 eric6.E5XML.Config.projectFileFormatVersion?7 eric6.E5XML.Config.projectFileFormatVersionAlt?7 +eric6.E5XML.Config.projectFileFormatVersionIdl?7 eric6.E5XML.Config.projectFileFormatVersionMake?7 eric6.E5XML.Config.projectFileFormatVersionProto?7 eric6.E5XML.Config.sessionFileFormatVersion?7 @@ -7920,6 +7921,7 @@ eric6.Project.Project.Project.handlePreferencesChanged?4() eric6.Project.Project.Project.hasDefaultIdlCompilerParameters?4() eric6.Project.Project.Project.hasDefaultMakeParameters?4() +eric6.Project.Project.Project.hasDefaultUicCompilerParameters?4() eric6.Project.Project.Project.hasEntry?4(fn) eric6.Project.Project.Project.hasProjectType?4(type_, progLanguage="") eric6.Project.Project.Project.initActions?4() @@ -7993,7 +7995,7 @@ eric6.Project.Project.Project.saveProjectAs?4() eric6.Project.Project.Project.setData?4(category, key, data) eric6.Project.Project.Project.setDbgInfo?4(venvName, argv, wd, env, excReporting, excList, excIgnoreList, autoClearShell, tracePython=None, autoContinue=None) -eric6.Project.Project.Project.setDirty?4(b) +eric6.Project.Project.Project.setDirty?4(dirty) eric6.Project.Project.Project.setStatusMonitorAutoUpdate?4(auto) eric6.Project.Project.Project.setStatusMonitorInterval?4(interval) eric6.Project.Project.Project.setTranslationPattern?4(pattern) @@ -8124,6 +8126,7 @@ eric6.Project.ProjectFormsBrowser.ProjectFormsBrowser._openItem?5() eric6.Project.ProjectFormsBrowser.ProjectFormsBrowser.appendStderr?7 eric6.Project.ProjectFormsBrowser.ProjectFormsBrowser.compileChangedForms?4() +eric6.Project.ProjectFormsBrowser.ProjectFormsBrowser.getUiCompiler?4() eric6.Project.ProjectFormsBrowser.ProjectFormsBrowser.handlePreferencesChanged?4() eric6.Project.ProjectFormsBrowser.ProjectFormsBrowser.menusAboutToBeCreated?7 eric6.Project.ProjectFormsBrowser.ProjectFormsBrowser.showMenu?7 @@ -8215,6 +8218,8 @@ eric6.Project.TranslationPropertiesDialog.TranslationPropertiesDialog.on_transPatternPicker_textChanged?4(txt) eric6.Project.TranslationPropertiesDialog.TranslationPropertiesDialog.storeData?4() eric6.Project.TranslationPropertiesDialog.TranslationPropertiesDialog?1(project, new, parent) +eric6.Project.UicCompilerOptionsDialog.UicCompilerOptionsDialog.getData?4() +eric6.Project.UicCompilerOptionsDialog.UicCompilerOptionsDialog?1(compilerOptions, compiler, parent=None) eric6.Project.UicLoadUi.className?4(formFile, projectPath) eric6.Project.UicLoadUi.objectName?4(formFile, projectPath) eric6.Project.UicLoadUi.signatures?4(formFile, projectPath)
--- a/APIs/Python3/eric6.bas Wed Nov 21 19:26:59 2018 +0100 +++ b/APIs/Python3/eric6.bas Sat Nov 24 15:37:04 2018 +0100 @@ -943,6 +943,7 @@ UMLGraphicsView E5GraphicsView UMLItem QGraphicsRectItem UMLSceneSizeDialog QDialog Ui_UMLSceneSizeDialog +UicCompilerOptionsDialog QDialog Ui_UicCompilerOptionsDialog Uid int UniqueNamespace peg.Namespace UnittestDialog QWidget Ui_UnittestDialog
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DTDs/Project-6.3.dtd Sat Nov 24 15:37:04 2018 +0100 @@ -0,0 +1,185 @@ +<!-- This is the DTD for eric's project file version 6.3 --> + +<!-- This is a copy of the Basic DTD --> +<!ELEMENT int (#PCDATA)> +<!ELEMENT long (#PCDATA)> +<!ELEMENT float (#PCDATA)> +<!ELEMENT complex (#PCDATA)> +<!ELEMENT bool (#PCDATA)> +<!ELEMENT string (#PCDATA)> +<!ELEMENT bytes (#PCDATA)> +<!ELEMENT bytearray (#PCDATA)> +<!ELEMENT none EMPTY> + +<!ELEMENT pickle (#PCDATA)> +<!ATTLIST pickle + method CDATA #REQUIRED + encoding CDATA #REQUIRED> + +<!ELEMENT key (int | long | float | complex | string | bytes)> +<!ELEMENT value (int | long | float | complex | bool | string | bytes | + bytearray | none | dict | tuple | list | set | frozenset | pickle)> + +<!ELEMENT dict (key, value)*> + +<!ELEMENT tuple (int | long | float | complex | bool | string | bytes | + bytearray | none | dict | tuple | list | set | frozenset | pickle)*> + +<!ELEMENT list (int | long | float | complex | bool | string | bytes | + bytearray | none | dict | tuple | list | set | frozenset | pickle)*> + +<!ELEMENT set (int | long | float | complex | bool | string | bytes | + bytearray | none | dict | tuple | list | set | frozenset | pickle)*> + +<!ELEMENT frozenset (int | long | float | complex | bool | string | bytes | + bytearray | none | dict | tuple | list | set | frozenset | pickle)*> +<!-- End of the Basic DTD --> + +<!ELEMENT ProgLanguage (#PCDATA)> +<!ATTLIST ProgLanguage + mixed CDATA #REQUIRED> + +<!ELEMENT ProjectType (#PCDATA)> + +<!ELEMENT Description (#PCDATA)> + +<!ELEMENT Version (#PCDATA)> + +<!ELEMENT Author (#PCDATA)> + +<!ELEMENT Email (#PCDATA)> + +<!ELEMENT TranslationPattern (#PCDATA)> + +<!ELEMENT TranslationsBinPath (#PCDATA)> + +<!ELEMENT Source (#PCDATA)> + +<!ELEMENT Sources (Source*)> + +<!ELEMENT Form (#PCDATA)> + +<!ELEMENT Forms (Form*)> + +<!ELEMENT Translation (#PCDATA)> + +<!ELEMENT Translations (Translation*)> + +<!ELEMENT TranslationException (#PCDATA)> + +<!ELEMENT TranslationExceptions (TranslationException*)> + +<!ELEMENT Resource (#PCDATA)> + +<!ELEMENT Resources (Resource*)> + +<!ELEMENT Interface (#PCDATA)> + +<!ELEMENT Interfaces (Interface*)> + +<!ELEMENT Protocol (#PCDATA)> + +<!ELEMENT Protocols (Protocol*)> + +<!ELEMENT Other (#PCDATA)> + +<!ELEMENT Others (Other*)> + +<!ELEMENT MainScript (#PCDATA)> + +<!ELEMENT VcsType (#PCDATA)> +<!ELEMENT VcsOptions (dict)> +<!ELEMENT VcsOtherData (dict)> + +<!ELEMENT Vcs (VcsType?, + VcsOptions?, + VcsOtherData?)> + +<!ELEMENT FiletypeAssociation EMPTY> +<!ATTLIST FiletypeAssociation + pattern CDATA #REQUIRED + type CDATA #REQUIRED> + +<!ELEMENT FiletypeAssociations (FiletypeAssociation*)> + +<!ELEMENT LexerAssociation EMPTY> +<!ATTLIST LexerAssociation + pattern CDATA #REQUIRED + lexer CDATA #REQUIRED> + +<!ELEMENT LexerAssociations (LexerAssociation*)> + +<!ELEMENT MakeParameters (dict)> + +<!ELEMENT Make (MakeParameters?)> + +<!ELEMENT IdlCompiler (IdlCompilerParameters?)> + +<!ELEMENT UicCompiler (UicCompilerParameters?)> + +<!ELEMENT ProjectTypeSpecificData (dict)> + +<!ELEMENT ProjectTypeSpecific (ProjectTypeSpecific?)> + +<!ELEMENT DocumentationParams (dict)> + +<!ELEMENT Documentation (DocumentationParams?)> + +<!ELEMENT PackagersParams (dict)> + +<!ELEMENT Packagers (PackagersParams?)> + +<!ELEMENT CheckersParams (dict)> + +<!ELEMENT Checkers (CheckersParams?)> + +<!ELEMENT OtherToolsParams (dict)> + +<!ELEMENT OtherTools (OtherToolsParams?)> + +<!ELEMENT Language (#PCDATA)> + +<!ELEMENT ProjectWordList (#PCDATA)> + +<!ELEMENT ProjectExcludeList (#PCDATA)> + +<!ELEMENT Hash (#PCDATA)> + +<!ELEMENT Eol EMPTY> +<!ATTLIST Eol + index CDATA #REQUIRED> + +<!ELEMENT Project (Language, + ProjectWordList?, + ProjectExcludeList?, + Hash, + ProgLanguage, + ProjectType, + Description?, + Version?, + Author?, + Email?, + TranslationPattern?, + TranslationsBinPath?, + Eol?, + Sources, + Forms, + Translations, + TranslationExceptions?, + Resources, + Interfaces, + Others, + MainScript?, + Vcs, + FiletypeAssociations, + LexerAssociations?, + Make?, + IdlCompiler?, + UicCompiler?, + ProjectTypeSpecific?, + Documentation?, + Packagers?, + Checkers?, + OtherTools?)> +<!ATTLIST Project + version CDATA #REQUIRED>
--- a/Documentation/Help/source.qhp Wed Nov 21 19:26:59 2018 +0100 +++ b/Documentation/Help/source.qhp Sat Nov 24 15:37:04 2018 +0100 @@ -997,6 +997,7 @@ <section title="eric6.Project.QuickFindFileDialog" ref="eric6.Project.QuickFindFileDialog.html" /> <section title="eric6.Project.SpellingPropertiesDialog" ref="eric6.Project.SpellingPropertiesDialog.html" /> <section title="eric6.Project.TranslationPropertiesDialog" ref="eric6.Project.TranslationPropertiesDialog.html" /> + <section title="eric6.Project.UicCompilerOptionsDialog" ref="eric6.Project.UicCompilerOptionsDialog.html" /> <section title="eric6.Project.UicLoadUi" ref="eric6.Project.UicLoadUi.html" /> <section title="eric6.Project.UserPropertiesDialog" ref="eric6.Project.UserPropertiesDialog.html" /> </section> @@ -12730,6 +12731,7 @@ <keyword name="Project.handlePreferencesChanged" id="Project.handlePreferencesChanged" ref="eric6.Project.Project.html#Project.handlePreferencesChanged" /> <keyword name="Project.hasDefaultIdlCompilerParameters" id="Project.hasDefaultIdlCompilerParameters" ref="eric6.Project.Project.html#Project.hasDefaultIdlCompilerParameters" /> <keyword name="Project.hasDefaultMakeParameters" id="Project.hasDefaultMakeParameters" ref="eric6.Project.Project.html#Project.hasDefaultMakeParameters" /> + <keyword name="Project.hasDefaultUicCompilerParameters" id="Project.hasDefaultUicCompilerParameters" ref="eric6.Project.Project.html#Project.hasDefaultUicCompilerParameters" /> <keyword name="Project.hasEntry" id="Project.hasEntry" ref="eric6.Project.Project.html#Project.hasEntry" /> <keyword name="Project.hasProjectType" id="Project.hasProjectType" ref="eric6.Project.Project.html#Project.hasProjectType" /> <keyword name="Project.initActions" id="Project.initActions" ref="eric6.Project.Project.html#Project.initActions" /> @@ -12926,7 +12928,9 @@ <keyword name="ProjectFormsBrowser.__compileSelectedForms" id="ProjectFormsBrowser.__compileSelectedForms" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__compileSelectedForms" /> <keyword name="ProjectFormsBrowser.__compileUI" id="ProjectFormsBrowser.__compileUI" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__compileUI" /> <keyword name="ProjectFormsBrowser.__compileUIDone" id="ProjectFormsBrowser.__compileUIDone" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__compileUIDone" /> + <keyword name="ProjectFormsBrowser.__configureUicCompiler" id="ProjectFormsBrowser.__configureUicCompiler" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__configureUicCompiler" /> <keyword name="ProjectFormsBrowser.__deleteFile" id="ProjectFormsBrowser.__deleteFile" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__deleteFile" /> + <keyword name="ProjectFormsBrowser.__determineUiCompiler" id="ProjectFormsBrowser.__determineUiCompiler" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__determineUiCompiler" /> <keyword name="ProjectFormsBrowser.__generateDialogCode" id="ProjectFormsBrowser.__generateDialogCode" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__generateDialogCode" /> <keyword name="ProjectFormsBrowser.__newForm" id="ProjectFormsBrowser.__newForm" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__newForm" /> <keyword name="ProjectFormsBrowser.__newUiForm" id="ProjectFormsBrowser.__newUiForm" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__newUiForm" /> @@ -12934,6 +12938,7 @@ <keyword name="ProjectFormsBrowser.__openFileInEditor" id="ProjectFormsBrowser.__openFileInEditor" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__openFileInEditor" /> <keyword name="ProjectFormsBrowser.__readStderr" id="ProjectFormsBrowser.__readStderr" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__readStderr" /> <keyword name="ProjectFormsBrowser.__readStdout" id="ProjectFormsBrowser.__readStdout" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__readStdout" /> + <keyword name="ProjectFormsBrowser.__resetUiCompiler" id="ProjectFormsBrowser.__resetUiCompiler" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__resetUiCompiler" /> <keyword name="ProjectFormsBrowser.__showContextMenu" id="ProjectFormsBrowser.__showContextMenu" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__showContextMenu" /> <keyword name="ProjectFormsBrowser.__showContextMenuBack" id="ProjectFormsBrowser.__showContextMenuBack" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__showContextMenuBack" /> <keyword name="ProjectFormsBrowser.__showContextMenuDir" id="ProjectFormsBrowser.__showContextMenuDir" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.__showContextMenuDir" /> @@ -12944,6 +12949,7 @@ <keyword name="ProjectFormsBrowser._initHookMethods" id="ProjectFormsBrowser._initHookMethods" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser._initHookMethods" /> <keyword name="ProjectFormsBrowser._openItem" id="ProjectFormsBrowser._openItem" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser._openItem" /> <keyword name="ProjectFormsBrowser.compileChangedForms" id="ProjectFormsBrowser.compileChangedForms" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.compileChangedForms" /> + <keyword name="ProjectFormsBrowser.getUiCompiler" id="ProjectFormsBrowser.getUiCompiler" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.getUiCompiler" /> <keyword name="ProjectFormsBrowser.handlePreferencesChanged" id="ProjectFormsBrowser.handlePreferencesChanged" ref="eric6.Project.ProjectFormsBrowser.html#ProjectFormsBrowser.handlePreferencesChanged" /> <keyword name="ProjectHelper (Module)" id="ProjectHelper (Module)" ref="eric6.Plugins.VcsPlugins.vcsGit.ProjectHelper.html" /> <keyword name="ProjectHelper (Module)" id="ProjectHelper (Module)" ref="eric6.Plugins.VcsPlugins.vcsMercurial.FetchExtension.ProjectHelper.html" /> @@ -16604,6 +16610,10 @@ <keyword name="UMLSceneSizeDialog (Module)" id="UMLSceneSizeDialog (Module)" ref="eric6.Graphics.UMLSceneSizeDialog.html" /> <keyword name="UMLSceneSizeDialog.getData" id="UMLSceneSizeDialog.getData" ref="eric6.Graphics.UMLSceneSizeDialog.html#UMLSceneSizeDialog.getData" /> <keyword name="UiExtensionPlugins (Package)" id="UiExtensionPlugins (Package)" ref="index-eric6.Plugins.UiExtensionPlugins.html" /> + <keyword name="UicCompilerOptionsDialog" id="UicCompilerOptionsDialog" ref="eric6.Project.UicCompilerOptionsDialog.html#UicCompilerOptionsDialog" /> + <keyword name="UicCompilerOptionsDialog (Constructor)" id="UicCompilerOptionsDialog (Constructor)" ref="eric6.Project.UicCompilerOptionsDialog.html#UicCompilerOptionsDialog.__init__" /> + <keyword name="UicCompilerOptionsDialog (Module)" id="UicCompilerOptionsDialog (Module)" ref="eric6.Project.UicCompilerOptionsDialog.html" /> + <keyword name="UicCompilerOptionsDialog.getData" id="UicCompilerOptionsDialog.getData" ref="eric6.Project.UicCompilerOptionsDialog.html#UicCompilerOptionsDialog.getData" /> <keyword name="UicLoadUi (Module)" id="UicLoadUi (Module)" ref="eric6.Project.UicLoadUi.html" /> <keyword name="Uid" id="Uid" ref="eric6.Utilities.binplistlib.html#Uid" /> <keyword name="Uid.__repr__" id="Uid.__repr__" ref="eric6.Utilities.binplistlib.html#Uid.__repr__" /> @@ -20225,6 +20235,7 @@ <file>eric6.Project.QuickFindFileDialog.html</file> <file>eric6.Project.SpellingPropertiesDialog.html</file> <file>eric6.Project.TranslationPropertiesDialog.html</file> + <file>eric6.Project.UicCompilerOptionsDialog.html</file> <file>eric6.Project.UicLoadUi.html</file> <file>eric6.Project.UserPropertiesDialog.html</file> <file>eric6.PyUnit.UnittestDialog.html</file>
--- a/Documentation/Source/eric6.E5XML.Config.html Wed Nov 21 19:26:59 2018 +0100 +++ b/Documentation/Source/eric6.E5XML.Config.html Sat Nov 24 15:37:04 2018 +0100 @@ -25,7 +25,7 @@ </p> <h3>Global Attributes</h3> <table> -<tr><td>debuggerPropertiesFileFormatVersion</td></tr><tr><td>dictionariesListFileFormatVersion</td></tr><tr><td>highlightingStylesFileFormatVersion</td></tr><tr><td>multiProjectFileFormatVersion</td></tr><tr><td>pluginRepositoryFileFormatVersion</td></tr><tr><td>projectFileFormatVersion</td></tr><tr><td>projectFileFormatVersionAlt</td></tr><tr><td>projectFileFormatVersionMake</td></tr><tr><td>projectFileFormatVersionProto</td></tr><tr><td>sessionFileFormatVersion</td></tr><tr><td>shortcutsFileFormatVersion</td></tr><tr><td>tasksFileFormatVersion</td></tr><tr><td>templatesFileFormatVersion</td></tr><tr><td>userProjectFileFormatVersion</td></tr> +<tr><td>debuggerPropertiesFileFormatVersion</td></tr><tr><td>dictionariesListFileFormatVersion</td></tr><tr><td>highlightingStylesFileFormatVersion</td></tr><tr><td>multiProjectFileFormatVersion</td></tr><tr><td>pluginRepositoryFileFormatVersion</td></tr><tr><td>projectFileFormatVersion</td></tr><tr><td>projectFileFormatVersionAlt</td></tr><tr><td>projectFileFormatVersionIdl</td></tr><tr><td>projectFileFormatVersionMake</td></tr><tr><td>projectFileFormatVersionProto</td></tr><tr><td>sessionFileFormatVersion</td></tr><tr><td>shortcutsFileFormatVersion</td></tr><tr><td>tasksFileFormatVersion</td></tr><tr><td>templatesFileFormatVersion</td></tr><tr><td>userProjectFileFormatVersion</td></tr> </table> <h3>Classes</h3> <table>
--- a/Documentation/Source/eric6.Project.Project.html Wed Nov 21 19:26:59 2018 +0100 +++ b/Documentation/Source/eric6.Project.Project.html Sat Nov 24 15:37:04 2018 +0100 @@ -64,7 +64,7 @@ <dd> emitted after a directory has been removed from the project -</dd><dt>dirty(int)</dt> +</dd><dt>dirty(bool)</dt> <dd> emitted when the dirty state changes </dd><dt>lexerAssociationsChanged()</dt> @@ -614,6 +614,9 @@ <td><a href="#Project.hasDefaultMakeParameters">hasDefaultMakeParameters</a></td> <td>Public method to test, if the project contains the default make parameters.</td> </tr><tr> +<td><a href="#Project.hasDefaultUicCompilerParameters">hasDefaultUicCompilerParameters</a></td> +<td>Public method to test, if the project contains the default uic compiler parameters.</td> +</tr><tr> <td><a href="#Project.hasEntry">hasEntry</a></td> <td>Public method to check the project for a file.</td> </tr><tr> @@ -2171,6 +2174,22 @@ <dd> bool </dd> +</dl><a NAME="Project.hasDefaultUicCompilerParameters" ID="Project.hasDefaultUicCompilerParameters"></a> +<h4>Project.hasDefaultUicCompilerParameters</h4> +<b>hasDefaultUicCompilerParameters</b>(<i></i>) +<p> + Public method to test, if the project contains the default uic compiler + parameters. +</p><dl> +<dt>Returns:</dt> +<dd> +flag indicating default parameter set +</dd> +</dl><dl> +<dt>Return Type:</dt> +<dd> +bool +</dd> </dl><a NAME="Project.hasEntry" ID="Project.hasEntry"></a> <h4>Project.hasEntry</h4> <b>hasEntry</b>(<i>fn</i>) @@ -2778,15 +2797,15 @@ </dd> </dl><a NAME="Project.setDirty" ID="Project.setDirty"></a> <h4>Project.setDirty</h4> -<b>setDirty</b>(<i>b</i>) +<b>setDirty</b>(<i>dirty</i>) <p> Public method to set the dirty state. </p><p> - It emits the signal dirty(int). + It emits the signal dirty(bool). </p><dl> -<dt><i>b</i></dt> +<dt><i>dirty</i> (bool)</dt> <dd> -dirty state (boolean) +dirty state </dd> </dl><a NAME="Project.setStatusMonitorAutoUpdate" ID="Project.setStatusMonitorAutoUpdate"></a> <h4>Project.setStatusMonitorAutoUpdate</h4>
--- a/Documentation/Source/eric6.Project.ProjectFormsBrowser.html Wed Nov 21 19:26:59 2018 +0100 +++ b/Documentation/Source/eric6.Project.ProjectFormsBrowser.html Sat Nov 24 15:37:04 2018 +0100 @@ -105,9 +105,15 @@ <td><a href="#ProjectFormsBrowser.__compileUIDone">__compileUIDone</a></td> <td>Private slot to handle the finished signal of the pyuic/rbuic process.</td> </tr><tr> +<td><a href="#ProjectFormsBrowser.__configureUicCompiler">__configureUicCompiler</a></td> +<td>Private slot to configure some non-common uic compiler options.</td> +</tr><tr> <td><a href="#ProjectFormsBrowser.__deleteFile">__deleteFile</a></td> <td>Private method to delete a form file from the project.</td> </tr><tr> +<td><a href="#ProjectFormsBrowser.__determineUiCompiler">__determineUiCompiler</a></td> +<td>Private method to determine the UI compiler for the project.</td> +</tr><tr> <td><a href="#ProjectFormsBrowser.__generateDialogCode">__generateDialogCode</a></td> <td>Private method to generate dialog code for the form (Qt4 only).</td> </tr><tr> @@ -129,6 +135,9 @@ <td><a href="#ProjectFormsBrowser.__readStdout">__readStdout</a></td> <td>Private slot to handle the readyReadStandardOutput signal of the pyuic4/pyuic5/pyside-uic/pyside2-uic/rbuic4 process.</td> </tr><tr> +<td><a href="#ProjectFormsBrowser.__resetUiCompiler">__resetUiCompiler</a></td> +<td>Private slot to reset the determined UI compiler executable.</td> +</tr><tr> <td><a href="#ProjectFormsBrowser.__showContextMenu">__showContextMenu</a></td> <td>Private slot called by the menu aboutToShow signal.</td> </tr><tr> @@ -159,6 +168,9 @@ <td><a href="#ProjectFormsBrowser.compileChangedForms">compileChangedForms</a></td> <td>Public method to compile all changed forms to source files.</td> </tr><tr> +<td><a href="#ProjectFormsBrowser.getUiCompiler">getUiCompiler</a></td> +<td>Public method to get the UI compiler executable of the project.</td> +</tr><tr> <td><a href="#ProjectFormsBrowser.handlePreferencesChanged">handlePreferencesChanged</a></td> <td>Public slot used to handle the preferencesChanged signal.</td> </tr> @@ -249,11 +261,21 @@ <dd> exit status of the process (QProcess.ExitStatus) </dd> -</dl><a NAME="ProjectFormsBrowser.__deleteFile" ID="ProjectFormsBrowser.__deleteFile"></a> +</dl><a NAME="ProjectFormsBrowser.__configureUicCompiler" ID="ProjectFormsBrowser.__configureUicCompiler"></a> +<h4>ProjectFormsBrowser.__configureUicCompiler</h4> +<b>__configureUicCompiler</b>(<i></i>) +<p> + Private slot to configure some non-common uic compiler options. +</p><a NAME="ProjectFormsBrowser.__deleteFile" ID="ProjectFormsBrowser.__deleteFile"></a> <h4>ProjectFormsBrowser.__deleteFile</h4> <b>__deleteFile</b>(<i></i>) <p> Private method to delete a form file from the project. +</p><a NAME="ProjectFormsBrowser.__determineUiCompiler" ID="ProjectFormsBrowser.__determineUiCompiler"></a> +<h4>ProjectFormsBrowser.__determineUiCompiler</h4> +<b>__determineUiCompiler</b>(<i></i>) +<p> + Private method to determine the UI compiler for the project. </p><a NAME="ProjectFormsBrowser.__generateDialogCode" ID="ProjectFormsBrowser.__generateDialogCode"></a> <h4>ProjectFormsBrowser.__generateDialogCode</h4> <b>__generateDialogCode</b>(<i></i>) @@ -297,6 +319,11 @@ <p> Private slot to handle the readyReadStandardOutput signal of the pyuic4/pyuic5/pyside-uic/pyside2-uic/rbuic4 process. +</p><a NAME="ProjectFormsBrowser.__resetUiCompiler" ID="ProjectFormsBrowser.__resetUiCompiler"></a> +<h4>ProjectFormsBrowser.__resetUiCompiler</h4> +<b>__resetUiCompiler</b>(<i></i>) +<p> + Private slot to reset the determined UI compiler executable. </p><a NAME="ProjectFormsBrowser.__showContextMenu" ID="ProjectFormsBrowser.__showContextMenu"></a> <h4>ProjectFormsBrowser.__showContextMenu</h4> <b>__showContextMenu</b>(<i></i>) @@ -366,7 +393,22 @@ <b>compileChangedForms</b>(<i></i>) <p> Public method to compile all changed forms to source files. -</p><a NAME="ProjectFormsBrowser.handlePreferencesChanged" ID="ProjectFormsBrowser.handlePreferencesChanged"></a> +</p><a NAME="ProjectFormsBrowser.getUiCompiler" ID="ProjectFormsBrowser.getUiCompiler"></a> +<h4>ProjectFormsBrowser.getUiCompiler</h4> +<b>getUiCompiler</b>(<i></i>) +<p> + Public method to get the UI compiler executable of the project. +</p><dl> +<dt>Returns:</dt> +<dd> +UI compiler executable +</dd> +</dl><dl> +<dt>Return Type:</dt> +<dd> +str +</dd> +</dl><a NAME="ProjectFormsBrowser.handlePreferencesChanged" ID="ProjectFormsBrowser.handlePreferencesChanged"></a> <h4>ProjectFormsBrowser.handlePreferencesChanged</h4> <b>handlePreferencesChanged</b>(<i></i>) <p>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Documentation/Source/eric6.Project.UicCompilerOptionsDialog.html Sat Nov 24 15:37:04 2018 +0100 @@ -0,0 +1,105 @@ +<!DOCTYPE html> +<html><head> +<title>eric6.Project.UicCompilerOptionsDialog</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body><a NAME="top" ID="top"></a> +<h1>eric6.Project.UicCompilerOptionsDialog</h1> +<p> +Module implementing a dialog to enter some non-common uic compiler options. +</p> +<h3>Global Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Classes</h3> +<table> +<tr> +<td><a href="#UicCompilerOptionsDialog">UicCompilerOptionsDialog</a></td> +<td>Class implementing a dialog to enter some non-common uic compiler options.</td> +</tr> +</table> +<h3>Functions</h3> +<table> +<tr><td>None</td></tr> +</table> +<hr /><hr /> +<a NAME="UicCompilerOptionsDialog" ID="UicCompilerOptionsDialog"></a> +<h2>UicCompilerOptionsDialog</h2> +<p> + Class implementing a dialog to enter some non-common uic compiler options. +</p> +<h3>Derived from</h3> +QDialog, Ui_UicCompilerOptionsDialog +<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="#UicCompilerOptionsDialog.__init__">UicCompilerOptionsDialog</a></td> +<td>Constructor</td> +</tr><tr> +<td><a href="#UicCompilerOptionsDialog.getData">getData</a></td> +<td>Public method to get the entered data.</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="UicCompilerOptionsDialog.__init__" ID="UicCompilerOptionsDialog.__init__"></a> +<h4>UicCompilerOptionsDialog (Constructor)</h4> +<b>UicCompilerOptionsDialog</b>(<i>compilerOptions, compiler, parent=None</i>) +<p> + Constructor +</p><dl> +<dt><i>compilerOptions</i> (dict)</dt> +<dd> +dictionary containing the uic compiler options +</dd><dt><i>compiler</i> (str)</dt> +<dd> +name of the uic compiler executable +</dd><dt><i>parent</i> (QWidget)</dt> +<dd> +reference to the parent widget +</dd> +</dl><a NAME="UicCompilerOptionsDialog.getData" ID="UicCompilerOptionsDialog.getData"></a> +<h4>UicCompilerOptionsDialog.getData</h4> +<b>getData</b>(<i></i>) +<p> + Public method to get the entered data. +</p><dl> +<dt>Returns:</dt> +<dd> +tuple containing the package and the rc-file suffix +</dd> +</dl><dl> +<dt>Return Type:</dt> +<dd> +tuple of (str, str) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- a/Documentation/Source/index-eric6.Project.html Wed Nov 21 19:26:59 2018 +0100 +++ b/Documentation/Source/index-eric6.Project.html Sat Nov 24 15:37:04 2018 +0100 @@ -125,6 +125,9 @@ <td><a href="eric6.Project.TranslationPropertiesDialog.html">TranslationPropertiesDialog</a></td> <td>Module implementing the Translations Properties dialog.</td> </tr><tr> +<td><a href="eric6.Project.UicCompilerOptionsDialog.html">UicCompilerOptionsDialog</a></td> +<td>Module implementing a dialog to enter some non-common uic compiler options.</td> +</tr><tr> <td><a href="eric6.Project.UicLoadUi.html">UicLoadUi</a></td> <td>Module to get sys.path of an external interpreter.</td> </tr><tr>
--- a/E5XML/Config.py Wed Nov 21 19:26:59 2018 +0100 +++ b/E5XML/Config.py Sat Nov 24 15:37:04 2018 +0100 @@ -11,7 +11,8 @@ multiProjectFileFormatVersion = "5.1" # version numbers of the project file -projectFileFormatVersion = "6.2" +projectFileFormatVersion = "6.3" +projectFileFormatVersionIdl = "6.2" projectFileFormatVersionMake = "6.1" projectFileFormatVersionProto = "6.0" projectFileFormatVersionAlt = "5.1"
--- a/E5XML/ProjectReader.py Wed Nov 21 19:26:59 2018 +0100 +++ b/E5XML/ProjectReader.py Sat Nov 24 15:37:04 2018 +0100 @@ -19,7 +19,7 @@ """ Class for reading an XML project file. """ - supportedVersions = ["4.6", "5.0", "5.1", "6.0", "6.1", "6.2"] + supportedVersions = ["4.6", "5.0", "5.1", "6.0", "6.1", "6.2", "6.3"] def __init__(self, device, project): """ @@ -118,6 +118,9 @@ elif self.name() == "IdlCompiler": self.__readBasicDataField( "IdlCompiler", "IdlCompilerParameters", "IDLPARAMS") + elif self.name() == "UicCompiler": + self.__readBasicDataField( + "UicCompiler", "UicCompilerParameters", "UICPARAMS") elif self.name() == "ProjectTypeSpecific": self.__readBasicDataField( "ProjectTypeSpecific", "ProjectTypeSpecificData",
--- a/E5XML/ProjectWriter.py Wed Nov 21 19:26:59 2018 +0100 +++ b/E5XML/ProjectWriter.py Sat Nov 24 15:37:04 2018 +0100 @@ -14,8 +14,9 @@ from E5Gui.E5Application import e5App from .XMLStreamWriterBase import XMLStreamWriterBase -from .Config import projectFileFormatVersion, projectFileFormatVersionMake, \ - projectFileFormatVersionProto, projectFileFormatVersionAlt +from .Config import projectFileFormatVersion, projectFileFormatVersionIdl, \ + projectFileFormatVersionMake, projectFileFormatVersionProto, \ + projectFileFormatVersionAlt import Preferences import Utilities @@ -43,9 +44,12 @@ """ XMLStreamWriterBase.writeXML(self) - if not e5App().getObject("Project").hasDefaultIdlCompilerParameters(): + project = e5App().getObject("Project") + if not project.hasDefaultUicCompilerParameters(): fileFormatVersion = projectFileFormatVersion - elif not e5App().getObject("Project").hasDefaultMakeParameters(): + elif not project.hasDefaultIdlCompilerParameters(): + fileFormatVersion = projectFileFormatVersionIdl + elif not project.hasDefaultMakeParameters(): fileFormatVersion = projectFileFormatVersionMake elif self.pdata["PROTOCOLS"]: fileFormatVersion = projectFileFormatVersionProto @@ -231,6 +235,12 @@ self.writeBasics("IdlCompilerParameters", self.pdata["IDLPARAMS"]) self.writeEndElement() + # do the 'uic' parameters + if not e5App().getObject("Project").hasDefaultUicCompilerParameters(): + self.writeStartElement("UicCompiler") + self.writeBasics("UicCompilerParameters", self.pdata["UICPARAMS"]) + self.writeEndElement() + # do the extra project data stuff if len(self.pdata["PROJECTTYPESPECIFICDATA"]): self.writeStartElement("ProjectTypeSpecific")
--- a/Project/Project.py Wed Nov 21 19:26:59 2018 +0100 +++ b/Project/Project.py Sat Nov 24 15:37:04 2018 +0100 @@ -47,7 +47,7 @@ """ Class implementing the project management functionality. - @signal dirty(int) emitted when the dirty state changes + @signal dirty(bool) emitted when the dirty state changes @signal projectLanguageAdded(str) emitted after a new language was added @signal projectLanguageAddedByCode(str) emitted after a new language was added. The language code is sent by this signal. @@ -108,7 +108,7 @@ @signal appendStderr(str) emitted after something was received from a QProcess on stderr """ - dirty = pyqtSignal(int) + dirty = pyqtSignal(bool) projectLanguageAdded = pyqtSignal(str) projectLanguageAddedByCode = pyqtSignal(str) projectLanguageRemoved = pyqtSignal(str) @@ -496,6 +496,10 @@ "DefinedNames": [], "UndefinedNames": [], }, + "UICPARAMS": { + "Package": "", + "RcSuffix": "", + }, "EOL": -1, } @@ -712,17 +716,18 @@ self.__model.preferencesChanged() - def setDirty(self, b): + def setDirty(self, dirty): """ Public method to set the dirty state. - It emits the signal dirty(int). - - @param b dirty state (boolean) - """ - self.__dirty = b - self.saveAct.setEnabled(b) - self.dirty.emit(bool(b)) + It emits the signal dirty(bool). + + @param dirty dirty state + @type bool + """ + self.__dirty = dirty + self.saveAct.setEnabled(dirty) + self.dirty.emit(dirty) if self.__dirty: self.projectChanged.emit() @@ -5681,3 +5686,20 @@ "DefinedNames": [], "UndefinedNames": [], } + + ######################################################################### + ## Below are methods implementing the some 'UIC' support functions + ######################################################################### + + def hasDefaultUicCompilerParameters(self): + """ + Public method to test, if the project contains the default uic compiler + parameters. + + @return flag indicating default parameter set + @rtype bool + """ + return self.pdata["UICPARAMS"] == { + "Package": "", + "RcSuffix": "", + }
--- a/Project/ProjectFormsBrowser.py Wed Nov 21 19:26:59 2018 +0100 +++ b/Project/ProjectFormsBrowser.py Sat Nov 24 15:37:04 2018 +0100 @@ -112,6 +112,10 @@ ] self.compileProc = None + self.__uicompiler = "" + + self.project.projectClosed.connect(self.__resetUiCompiler) + self.project.projectPropertiesChanged.connect(self.__resetUiCompiler) def _createPopupMenus(self): """ @@ -137,6 +141,10 @@ self.__generateDialogCode) self.menu.addSeparator() self.menu.addAction( + self.tr('Configure uic Compiler'), + self.__configureUicCompiler) + self.menu.addSeparator() + self.menu.addAction( self.tr('Open in Qt-Designer'), self.__openFile) self.menu.addAction( self.tr('Open in Editor'), self.__openFileInEditor) @@ -209,6 +217,10 @@ self.backMenu.addAction( self.tr('Compile all forms'), self.__compileAllForms) self.backMenu.addSeparator() + self.backMenu.addAction( + self.tr('Configure uic Compiler'), + self.__configureUicCompiler) + self.backMenu.addSeparator() self.backMenu.addAction(self.tr('New form...'), self.__newForm) else: if self.hooks["newForm"] is not None: @@ -232,10 +244,14 @@ self.multiMenu = QMenu(self) if self.project.getProjectType() in \ ["Qt4", "PyQt5", "E6Plugin", "PySide", "PySide2"]: - act = self.multiMenu.addAction( + self.multiMenu.addAction( self.tr('Compile forms'), self.__compileSelectedForms) self.multiMenu.addSeparator() self.multiMenu.addAction( + self.tr('Configure uic Compiler'), + self.__configureUicCompiler) + self.multiMenu.addSeparator() + self.multiMenu.addAction( self.tr('Open in Qt-Designer'), self.__openFile) self.multiMenu.addAction( self.tr('Open in Editor'), self.__openFileInEditor) @@ -277,6 +293,10 @@ self.dirMenu.addAction( self.tr('Compile all forms'), self.__compileAllForms) self.dirMenu.addSeparator() + self.dirMenu.addAction( + self.tr('Configure uic Compiler'), + self.__configureUicCompiler) + self.dirMenu.addSeparator() else: if self.hooks["compileAllForms"] is not None: self.dirMenu.addAction( @@ -322,6 +342,10 @@ self.dirMultiMenu.addAction( self.tr('Compile all forms'), self.__compileAllForms) self.dirMultiMenu.addSeparator() + self.dirMultiMenu.addAction( + self.tr('Configure uic Compiler'), + self.__configureUicCompiler) + self.dirMultiMenu.addSeparator() else: if self.hooks["compileAllForms"] is not None: self.dirMultiMenu.addAction( @@ -634,6 +658,58 @@ ## Methods to handle the various compile commands ########################################################################### + def __resetUiCompiler(self): + """ + Private slot to reset the determined UI compiler executable. + """ + self.__uicompiler = "" + + def __determineUiCompiler(self): + """ + Private method to determine the UI compiler for the project. + """ + self.__resetUiCompiler() + + if self.project.getProjectLanguage() in \ + ["Python", "Python2", "Python3"]: + if self.project.getProjectType() in ["Qt4", ]: + self.__uicompiler = Utilities.generatePyQtToolPath( + 'pyuic4', ["py3uic4", "py2uic4"]) + elif self.project.getProjectType() in ["PyQt5"]: + self.__uicompiler = Utilities.generatePyQtToolPath( + 'pyuic5', ["py3uic5", "py2uic5"]) + elif self.project.getProjectType() in ["E6Plugin"]: + if PYQT_VERSION < 0x050000: + self.__uicompiler = Utilities.generatePyQtToolPath( + 'pyuic4', ["py3uic4", "py2uic4"]) + else: + self.__uicompiler = Utilities.generatePyQtToolPath( + 'pyuic5', ["py3uic5", "py2uic5"]) + elif self.project.getProjectType() == "PySide": + self.__uicompiler = \ + Utilities.generatePySideToolPath('pyside-uic', "1") + elif self.project.getProjectType() == "PySide2": + self.__uicompiler = \ + Utilities.generatePySideToolPath('pyside2-uic', "2") + elif self.project.getProjectLanguage() == "Ruby": + if self.project.getProjectType() == "Qt4": + self.__uicompiler = 'rbuic4' + if Utilities.isWindowsPlatform(): + self.__uicompiler = \ + Utilities.getWindowsExecutablePath(self.__uicompiler) + + def getUiCompiler(self): + """ + Public method to get the UI compiler executable of the project. + + @return UI compiler executable + @rtype str + """ + if not self.__uicompiler: + self.__determineUiCompiler() + + return self.__uicompiler + def __readStdout(self): """ Private slot to handle the readyReadStandardOutput signal of the @@ -659,7 +735,7 @@ self.compileProc.setReadChannel(QProcess.StandardError) while self.compileProc and self.compileProc.canReadLine(): - s = self.uicompiler + ': ' + s = self.__uicompiler + ': ' error = str(self.compileProc.readLine(), ioEncoding, 'replace') s += error @@ -742,38 +818,8 @@ args = [] self.buf = "" - if self.project.getProjectLanguage() in \ - ["Python", "Python2", "Python3"]: - if self.project.getProjectType() in ["Qt4", ]: - self.uicompiler = Utilities.generatePyQtToolPath( - 'pyuic4', ["py3uic4", "py2uic4"]) - elif self.project.getProjectType() in ["PyQt5"]: - self.uicompiler = Utilities.generatePyQtToolPath( - 'pyuic5', ["py3uic5", "py2uic5"]) - elif self.project.getProjectType() in ["E6Plugin"]: - if PYQT_VERSION < 0x050000: - self.uicompiler = Utilities.generatePyQtToolPath( - 'pyuic4', ["py3uic4", "py2uic4"]) - else: - self.uicompiler = Utilities.generatePyQtToolPath( - 'pyuic5', ["py3uic5", "py2uic5"]) - elif self.project.getProjectType() == "PySide": - self.uicompiler = \ - Utilities.generatePySideToolPath('pyside-uic', "1") - elif self.project.getProjectType() == "PySide2": - self.uicompiler = \ - Utilities.generatePySideToolPath('pyside2-uic', "2") - else: - return None - elif self.project.getProjectLanguage() == "Ruby": - if self.project.getProjectType() == "Qt4": - self.uicompiler = 'rbuic4' - if Utilities.isWindowsPlatform(): - self.uicompiler = \ - Utilities.getWindowsExecutablePath(self.uicompiler) - else: - return None - else: + uicompiler = self.getUiCompiler() + if not uicompiler: return None ofn, ext = os.path.splitext(fn) @@ -787,8 +833,24 @@ indentWidth = Preferences.getQt("PyuicIndent") if indentWidth != self.PyuicIndentDefault: args.append("--indent={0}".format(indentWidth)) - if Preferences.getQt("PyuicFromImports"): - args.append("--from-imports") + + if self.project.getProjectType() in ["PySide", "PySide2"]: + # PySide and PySide2 + if Preferences.getQt("PyuicFromImports"): + args.append("--from-imports") + else: + # PyQt4 and PyQt5 + if 'uic5' in uicompiler and \ + PYQT_VERSION >= 0x050600 and \ + self.project.pdata["UICPARAMS"]["Package"]: + # only supported for PyQt5 >= 5.6 (April 2016) + args.append("--import-from={0}".format( + self.project.pdata["UICPARAMS"]["Package"])) + elif Preferences.getQt("PyuicFromImports"): + args.append("--from-imports") + if self.project.pdata["UICPARAMS"]["RcSuffix"]: + args.append("--resource-suffix={0}".format( + self.project.pdata["UICPARAMS"]["RcSuffix"])) elif self.project.getProjectLanguage() == "Ruby": self.compiledFile = ofn + '.rb' args.append('-x') @@ -799,7 +861,7 @@ self.compileProc.readyReadStandardError.connect(self.__readStderr) self.noDialog = noDialog - self.compileProc.start(self.uicompiler, args) + self.compileProc.start(uicompiler, args) procStarted = self.compileProc.waitForStarted(5000) if procStarted: self.compileRunning = True @@ -815,7 +877,7 @@ self.tr( 'Could not start {0}.<br>' 'Ensure that it is in the search path.' - ).format(self.uicompiler)) + ).format(uicompiler)) return None def __generateDialogCode(self): @@ -996,6 +1058,33 @@ Public slot used to handle the preferencesChanged signal. """ ProjectBaseBrowser.handlePreferencesChanged(self) + + self.__resetUiCompiler() + + def __configureUicCompiler(self): + """ + Private slot to configure some non-common uic compiler options. + """ + from .UicCompilerOptionsDialog import UicCompilerOptionsDialog + + params = self.project.pdata["UICPARAMS"] + + if self.project.getProjectType() in ["Qt4", "PyQt5", "E6Plugin"]: + dlg = UicCompilerOptionsDialog(params, self.getUiCompiler()) + if dlg.exec_() == QDialog.Accepted: + package, suffix = dlg.getData() + if package != params["Package"]: + params["Package"] = package + self.project.setDirty(True) + if suffix != params["RcSuffix"]: + params["RcSuffix"] = suffix + self.project.setDirty(True) + elif self.project.getProjectType() in ["PySide", "PySide2"]: + E5MessageBox.information( + self, + self.tr("Configure uic Compiler"), + self.tr("""No project specific uic compiler flags are""" + """ supported for PySide or PySide2.""")) ########################################################################### ## Support for hooks below
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Project/UicCompilerOptionsDialog.py Sat Nov 24 15:37:04 2018 +0100 @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2018 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implementing a dialog to enter some non-common uic compiler options. +""" + +from __future__ import unicode_literals + +from PyQt5.QtCore import PYQT_VERSION +from PyQt5.QtWidgets import QDialog + +from .Ui_UicCompilerOptionsDialog import Ui_UicCompilerOptionsDialog + + +class UicCompilerOptionsDialog(QDialog, Ui_UicCompilerOptionsDialog): + """ + Class implementing a dialog to enter some non-common uic compiler options. + """ + def __init__(self, compilerOptions, compiler, parent=None): + """ + Constructor + + @param compilerOptions dictionary containing the uic compiler options + @type dict + @param compiler name of the uic compiler executable + @type str + @param parent reference to the parent widget + @type QWidget + """ + super(UicCompilerOptionsDialog, self).__init__(parent) + self.setupUi(self) + + self.packageEdit.setText(compilerOptions["Package"]) + self.suffixEdit.setText(compilerOptions["RcSuffix"]) + + if 'uic5' not in compiler or PYQT_VERSION < 0x050600: + # only supported for PyQt5 >= 5.6 (April 2016) + self.packageGroup.setEnabled(False) + + msh = self.minimumSizeHint() + self.resize(max(self.width(), msh.width()), msh.height()) + + def getData(self): + """ + Public method to get the entered data. + + @return tuple containing the package and the rc-file suffix + @rtype tuple of (str, str) + """ + return ( + self.packageEdit.text().strip(), + self.suffixEdit.text().strip(), + )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Project/UicCompilerOptionsDialog.ui Sat Nov 24 15:37:04 2018 +0100 @@ -0,0 +1,130 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>UicCompilerOptionsDialog</class> + <widget class="QDialog" name="UicCompilerOptionsDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>500</width> + <height>246</height> + </rect> + </property> + <property name="windowTitle"> + <string>uic Compiler Options</string> + </property> + <property name="sizeGripEnabled"> + <bool>true</bool> + </property> + <layout class="QVBoxLayout" name="verticalLayout_3"> + <item> + <widget class="QGroupBox" name="packageGroup"> + <property name="title"> + <string>'import' Package</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout_2"> + <item> + <widget class="E5ClearableLineEdit" name="packageEdit"> + <property name="toolTip"> + <string>Enter the package name</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_2"> + <property name="text"> + <string><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</string> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> + <widget class="QGroupBox" name="suffixGroup"> + <property name="title"> + <string>Resources Suffix</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="E5ClearableLineEdit" name="suffixEdit"> + <property name="toolTip"> + <string>Enter the suffix of compiled resource files (default: _rc)</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_4"> + <property name="text"> + <string><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</string> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> + <widget class="QDialogButtonBox" name="buttonBox"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons"> + <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> + </property> + </widget> + </item> + </layout> + </widget> + <customwidgets> + <customwidget> + <class>E5ClearableLineEdit</class> + <extends>QLineEdit</extends> + <header>E5Gui/E5LineEdit.h</header> + </customwidget> + </customwidgets> + <tabstops> + <tabstop>packageEdit</tabstop> + <tabstop>suffixEdit</tabstop> + </tabstops> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>accepted()</signal> + <receiver>UicCompilerOptionsDialog</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>UicCompilerOptionsDialog</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/changelog Wed Nov 21 19:26:59 2018 +0100 +++ b/changelog Sat Nov 24 15:37:04 2018 +0100 @@ -8,6 +8,9 @@ - LogViewer -- added the capability to search for a regular expression (Qt >= 5.3.0 is required for this) +- Project Forms Browser + -- added support for the --resource-suffix= and --import-from= options of + pyuic (the PyQt forms compiler) - Shell, ShellWindow -- added the capability to search for a regular expression with QScintilla's POSIX mode
--- a/eric6.e4p Wed Nov 21 19:26:59 2018 +0100 +++ b/eric6.e4p Sat Nov 24 15:37:04 2018 +0100 @@ -941,6 +941,7 @@ <Source>Project/QuickFindFileDialog.py</Source> <Source>Project/SpellingPropertiesDialog.py</Source> <Source>Project/TranslationPropertiesDialog.py</Source> + <Source>Project/UicCompilerOptionsDialog.py</Source> <Source>Project/UicLoadUi.py</Source> <Source>Project/UserPropertiesDialog.py</Source> <Source>Project/__init__.py</Source> @@ -2066,6 +2067,7 @@ <Form>Preferences/ToolGroupConfigurationDialog.ui</Form> <Form>Preferences/ViewProfileSidebarsDialog.ui</Form> <Form>Preferences/ViewProfileToolboxesDialog.ui</Form> + <Form>Project/UicCompilerOptionsDialog.ui</Form> <Form>Project/AddDirectoryDialog.ui</Form> <Form>Project/AddFileDialog.ui</Form> <Form>Project/AddFoundFilesDialog.ui</Form> @@ -2225,14 +2227,14 @@ </Resources> <Others> <Other>.hgignore</Other> - <Other>APIs/Python/zope-2.10.7.api</Other> - <Other>APIs/Python/zope-2.11.2.api</Other> - <Other>APIs/Python/zope-3.3.1.api</Other> <Other>APIs/Python3/PyQt4.bas</Other> <Other>APIs/Python3/PyQt5.bas</Other> <Other>APIs/Python3/QScintilla2.bas</Other> <Other>APIs/Python3/eric6.api</Other> <Other>APIs/Python3/eric6.bas</Other> + <Other>APIs/Python/zope-2.10.7.api</Other> + <Other>APIs/Python/zope-2.11.2.api</Other> + <Other>APIs/Python/zope-3.3.1.api</Other> <Other>APIs/QSS/qss.api</Other> <Other>APIs/Ruby/Ruby-1.8.7.api</Other> <Other>APIs/Ruby/Ruby-1.8.7.bas</Other>
--- a/i18n/eric6_cs.ts Wed Nov 21 19:26:59 2018 +0100 +++ b/i18n/eric6_cs.ts Sat Nov 24 15:37:04 2018 +0100 @@ -5528,12 +5528,12 @@ <translation>&Filtr pro:</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source>Code Generation</source> <translation>Generování kódu</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source>uic error</source> <translation>uic chyba</translation> </message> @@ -5548,27 +5548,27 @@ <translation>Soubor <b>{0}</b> existuje ale neobsahuje žádné třídy.</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p>Byla nalezena chyba načtená z <b>{0}</b>.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="618"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Template soubor <b>{0}</b> nelze otevřít.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="654"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Nelze ovevřít source soubor "{0}".</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Nelze zapsat do source souboru "{0}".</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="208"/> <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> <translation type="unfinished"></translation> </message> @@ -52051,192 +52051,192 @@ <translation>Ostatní</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source>Read project file</source> <translation>Načíst soubor projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source>Save project file</source> <translation>Uložit soubor projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source>Read user project properties</source> <translation>Načíst uživatelská nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source>Save user project properties</source> <translation>Uložit uživatelská nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source>Read project session</source> <translation>Načíst relaci projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="1232"/> + <location filename="../Project/Project.py" line="1237"/> <source>Please save the project first.</source> <translation>Prosím, nejdříve uložte projekt.</translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source>Save project session</source> <translation>Uložit relaci projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source>Delete project session</source> <translation>Smazat relaci projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source>Read tasks</source> <translation>Načíst úlohy</translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source>Save tasks</source> <translation>Uložit úlohy</translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source>Read debugger properties</source> <translation>Načíst nastavení debuggeru</translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source>Save debugger properties</source> <translation>Uložit nastavení debuggeru</translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source>Delete debugger properties</source> <translation>Smazat nastavení debuggeru</translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>Add Language</source> <translation>Přidat jazyk</translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source>Delete translation</source> <translation>Smazat překlad</translation> </message> <message> - <location filename="../Project/Project.py" line="1659"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add file</source> <translation>Přidat soubor</translation> </message> <message> - <location filename="../Project/Project.py" line="1789"/> + <location filename="../Project/Project.py" line="1794"/> <source>The target directory must not be empty.</source> <translation>Cílový adresář nesmí být prázdný.</translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>Add directory</source> <translation>Přidat adresář</translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>The source directory must not be empty.</source> <translation>Cílový adresář nesmí být prázdný.</translation> </message> <message> - <location filename="../Project/Project.py" line="1937"/> + <location filename="../Project/Project.py" line="1942"/> <source>Rename file</source> <translation>Přejmenovat soubor</translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source>Rename File</source> <translation>Přejmenovat soubor</translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source>Delete file</source> <translation>Smazat soubor</translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source>Delete directory</source> <translation>Smazat adresář</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source>Create project directory</source> <translation>Vytvořit adresář projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>New Project</source> <translation>Nový projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="2436"/> + <location filename="../Project/Project.py" line="2441"/> <source>Add existing files to the project?</source> <translation>Přidat existující soubory do projektu?</translation> </message> <message> - <location filename="../Project/Project.py" line="2555"/> + <location filename="../Project/Project.py" line="2560"/> <source>Would you like to edit the VCS command options?</source> <translation>Chcete editovat parametry VCS příkazu?</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>New project</source> <translation>Nový projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="2503"/> + <location filename="../Project/Project.py" line="2508"/> <source>Shall the project file be added to the repository?</source> <translation>Má být projekt přidán do repozitáře?</translation> </message> <message> - <location filename="../Project/Project.py" line="2527"/> + <location filename="../Project/Project.py" line="2532"/> <source>Select version control system for the project</source> <translation>Výběr verzovacího systému projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> + <location filename="../Project/Project.py" line="3783"/> <source>Open project</source> <translation>Otevřít projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3057"/> + <location filename="../Project/Project.py" line="3062"/> <source>Project Files (*.e4p)</source> <translation>Soubory projektu (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save project as</source> <translation>Uložit projekt jako</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source>Save File</source> <translation>Uložit soubor</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>Close Project</source> <translation>Zavřít projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>The current project has unsaved changes.</source> <translation>Aktuální projekt obsahuje neuložené změny.</translation> </message> <message> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>Syntax errors detected</source> <translation>Zjištěny syntaktické chyby</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Projekt obsahuje %n soubor se syntaktickými chybami.</numerusform> @@ -52245,162 +52245,162 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>&New...</source> <translation>&Nový...</translation> </message> <message> - <location filename="../Project/Project.py" line="3769"/> + <location filename="../Project/Project.py" line="3774"/> <source>Generate a new project</source> <translation>Vygenerovat nový projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3770"/> + <location filename="../Project/Project.py" line="3775"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nový...</b><p>Otevře se dialogové okno pro zadání informací o novém projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>&Open...</source> - <translation>&Otevřít...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3783"/> + <source>&Open...</source> + <translation>&Otevřít...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3788"/> <source>Open an existing project</source> <translation>Otevřít existující projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3784"/> + <location filename="../Project/Project.py" line="3789"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Otevřít....</b><p>Otevře existující projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> - <source>Close project</source> - <translation>Zavřít projekt</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3791"/> - <source>&Close</source> - <translation>&Zavřít</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3795"/> - <source>Close the current project</source> - <translation>Uzavře aktuální projekt</translation> - </message> - <message> <location filename="../Project/Project.py" line="3796"/> + <source>Close project</source> + <translation>Zavřít projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> + <source>&Close</source> + <translation>&Zavřít</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3800"/> + <source>Close the current project</source> + <translation>Uzavře aktuální projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3801"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Zavřít</b><p>Aktuální projekt se uzavře.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> - <source>Save project</source> - <translation>Uložit projekt</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3995"/> - <source>&Save</source> - <translation>&Uložit</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Save the current project</source> - <translation>Uložit aktuální projekt</translation> - </message> - <message> <location filename="../Project/Project.py" line="3808"/> + <source>Save project</source> + <translation>Uložit projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4000"/> + <source>&Save</source> + <translation>&Uložit</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3812"/> + <source>Save the current project</source> + <translation>Uložit aktuální projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3813"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Uložit</b><p>Aktuální projekt se uloží.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save &as...</source> <translation>Uložit j&ako...</translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> + <location filename="../Project/Project.py" line="3824"/> <source>Save the current project to a new file</source> <translation>Uloží aktuální projekt do nového souboru</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> + <location filename="../Project/Project.py" line="3826"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Uložit jako</b><p>Uloží aktuální projekt do nového souboru.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> + <location filename="../Project/Project.py" line="3835"/> <source>Add files to project</source> <translation>Přidat soubory do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add &files...</source> - <translation>&Přidat soubory...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3835"/> + <source>Add &files...</source> + <translation>&Přidat soubory...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3840"/> <source>Add files to the current project</source> <translation>Přidat soubory do aktuálního projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> + <location filename="../Project/Project.py" line="3842"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Přidat soubory...</b><p>Otevře dialog pri přidání souborů do aktuálního projektu. Místo pro přidání je definováno extenzí souborů.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> + <location filename="../Project/Project.py" line="3851"/> <source>Add directory to project</source> <translation>Přidat adresář do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory...</source> - <translation>Přidat adresář...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3851"/> + <source>Add directory...</source> + <translation>Přidat adresář...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3856"/> <source>Add a directory to the current project</source> <translation>Přidat adresář do aktuálního projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> + <location filename="../Project/Project.py" line="3858"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Přidat adresář...</b><p>Otevře dialog pro přičtení adresáře do aktuálního projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> + <location filename="../Project/Project.py" line="3866"/> <source>Add translation to project</source> <translation>Přidat překlad do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add &translation...</source> - <translation>Přida&t překlad...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3866"/> + <source>Add &translation...</source> + <translation>Přida&t překlad...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source>Add a translation to the current project</source> <translation>Přidat překlad do aktuálního projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3868"/> + <location filename="../Project/Project.py" line="3873"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Přidat překlad</b><p>Otevře dialog pro přidání překladu do aktuálního projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Search new files</source> <translation>Hledat nové soubory</translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Searc&h new files...</source> <translation>&Hledat nové soubory...</translation> </message> <message> - <location filename="../Project/Project.py" line="3880"/> + <location filename="../Project/Project.py" line="3885"/> <source>Search new files in the project directory.</source> <translation>Hledat nové soubory v adresáři projektu.</translation> </message> @@ -52410,57 +52410,57 @@ <translation type="obsolete"><b>Hledat nové soubory...</b><p>Hledají se nové soubory (zdrojové, *.ui, *.idl) v adresáři projektu a v registrovaných podadresářích.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> + <location filename="../Project/Project.py" line="3911"/> <source>Project properties</source> <translation>Nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> - <source>&Properties...</source> - <translation>&Natavení...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3911"/> + <source>&Properties...</source> + <translation>&Natavení...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3916"/> <source>Show the project properties</source> <translation>Zobrazit nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3917"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Nastavení...</b><p>Zobrazí dialog s editací nastavení projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> + <location filename="../Project/Project.py" line="3924"/> <source>User project properties</source> <translation>Uživatelská nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> - <source>&User Properties...</source> - <translation>Uživat&elská nastavení...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3924"/> + <source>&User Properties...</source> + <translation>Uživat&elská nastavení...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3929"/> <source>Show the user specific project properties</source> <translation>Zobrazit uživatelem definovaná nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3926"/> + <location filename="../Project/Project.py" line="3931"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Uživatelská nastavení...</b><p>Zobrazí dialog s editací uživatelských nastavení projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations</source> <translation>Asociace typů souborů</translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations...</source> <translation>Asociace typů souborů...</translation> </message> <message> - <location filename="../Project/Project.py" line="3938"/> + <location filename="../Project/Project.py" line="3943"/> <source>Show the project filetype associations</source> <translation>Zobrazit asociace typů souborů</translation> </message> @@ -52470,347 +52470,347 @@ <translation type="obsolete"><b>Asociace typů souborů...</b><p>Zobrazí se dialog s editací asociace typů souborů v projektu. Na základě vzorku souborového jména tyto asociace určují typ souboru (zdrojový kód, formulář, interface nebo jiné). Tyto asociace jsou použity při přidávání souborů do projektu a při vyhledávání.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> + <location filename="../Project/Project.py" line="3975"/> <source>Debugger Properties</source> <translation>Nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger &Properties...</source> - <translation>Nastavení &debuggeru...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3974"/> - <source>Show the debugger properties</source> - <translation>Zobrazit nastavení debugeru</translation> - </message> - <message> <location filename="../Project/Project.py" line="3975"/> + <source>Debugger &Properties...</source> + <translation>Nastavení &debuggeru...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3979"/> + <source>Show the debugger properties</source> + <translation>Zobrazit nastavení debugeru</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3980"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Nastavení debugeru...</b><p>Zobrazí dialog s editací nastavení debugeru.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> - <source>Load</source> - <translation>Načíst</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3983"/> - <source>&Load</source> - <translation>&Načíst</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3987"/> - <source>Load the debugger properties</source> - <translation>Načíst nastavení debugeru</translation> - </message> - <message> <location filename="../Project/Project.py" line="3988"/> + <source>Load</source> + <translation>Načíst</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3988"/> + <source>&Load</source> + <translation>&Načíst</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3992"/> + <source>Load the debugger properties</source> + <translation>Načíst nastavení debugeru</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3993"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Načíst nastavení debugeru</b><p>Načtou se nastavení debugeru do projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3995"/> - <source>Save</source> - <translation>Uložit</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3999"/> - <source>Save the debugger properties</source> - <translation>Uložit nastavení debugeru</translation> - </message> - <message> <location filename="../Project/Project.py" line="4000"/> + <source>Save</source> + <translation>Uložit</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4004"/> + <source>Save the debugger properties</source> + <translation>Uložit nastavení debugeru</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4005"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Uložit nastavení debugeru</b><p>Uloží nastavení debugeru definovaná v projektu..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4007"/> - <source>Delete</source> - <translation>Smazat</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>&Delete</source> - <translation>Sma&zat</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4011"/> - <source>Delete the debugger properties</source> - <translation>Smazat nastavení debugeru</translation> - </message> - <message> <location filename="../Project/Project.py" line="4012"/> + <source>Delete</source> + <translation>Smazat</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4012"/> + <source>&Delete</source> + <translation>Sma&zat</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4016"/> + <source>Delete the debugger properties</source> + <translation>Smazat nastavení debugeru</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4017"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Smazat nastavení debugeru</b><p>Smaže se soubor obsahující nastavení debugeru v daném projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> + <location filename="../Project/Project.py" line="4025"/> <source>Reset</source> <translation></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> - <source>&Reset</source> - <translation>&Reset</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4024"/> - <source>Reset the debugger properties</source> - <translation>Reset nastavení debugeru</translation> - </message> - <message> <location filename="../Project/Project.py" line="4025"/> + <source>&Reset</source> + <translation>&Reset</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4029"/> + <source>Reset the debugger properties</source> + <translation>Reset nastavení debugeru</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4030"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Reset nastavení debugeru</b><p>Zresetuje nastavení debugeru v projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4034"/> - <source>Load session</source> - <translation>Načíst relaci</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4038"/> - <source>Load the projects session file.</source> - <translation>Načíst soubor s relací projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4039"/> + <source>Load session</source> + <translation>Načíst relaci</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4043"/> + <source>Load the projects session file.</source> + <translation>Načíst soubor s relací projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4044"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Načíst relaci</b><p>Načte soubor s relací projektu. Relace obsahuje následující údaje:<br>- všechny otevřené zdrojové soubory<br>- všechny breakpointy<br>- argumenty příkazové řádky <br>- pracovní adresář<br>- příznak výjimky</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4052"/> - <source>Save session</source> - <translation>Uložit relaci</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4056"/> - <source>Save the projects session file.</source> - <translation>Uložit soubor s relací projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4057"/> + <source>Save session</source> + <translation>Uložit relaci</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4061"/> + <source>Save the projects session file.</source> + <translation>Uložit soubor s relací projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4062"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Uložit relaci</b><p>Uloží soubor s relací projektu. Relace obsahuje následující údaje:<br>- všechny otevřené zdrojové soubory<br>- všechny breakpointy<br>- argumenty příkazové řádky <br>- pracovní adresář<br>- příznak výjimky</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4070"/> - <source>Delete session</source> - <translation>Smazat relaci</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4074"/> - <source>Delete the projects session file.</source> - <translation>Smaže soubor s relací projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4075"/> + <source>Delete session</source> + <translation>Smazat relaci</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4079"/> + <source>Delete the projects session file.</source> + <translation>Smaže soubor s relací projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4080"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Smazat relaci</b><p>Smaže soubor s relací projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>Code Metrics</source> <translation>Metriky kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>&Code Metrics...</source> <translation>Metriky &kódu...</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4093"/> <source>Show some code metrics for the project.</source> <translation>Zobrazit metriky kódu projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="4090"/> + <location filename="../Project/Project.py" line="4095"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Metriky kódu...</b><p>Zobrazí se metriky kódu všech python souborů v projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Python Code Coverage</source> <translation>Pokrytí python kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Code Co&verage...</source> <translation>Pokr&ytí kódu...</translation> </message> <message> - <location filename="../Project/Project.py" line="4102"/> + <location filename="../Project/Project.py" line="4107"/> <source>Show code coverage information for the project.</source> <translation>Zobrazit informace pokrytí kódu projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="4104"/> + <location filename="../Project/Project.py" line="4109"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Pokrytí kódu...</b><p>Zobrazí informace o pokrytí kódu ve všech python souborech projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Profile Data</source> <translation>Profilovat data</translation> </message> <message> - <location filename="../Project/Project.py" line="4112"/> + <location filename="../Project/Project.py" line="4117"/> <source>&Profile Data...</source> <translation>&Profilovat data...</translation> </message> <message> - <location filename="../Project/Project.py" line="4116"/> + <location filename="../Project/Project.py" line="4121"/> <source>Show profiling data for the project.</source> <translation>Zobrazit profilování dat projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="4118"/> + <location filename="../Project/Project.py" line="4123"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profilovat data</b><p>Zobrazí se profilování dat projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Application Diagram</source> <translation>Diagram aplikace</translation> </message> <message> - <location filename="../Project/Project.py" line="4127"/> + <location filename="../Project/Project.py" line="4132"/> <source>&Application Diagram...</source> <translation>Diagram &aplikace...</translation> </message> <message> - <location filename="../Project/Project.py" line="4131"/> + <location filename="../Project/Project.py" line="4136"/> <source>Show a diagram of the project.</source> <translation>Zobrazit diagram projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="4133"/> + <location filename="../Project/Project.py" line="4138"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagram aplikace...</b><p>Zobrazí diagram projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4257"/> + <location filename="../Project/Project.py" line="4262"/> <source>&Project</source> <translation>&Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4258"/> - <source>Open &Recent Projects</source> - <translation>Otevřít poslední p&rojekty</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4259"/> - <source>&Version Control</source> - <translation>Kontrola &verzí</translation> - </message> - <message> <location filename="../Project/Project.py" line="4263"/> - <source>Chec&k</source> - <translation>Zkontro&lovat</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4265"/> - <source>Sho&w</source> - <translation>Zo&brazit</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4266"/> - <source>&Diagrams</source> - <translation>&Diagramy</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4267"/> - <source>Session</source> - <translation>Relace</translation> + <source>Open &Recent Projects</source> + <translation>Otevřít poslední p&rojekty</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4264"/> + <source>&Version Control</source> + <translation>Kontrola &verzí</translation> </message> <message> <location filename="../Project/Project.py" line="4268"/> - <source>Source &Documentation</source> - <translation>Zd&rojová dokumentace</translation> + <source>Chec&k</source> + <translation>Zkontro&lovat</translation> </message> <message> <location filename="../Project/Project.py" line="4270"/> - <source>Debugger</source> - <translation></translation> + <source>Sho&w</source> + <translation>Zo&brazit</translation> </message> <message> <location filename="../Project/Project.py" line="4271"/> + <source>&Diagrams</source> + <translation>&Diagramy</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4272"/> + <source>Session</source> + <translation>Relace</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4273"/> + <source>Source &Documentation</source> + <translation>Zd&rojová dokumentace</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4275"/> + <source>Debugger</source> + <translation></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4276"/> <source>Pac&kagers</source> <translation>Balíč&ky</translation> </message> <message> - <location filename="../Project/Project.py" line="4390"/> + <location filename="../Project/Project.py" line="4395"/> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4456"/> + <location filename="../Project/Project.py" line="4461"/> <source>&Clear</source> <translation>&Vyčistit</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>Search New Files</source> <translation>Hledat nové soubory</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>There were no new files found to be added.</source> <translation>Nebyly nalezeny žádné soubory, které je možné přidat.</translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source>Version Control System</source> <translation>Version Control System</translation> </message> <message> - <location filename="../Project/Project.py" line="4893"/> + <location filename="../Project/Project.py" line="4898"/> <source>Coverage Data</source> <translation>Datové pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="4943"/> + <location filename="../Project/Project.py" line="4948"/> <source>There is no main script defined for the current project. Aborting</source> <translation>V aktuálním projektu nebyl určen hlavní skript. Zrušeno</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Code Coverage</source> <translation>Pokrytí kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Please select a coverage file</source> <translation>Prosím, vyberte soubor pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source>Create Package List</source> <translation>Vytvořit seznam balíčků</translation> </message> <message> - <location filename="../Project/Project.py" line="4156"/> + <location filename="../Project/Project.py" line="4161"/> <source>Create &Package List</source> <translation type="unfinished">Vytvořit Plugin &archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source>Create Plugin Archive</source> <translation>Vytvořit Plugin archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="5165"/> + <location filename="../Project/Project.py" line="5170"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Soubor <b>PKGLIST</b> již existuje.</p><p>Přepsat jej?</p></translation> </message> @@ -52820,22 +52820,22 @@ <translation type="obsolete"><p>Soubor <b>PKGLIST</b> neexistuje. Zrušeno...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5233"/> + <location filename="../Project/Project.py" line="5238"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Projekt nemá definován hlavní skript. Zrušeno...</translation> </message> <message> - <location filename="../Project/Project.py" line="1690"/> + <location filename="../Project/Project.py" line="1695"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>Zdrojový adresář neobsahuje žádné soubory související s danou kategorií.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>Select Version Control System</source> <translation>Vybrat Version Control System</translation> </message> <message> - <location filename="../Project/Project.py" line="2534"/> + <location filename="../Project/Project.py" line="2539"/> <source>None</source> <translation>None</translation> </message> @@ -52845,42 +52845,42 @@ <translation>Zaregistrovat typ projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="4172"/> + <location filename="../Project/Project.py" line="4177"/> <source>Create Plugin &Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>You have to specify a translation pattern first.</source> <translation>Nejdříve musíte specifikovat vzor překladu.</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Translation Pattern</source> <translation>Vzor překladu</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Zadejte vzor cesty pro soubory s překlady (použijte '%language%' na místě s kódem jazyka):</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations</source> <translation>Spojení lexeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations...</source> <translation>Spojení lexeru...</translation> </message> <message> - <location filename="../Project/Project.py" line="3956"/> + <location filename="../Project/Project.py" line="3961"/> <source>Show the project lexer associations (overriding defaults)</source> <translation>Zobrazit spojení lexeru projektu (přepíše výchozí)</translation> </message> <message> - <location filename="../Project/Project.py" line="3958"/> + <location filename="../Project/Project.py" line="3963"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Spojení lexeru...</b><p>Zobrazuje dialog s editací spojení lexeru projektu. Tato spojení přepisují globální lexer spojení. Lexer je použit pro zvýraznění textu v editoru.</p></translation> </message> @@ -52900,62 +52900,62 @@ <translation>Python3 soubory (*.py *.py3);;Python3 GUI soubory (*.pyw *.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor projektu <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru projektu <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation><p>Uživatelská nastavení projektu <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru s uživatelskými nastaveními <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s relací projektu <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru s relací projektu <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>Soubor s relací projektu <b>{0}</b> nelze smazat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <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="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru s úlohami <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s nastaveními debuggeru <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru s nastaveními debuggeru <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>Soubor s nastaveními debuggeru <b>{0}</b> nelze smazat.</p></translation> </message> @@ -52965,17 +52965,17 @@ <translation type="obsolete"><p>Vybraný soubor s překladem <b>{0}</b> nelze smazat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1721"/> + <location filename="../Project/Project.py" line="1726"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Soubor <b>{0}</b> již existuje.</p><p>Má se přepsat?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Soubor <b>{0}</b> již existuje.</p><p>Má se přepsat?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nemůže být přejmenován.<br />Důvod: {1}</p></translation> </message> @@ -52990,17 +52990,17 @@ <translation type="obsolete"><p>Vybraný adresář <b>{0}</b> nelze smazat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>Adresář projektu <b>{0}</b> nelze vytvořit.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Vybrané VCS <b>{0}</b> nebylo nalezeno.<br/>Kontrola verzí vypnuta.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Soubor <b>PKGLIST</b> nelze vytvořit.</p><p>Důvod: {0}</p></translation> </message> @@ -53010,22 +53010,22 @@ <translation type="obsolete"><p>Soubor <b>PKGLIST</b> nelze načíst.</p><p>Důvod: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5375"/> + <location filename="../Project/Project.py" line="5380"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nelze uložit do archivu. Ingorováno.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5449"/> + <location filename="../Project/Project.py" line="5454"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Plugin soubor <b>{0}</b> nelze přečíst.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1646"/> + <location filename="../Project/Project.py" line="1651"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>Vybraný soubor <b>{0}</b> nelze přidat do <b>{1}</b>.</p><p>Důvod: {2}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1703"/> + <location filename="../Project/Project.py" line="1708"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Cílový adresář <b>{0}</b> nelze vytvořit.</p><p>Důvod: {1}</p></translation> </message> @@ -53035,32 +53035,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4145"/> + <location filename="../Project/Project.py" line="4150"/> <source>Load a diagram from file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4147"/> + <location filename="../Project/Project.py" line="4152"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> @@ -53090,37 +53090,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4753"/> + <location filename="../Project/Project.py" line="4758"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4161"/> + <location filename="../Project/Project.py" line="4166"/> <source>Create an initial PKGLIST file for an eric6 plugin.</source> <translation type="unfinished">Vytvořit soubor eric5 plugin archivu. {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4163"/> + <location filename="../Project/Project.py" line="4168"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"><b>Vytvořit Plugin archiv</b><p>Vytvoří soubor s eric5 plugin archivem za použití seznamu souborů daných v PKGLIST souboru. Jméno archivu je odvozeno ze jména hlavního skriptu.</p> {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4177"/> + <location filename="../Project/Project.py" line="4182"/> <source>Create eric6 plugin archive files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4179"/> + <location filename="../Project/Project.py" line="4184"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5340"/> + <location filename="../Project/Project.py" line="5345"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"><p>Soubor s eric5 plugin archivem <b>{0}</b> nelze vytvořit. Zrušeno...</p><p>Důvod: {1}</p> {6 ?} {0}?} {1}?}</translation> </message> @@ -53145,83 +53145,83 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3897"/> + <location filename="../Project/Project.py" line="3902"/> <source>Search for a file in the project list of files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3904"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5269"/> + <location filename="../Project/Project.py" line="5274"/> <source>Create Plugin Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (&Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4199"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4196"/> + <location filename="../Project/Project.py" line="4201"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5247"/> + <location filename="../Project/Project.py" line="5252"/> <source>Select package lists:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Creating plugin archives...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Abort</source> <translation type="unfinished">Přerušit</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>%v/%m Archives</source> <translation type="unfinished"></translation> </message> @@ -53231,132 +53231,132 @@ <translation type="obsolete">Pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="5282"/> + <location filename="../Project/Project.py" line="5287"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5394"/> + <location filename="../Project/Project.py" line="5399"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5397"/> + <location filename="../Project/Project.py" line="5402"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5258"/> + <location filename="../Project/Project.py" line="5263"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5312"/> + <location filename="../Project/Project.py" line="5317"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3882"/> + <location filename="../Project/Project.py" line="3887"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3940"/> + <location filename="../Project/Project.py" line="3945"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source>Create Makefile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4210"/> + <location filename="../Project/Project.py" line="4215"/> <source>&Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4214"/> + <location filename="../Project/Project.py" line="4219"/> <source>Perform a 'make' run.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4216"/> + <location filename="../Project/Project.py" line="4221"/> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5654"/> + <location filename="../Project/Project.py" line="5659"/> <source>Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4229"/> <source>&Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4228"/> + <location filename="../Project/Project.py" line="4233"/> <source>Question 'make', if a rebuild is needed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4230"/> + <location filename="../Project/Project.py" line="4235"/> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4272"/> + <location filename="../Project/Project.py" line="4277"/> <source>Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5602"/> + <location filename="../Project/Project.py" line="5607"/> <source>The make process did not start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5647"/> + <location filename="../Project/Project.py" line="5652"/> <source>The make process crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5657"/> - <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="5662"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5667"/> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>The makefile contains errors.</source> <translation type="unfinished"></translation> </message> @@ -53616,7 +53616,7 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="947"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1011"/> <source>Forms</source> <translation>Formuláře</translation> </message> @@ -53666,182 +53666,182 @@ <translation>Dialog s tlačítky (dole uprostřed)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="149"/> + <location filename="../Project/ProjectFormsBrowser.py" line="158"/> <source>Compile form</source> <translation>Kompilovat formulář</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="327"/> + <location filename="../Project/ProjectFormsBrowser.py" line="352"/> <source>Compile all forms</source> <translation>Kompilovat všechny formuláře</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="238"/> + <location filename="../Project/ProjectFormsBrowser.py" line="255"/> <source>Open in Qt-Designer</source> <translation>Otevřít v Qt-Designeru</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="240"/> - <source>Open in Editor</source> - <translation>Otevřít v editoru</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="144"/> - <source>Preview form</source> - <translation>Náhled formuláře</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="243"/> - <source>Preview translations</source> - <translation>Náhled překladů</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="175"/> - <source>Rename file</source> - <translation>Přejmenovat soubor</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="288"/> - <source>Remove from project</source> - <translation>Odebrat z projektu</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="291"/> - <source>Delete</source> - <translation>Smazat</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="300"/> - <source>New form...</source> - <translation>Nový formulář...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="333"/> - <source>Add forms...</source> - <translation>Přidat formuláře...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="335"/> - <source>Add forms directory...</source> - <translation>Přidat adresář s formuláři...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="338"/> - <source>Expand all directories</source> - <translation>Rozložit všechny adresáře</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="340"/> - <source>Collapse all directories</source> - <translation>Složit všechny adresáře</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="247"/> - <source>Compile forms</source> - <translation>Kompilovat formuláře</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> - <source>New Form</source> - <translation>Nový formulář</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="549"/> - <source>Select a form type:</source> - <translation>Vybrat typ formuláře:</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="582"/> - <source>The file already exists! Overwrite it?</source> - <translation>Soubor již existuje! Přepsat jej?</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> - <source>Delete forms</source> - <translation>Smazat formuláře</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> - <source>Do you really want to delete these forms from the project?</source> - <translation>Opravdu chcete odebrat tyto formuláře z projektu?</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> - <source>Form Compilation</source> - <translation>Kompilace formuláře</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="698"/> - <source>The compilation of the form file was successful.</source> - <translation>Kompilace souboru s formulářem byla úspěšná.</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> - <source>The compilation of the form file failed.</source> - <translation>Kompilace souboru s formulářem selhala.</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> - <source>Process Generation Error</source> - <translation>Chyba v procesu generování</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="905"/> - <source>Compiling forms...</source> - <translation>Kompilovat formuláře...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> - <source>Abort</source> - <translation>Přerušit</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> - <source>Determining changed forms...</source> - <translation>Určení změněných formulářů...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="972"/> - <source>Compiling changed forms...</source> - <translation>Kompilování změněných formulářů...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="160"/> - <source>Generate Dialog Code...</source> - <translation>Generovat kód Dialog...</translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="257"/> - <source>Open</source> - <translation>Otevřít</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="563"/> - <source>Qt User-Interface Files (*.ui);;All Files (*)</source> - <translation>Qt User-Interface soubory (*.ui);;Všechny soubory (*)</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="343"/> - <source>Configure...</source> - <translation>Konfigurovat...</translation> + <source>Open in Editor</source> + <translation>Otevřít v editoru</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="153"/> + <source>Preview form</source> + <translation>Náhled formuláře</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="260"/> + <source>Preview translations</source> + <translation>Náhled překladů</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="184"/> + <source>Rename file</source> + <translation>Přejmenovat soubor</translation> </message> <message> <location filename="../Project/ProjectFormsBrowser.py" line="309"/> + <source>Remove from project</source> + <translation>Odebrat z projektu</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="312"/> + <source>Delete</source> + <translation>Smazat</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="321"/> + <source>New form...</source> + <translation>Nový formulář...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="358"/> + <source>Add forms...</source> + <translation>Přidat formuláře...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="360"/> + <source>Add forms directory...</source> + <translation>Přidat adresář s formuláři...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="363"/> + <source>Expand all directories</source> + <translation>Rozložit všechny adresáře</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="365"/> + <source>Collapse all directories</source> + <translation>Složit všechny adresáře</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="264"/> + <source>Compile forms</source> + <translation>Kompilovat formuláře</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> + <source>New Form</source> + <translation>Nový formulář</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="574"/> + <source>Select a form type:</source> + <translation>Vybrat typ formuláře:</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="607"/> + <source>The file already exists! Overwrite it?</source> + <translation>Soubor již existuje! Přepsat jej?</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> + <source>Delete forms</source> + <translation>Smazat formuláře</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> + <source>Do you really want to delete these forms from the project?</source> + <translation>Opravdu chcete odebrat tyto formuláře z projektu?</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> + <source>Form Compilation</source> + <translation>Kompilace formuláře</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="776"/> + <source>The compilation of the form file was successful.</source> + <translation>Kompilace souboru s formulářem byla úspěšná.</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> + <source>The compilation of the form file failed.</source> + <translation>Kompilace souboru s formulářem selhala.</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> + <source>Process Generation Error</source> + <translation>Chyba v procesu generování</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="969"/> + <source>Compiling forms...</source> + <translation>Kompilovat formuláře...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> + <source>Abort</source> + <translation>Přerušit</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> + <source>Determining changed forms...</source> + <translation>Určení změněných formulářů...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1036"/> + <source>Compiling changed forms...</source> + <translation>Kompilování změněných formulářů...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="169"/> + <source>Generate Dialog Code...</source> + <translation>Generovat kód Dialog...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="274"/> + <source>Open</source> + <translation>Otevřít</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="588"/> + <source>Qt User-Interface Files (*.ui);;All Files (*)</source> + <translation>Qt User-Interface soubory (*.ui);;Všechny soubory (*)</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="368"/> + <source>Configure...</source> + <translation>Konfigurovat...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="330"/> <source>Copy Path to Clipboard</source> <translation>Kopírovat cestu do schránky</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation><p>Nový soubor s formulářem <b>{0}</b> se nepodařilo vytvořit..<br>Problém: {1}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="713"/> + <location filename="../Project/ProjectFormsBrowser.py" line="791"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation><p>Kompilace formuláře se nepodařila.</p><p>Důvod: {0}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>Nelze spustit {0}.<br>Ověřte, že je umístěn v požadované cestě.</translation> </message> @@ -53896,10 +53896,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>%v/%m Forms</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>Configure uic Compiler</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>No project specific uic compiler flags are supported for PySide or PySide2.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectInterfacesBrowser</name> @@ -75710,6 +75720,44 @@ </message> </context> <context> + <name>UicCompilerOptionsDialog</name> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="14"/> + <source>uic Compiler Options</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="23"/> + <source>'import' Package</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="29"/> + <source>Enter the package name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="36"/> + <source><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="49"/> + <source>Resources Suffix</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="55"/> + <source>Enter the suffix of compiled resource files (default: _rc)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="62"/> + <source><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>UnittestDialog</name> <message> <location filename="../PyUnit/UnittestDialog.py" line="405"/> @@ -85585,22 +85633,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1871"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> <source>Web Archive (*.mhtml *.mht)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1872"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1874"/> <source>HTML File (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1875"/> <source>HTML File with all resources (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1897"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1899"/> <source>Save Web Page</source> <translation type="unfinished"></translation> </message> @@ -85610,22 +85658,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source>Quota Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source>Protocol Handler Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source><p> Allow the website at <b>{0}</b> to open all <b>{1}</b> links?</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_de.ts Wed Nov 21 19:26:59 2018 +0100 +++ b/i18n/eric6_de.ts Sat Nov 24 15:37:04 2018 +0100 @@ -50774,527 +50774,527 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source>Read project file</source> <translation>Projektdatei lesen</translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source>Delete translation</source> <translation>Übersetzung löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="1659"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add file</source> <translation>Datei hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source>Delete file</source> <translation>Datei löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source>Create project directory</source> <translation>Projektverzeichnis erstellen</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> + <location filename="../Project/Project.py" line="3783"/> <source>Open project</source> <translation>Projekt öffnen</translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save project as</source> <translation>Projekt speichern unter</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source>Save File</source> <translation>Datei speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>Close Project</source> <translation>Projekt schließen</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>The current project has unsaved changes.</source> <translation>Das aktuelle Projekt hat ungesicherte Änderungen.</translation> </message> <message> - <location filename="../Project/Project.py" line="3995"/> + <location filename="../Project/Project.py" line="4000"/> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>New project</source> - <translation>Neues Projekt</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3764"/> - <source>&New...</source> - <translation>&Neu...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3769"/> + <source>New project</source> + <translation>Neues Projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3769"/> + <source>&New...</source> + <translation>&Neu...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3774"/> <source>Generate a new project</source> <translation>Erstelle ein neues Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3770"/> + <location filename="../Project/Project.py" line="3775"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Neu...</b><p>Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>&Open...</source> - <translation>&Öffnen...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3783"/> + <source>&Open...</source> + <translation>&Öffnen...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3788"/> <source>Open an existing project</source> <translation>Öffnet ein bestehendes Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3784"/> + <location filename="../Project/Project.py" line="3789"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Öffnen...</b><p>Dies öffnet ein bestehendes Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> - <source>Close project</source> - <translation>Projekt schließen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3791"/> - <source>&Close</source> - <translation>Schl&ießen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3795"/> - <source>Close the current project</source> - <translation>Schließt das aktuelle Projekt</translation> - </message> - <message> <location filename="../Project/Project.py" line="3796"/> + <source>Close project</source> + <translation>Projekt schließen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> + <source>&Close</source> + <translation>Schl&ießen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3800"/> + <source>Close the current project</source> + <translation>Schließt das aktuelle Projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3801"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Schließen</b><p>Dies schließt das aktuelle Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> - <source>Save project</source> - <translation>Projekt speichern</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Save the current project</source> - <translation>Speichert das aktuelle Projekt</translation> - </message> - <message> <location filename="../Project/Project.py" line="3808"/> + <source>Save project</source> + <translation>Projekt speichern</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3812"/> + <source>Save the current project</source> + <translation>Speichert das aktuelle Projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3813"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Speichern</b><p>Dies speichert das aktuelle Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> + <location filename="../Project/Project.py" line="3824"/> <source>Save the current project to a new file</source> <translation>Speichert das aktuelle Projekt in eine neue Datei</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> + <location filename="../Project/Project.py" line="3826"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Speichern unter</b><p>Dies speichert das aktuelle Projekt in eine neue Datei.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add translation to project</source> - <translation>Übersetzung zum Projekt hinzufügen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add &translation...</source> - <translation>&Übersetzung hinzufügen...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3866"/> + <source>Add translation to project</source> + <translation>Übersetzung zum Projekt hinzufügen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3866"/> + <source>Add &translation...</source> + <translation>&Übersetzung hinzufügen...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source>Add a translation to the current project</source> <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="3868"/> + <location filename="../Project/Project.py" line="3873"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Übersetzung hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem eine Übersetzung zum aktuellen Projekt hinzugefügt werden kann.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> + <location filename="../Project/Project.py" line="3911"/> <source>Project properties</source> <translation>Projekteigenschaften</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> - <source>&Properties...</source> - <translation>&Eigenschaften...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3911"/> + <source>&Properties...</source> + <translation>&Eigenschaften...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3916"/> <source>Show the project properties</source> <translation>Zeigt die Projekteigenschaften an</translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3917"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Eigenschaften...</b><p>Dies zeigt einen Dialog an, mit dem die Projekteigenschaften bearbeitet werden können.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4258"/> - <source>Open &Recent Projects</source> - <translation>Zu&letzt geöffnete Projekte</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1789"/> - <source>The target directory must not be empty.</source> - <translation>Das Zielverzeichnis darf nicht leer sein.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3876"/> - <source>Search new files</source> - <translation>Neue Dateien suchen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3876"/> - <source>Searc&h new files...</source> - <translation>Neue &Dateien suchen...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3880"/> - <source>Search new files in the project directory.</source> - <translation>Sucht neue Dateien im Projektverzeichnis.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1800"/> - <source>Add directory</source> - <translation>Verzeichnis hinzufügen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1800"/> - <source>The source directory must not be empty.</source> - <translation>Das Quellverzeichnis darf nicht leer sein.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1371"/> - <source>Add Language</source> - <translation>Sprache hinzufügen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3815"/> - <source>Save &as...</source> - <translation>Speichern &unter...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4765"/> - <source>Version Control System</source> - <translation>Versionskontrollsystem</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4619"/> - <source>Search New Files</source> - <translation>Neue Dateien suchen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4619"/> - <source>There were no new files found to be added.</source> - <translation>Es wurden keine neuen Dateien gefunden.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1009"/> - <source>Read project session</source> - <translation>Projektsitzung lesen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1232"/> - <source>Please save the project first.</source> - <translation>Bitte speichern Sie zuerst das Projekt.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1045"/> - <source>Save project session</source> - <translation>Projektsitzung speichern</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4034"/> - <source>Load session</source> - <translation>Sitzung laden</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4038"/> - <source>Load the projects session file.</source> - <translation>Laden der Projektsitzung.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4052"/> - <source>Save session</source> - <translation>Sitzung speichern</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4056"/> - <source>Save the projects session file.</source> - <translation>Speichern der Projektsitzung.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4039"/> - <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> - <translation><b>Sitzung laden</b><p>Dies lädt eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4057"/> - <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> - <translation><b>Sitzung speichern</b><p>Dies speichert eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4268"/> - <source>Source &Documentation</source> - <translation>&Quelltextdokumentation</translation> - </message> - <message> <location filename="../Project/Project.py" line="4263"/> + <source>Open &Recent Projects</source> + <translation>Zu&letzt geöffnete Projekte</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1794"/> + <source>The target directory must not be empty.</source> + <translation>Das Zielverzeichnis darf nicht leer sein.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3881"/> + <source>Search new files</source> + <translation>Neue Dateien suchen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3881"/> + <source>Searc&h new files...</source> + <translation>Neue &Dateien suchen...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3885"/> + <source>Search new files in the project directory.</source> + <translation>Sucht neue Dateien im Projektverzeichnis.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1805"/> + <source>Add directory</source> + <translation>Verzeichnis hinzufügen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1805"/> + <source>The source directory must not be empty.</source> + <translation>Das Quellverzeichnis darf nicht leer sein.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1376"/> + <source>Add Language</source> + <translation>Sprache hinzufügen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3820"/> + <source>Save &as...</source> + <translation>Speichern &unter...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4770"/> + <source>Version Control System</source> + <translation>Versionskontrollsystem</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4624"/> + <source>Search New Files</source> + <translation>Neue Dateien suchen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4624"/> + <source>There were no new files found to be added.</source> + <translation>Es wurden keine neuen Dateien gefunden.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1014"/> + <source>Read project session</source> + <translation>Projektsitzung lesen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1237"/> + <source>Please save the project first.</source> + <translation>Bitte speichern Sie zuerst das Projekt.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1050"/> + <source>Save project session</source> + <translation>Projektsitzung speichern</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4039"/> + <source>Load session</source> + <translation>Sitzung laden</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4043"/> + <source>Load the projects session file.</source> + <translation>Laden der Projektsitzung.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4057"/> + <source>Save session</source> + <translation>Sitzung speichern</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4061"/> + <source>Save the projects session file.</source> + <translation>Speichern der Projektsitzung.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4044"/> + <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> + <translation><b>Sitzung laden</b><p>Dies lädt eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4062"/> + <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> + <translation><b>Sitzung speichern</b><p>Dies speichert eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4273"/> + <source>Source &Documentation</source> + <translation>&Quelltextdokumentation</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4268"/> <source>Chec&k</source> <translation>&Prüfen</translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>Code Metrics</source> <translation>Quelltextmetriken</translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>&Code Metrics...</source> <translation>&Quelltextmetriken...</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4093"/> <source>Show some code metrics for the project.</source> <translation>Zeige einige Quelltextmetriken für das Projekt.</translation> </message> <message> - <location filename="../Project/Project.py" line="4090"/> + <location filename="../Project/Project.py" line="4095"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Quelltextmetriken...</b><p>Dies zeigt einige Quelltextmetriken für alle Python-Dateien des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Python Code Coverage</source> <translation>Python-Quelltext-Abdeckung</translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Code Co&verage...</source> <translation>&Quelltext Abdeckung...</translation> </message> <message> - <location filename="../Project/Project.py" line="4102"/> + <location filename="../Project/Project.py" line="4107"/> <source>Show code coverage information for the project.</source> <translation>Zeige die Quelltextabdeckung für das Projekt.</translation> </message> <message> - <location filename="../Project/Project.py" line="4104"/> + <location filename="../Project/Project.py" line="4109"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Quelltext Abdeckung...</b><p>Dies zeigt die Quelltextabdeckung für alle Python-Dateien des Projektes an.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Profile Data</source> <translation>Profildaten</translation> </message> <message> - <location filename="../Project/Project.py" line="4112"/> + <location filename="../Project/Project.py" line="4117"/> <source>&Profile Data...</source> <translation>&Profildaten...</translation> </message> <message> - <location filename="../Project/Project.py" line="4116"/> + <location filename="../Project/Project.py" line="4121"/> <source>Show profiling data for the project.</source> <translation>Zeige Profildaten des aktuellen Projektes.</translation> </message> <message> - <location filename="../Project/Project.py" line="4118"/> + <location filename="../Project/Project.py" line="4123"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profildaten...</b><p>Dies zeigt die Profildaten des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4265"/> + <location filename="../Project/Project.py" line="4270"/> <source>Sho&w</source> <translation>&Zeige</translation> </message> <message> - <location filename="../Project/Project.py" line="4943"/> + <location filename="../Project/Project.py" line="4948"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> </message> <message> - <location filename="../Project/Project.py" line="4893"/> + <location filename="../Project/Project.py" line="4898"/> <source>Coverage Data</source> <translation>Quelltext Abdeckungsdaten</translation> </message> <message> - <location filename="../Project/Project.py" line="4259"/> + <location filename="../Project/Project.py" line="4264"/> <source>&Version Control</source> <translation>&Versionskontrolle</translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="../Project/Project.py" line="4127"/> + <location filename="../Project/Project.py" line="4132"/> <source>&Application Diagram...</source> <translation>&Applikations-Diagramm...</translation> </message> <message> - <location filename="../Project/Project.py" line="4131"/> + <location filename="../Project/Project.py" line="4136"/> <source>Show a diagram of the project.</source> <translation>Zeigt ein Diagramm des Projektes.</translation> </message> <message> - <location filename="../Project/Project.py" line="4133"/> + <location filename="../Project/Project.py" line="4138"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Applikations-Diagramm...</b><p>Dies zeigt ein Diagramm des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4266"/> + <location filename="../Project/Project.py" line="4271"/> <source>&Diagrams</source> <translation>&Diagramme</translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source>Save project file</source> <translation>Projektdatei speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Please select a coverage file</source> <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Please select a profile file</source> <translation>Bitte wählen Sie eine Datei mit Profildaten</translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory to project</source> - <translation>Verzeichnis zum Projekt hinzufügen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory...</source> - <translation>Verzeichnis hinzufügen...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3851"/> + <source>Add directory to project</source> + <translation>Verzeichnis zum Projekt hinzufügen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3851"/> + <source>Add directory...</source> + <translation>Verzeichnis hinzufügen...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3856"/> <source>Add a directory to the current project</source> <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> + <location filename="../Project/Project.py" line="3858"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Verzeichnis hinzufügen</b><p>Dies öffnet einen Dialog, mit dem ein Verzeichnis bzw. der Inhalt eines Verzeichnisses zum aktuellen Projekt hinzugefügt werden kann.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1937"/> + <location filename="../Project/Project.py" line="1942"/> <source>Rename file</source> <translation>Datei umbenennen</translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source>Rename File</source> <translation>Datei umbenennen</translation> </message> <message> - <location filename="../Project/Project.py" line="2503"/> + <location filename="../Project/Project.py" line="2508"/> <source>Shall the project file be added to the repository?</source> <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>New Project</source> <translation>Neues Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="2436"/> + <location filename="../Project/Project.py" line="2441"/> <source>Add existing files to the project?</source> <translation>Existierende Dateien dem Projekt hinzufügen?</translation> </message> <message> - <location filename="../Project/Project.py" line="2555"/> + <location filename="../Project/Project.py" line="2560"/> <source>Would you like to edit the VCS command options?</source> <translation>Möchten Sie die VCS-Befehlsoptionen bearbeiten?</translation> </message> <message> - <location filename="../Project/Project.py" line="2527"/> + <location filename="../Project/Project.py" line="2532"/> <source>Select version control system for the project</source> <translation>Wähle das Versionskontrollsystem für das Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Die Projektdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>Die Projektdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Projektsitzungsdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation><p>Die Projektsitzungsdatei <b>{0}</b> konnte nicht gespeichert werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>Das Projektverzeichnis <b>{0}</b> konnte nicht erstellt werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source>Delete project session</source> <translation>Projektsitzung löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>Die Projektsitzungsdatei <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4070"/> - <source>Delete session</source> - <translation>Sitzung löschen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4074"/> - <source>Delete the projects session file.</source> - <translation>Löscht die Projektsitzungsdatei.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4075"/> + <source>Delete session</source> + <translation>Sitzung löschen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4079"/> + <source>Delete the projects session file.</source> + <translation>Löscht die Projektsitzungsdatei.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4080"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Sitzung löschen</b><p>Dies löscht die Sitzungsdatei des Projektes.</p></translation> </message> @@ -51309,287 +51309,287 @@ <translation>Sonstige</translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source>Delete directory</source> <translation>Verzeichnis löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source>Read tasks</source> <translation>Aufgaben lesen</translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <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="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source>Save tasks</source> <translation>Aufgaben speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source>Read debugger properties</source> <translation>Debugger-Eigenschaften lesen</translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source>Save debugger properties</source> <translation>Debugger-Eigenschaften speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gespeichert werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source>Delete debugger properties</source> <translation>Debugger-Eigenschaften löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> + <location filename="../Project/Project.py" line="3975"/> <source>Debugger Properties</source> <translation>Debugger-Eigenschaften</translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger &Properties...</source> - <translation>Debugger-&Eigenschaften...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3974"/> - <source>Show the debugger properties</source> - <translation>Debugger-Eigenschaften anzeigen</translation> - </message> - <message> <location filename="../Project/Project.py" line="3975"/> + <source>Debugger &Properties...</source> + <translation>Debugger-&Eigenschaften...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3979"/> + <source>Show the debugger properties</source> + <translation>Debugger-Eigenschaften anzeigen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3980"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften...</b><p>Dies zeigt einen Dialog an, um die projektspezifischen Debugger-Einstellungen zu bearbeiten.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> + <location filename="../Project/Project.py" line="3988"/> <source>Load</source> <translation>Laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> - <source>&Load</source> - <translation>&Laden</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3987"/> - <source>Load the debugger properties</source> - <translation>Debugger-Eigenschaften laden</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3995"/> - <source>Save</source> - <translation>Speichern</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3999"/> - <source>Save the debugger properties</source> - <translation>Debugger-Eigenschaften speichern</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>Delete</source> - <translation>Löschen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>&Delete</source> - <translation>&Löschen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4011"/> - <source>Delete the debugger properties</source> - <translation>Debugger-Eigenschaften löschen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4020"/> - <source>Reset</source> - <translation>Zurücksetzen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4020"/> - <source>&Reset</source> - <translation>&Zurücksetzen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4024"/> - <source>Reset the debugger properties</source> - <translation>Debugger-Eigenschaften zurücksetzen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4270"/> - <source>Debugger</source> - <translation>Debugger</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4267"/> - <source>Session</source> - <translation>Sitzung</translation> - </message> - <message> <location filename="../Project/Project.py" line="3988"/> - <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> - <translation><b>Debugger-Eigenschaften laden</b><p>Dies lädt die projektspezifischen Debugger-Einstellungen.</p></translation> + <source>&Load</source> + <translation>&Laden</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3992"/> + <source>Load the debugger properties</source> + <translation>Debugger-Eigenschaften laden</translation> </message> <message> <location filename="../Project/Project.py" line="4000"/> - <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> - <translation><b>Debugger-Eigenschaften speichern</b><p>Dies speichert die projektspezifischen Debugger-Einstellungen.</p></translation> + <source>Save</source> + <translation>Speichern</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4004"/> + <source>Save the debugger properties</source> + <translation>Debugger-Eigenschaften speichern</translation> </message> <message> <location filename="../Project/Project.py" line="4012"/> - <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> - <translation><b>Debugger-Eigenschaften löschen</b><p>Dies löscht die Datei mit den projektspezifischen Debugger-Einstellungen.</p></translation> + <source>Delete</source> + <translation>Löschen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4012"/> + <source>&Delete</source> + <translation>&Löschen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4016"/> + <source>Delete the debugger properties</source> + <translation>Debugger-Eigenschaften löschen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4025"/> + <source>Reset</source> + <translation>Zurücksetzen</translation> </message> <message> <location filename="../Project/Project.py" line="4025"/> + <source>&Reset</source> + <translation>&Zurücksetzen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4029"/> + <source>Reset the debugger properties</source> + <translation>Debugger-Eigenschaften zurücksetzen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4275"/> + <source>Debugger</source> + <translation>Debugger</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4272"/> + <source>Session</source> + <translation>Sitzung</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3993"/> + <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> + <translation><b>Debugger-Eigenschaften laden</b><p>Dies lädt die projektspezifischen Debugger-Einstellungen.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4005"/> + <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> + <translation><b>Debugger-Eigenschaften speichern</b><p>Dies speichert die projektspezifischen Debugger-Einstellungen.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4017"/> + <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> + <translation><b>Debugger-Eigenschaften löschen</b><p>Dies löscht die Datei mit den projektspezifischen Debugger-Einstellungen.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4030"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften zurücksetzen</b><p>Dies setzt die projektspezifischen Debugger-Einstellungen zurück.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations</source> <translation>Dateitypzuordnungen</translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations...</source> <translation>Dateitypzuordnungen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3938"/> + <location filename="../Project/Project.py" line="3943"/> <source>Show the project filetype associations</source> <translation>Zeigt die Dateitypzuordnungen des Projektes</translation> </message> <message> - <location filename="../Project/Project.py" line="4271"/> + <location filename="../Project/Project.py" line="4276"/> <source>Pac&kagers</source> <translation>Pa&ketierer</translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> + <location filename="../Project/Project.py" line="3835"/> <source>Add files to project</source> <translation>Dateien zum Projekt hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add &files...</source> - <translation>&Dateien hinzufügen...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3835"/> + <source>Add &files...</source> + <translation>&Dateien hinzufügen...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3840"/> <source>Add files to the current project</source> <translation>Fügt Dateien zum aktuellen Projekt hinzu</translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> + <location filename="../Project/Project.py" line="3842"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Dateien hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht umbenannt werden.<br />Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3057"/> + <location filename="../Project/Project.py" line="3062"/> <source>Project Files (*.e4p)</source> <translation>Projektdateien (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="4257"/> + <location filename="../Project/Project.py" line="4262"/> <source>&Project</source> <translation>&Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4390"/> + <location filename="../Project/Project.py" line="4395"/> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4456"/> + <location filename="../Project/Project.py" line="4461"/> <source>&Clear</source> <translation>&Löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="1721"/> + <location filename="../Project/Project.py" line="1726"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source>Read user project properties</source> <translation>Nutzer bezogene Projektdaten lesen</translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation><p>Die Datei mit den Nutzer bezogenen Projektdaten <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source>Save user project properties</source> <translation>Nutzer bezogene Projektdaten sichern</translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation><p>Die Datei mit den Nutzer bezogenen Projektdaten <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> - <source>User project properties</source> - <translation>Nutzer bezogene Projektdaten</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3919"/> - <source>&User Properties...</source> - <translation>&Nutzer bezogene Projektdaten...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3924"/> + <source>User project properties</source> + <translation>Nutzer bezogene Projektdaten</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3924"/> + <source>&User Properties...</source> + <translation>&Nutzer bezogene Projektdaten...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3929"/> <source>Show the user specific project properties</source> <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation> </message> <message> - <location filename="../Project/Project.py" line="3926"/> + <location filename="../Project/Project.py" line="3931"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Nutzer bezogene Projektdaten...</b><p>Dies zeigt einen Dialog an, um Nutzer bezogene Projektdaten zu bearbeiten.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>Syntax errors detected</source> <translation>Syntaxfehler gefunden</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Das Projekt beinhaltet eine Datei mit Syntaxfehlern.</numerusform> @@ -51597,47 +51597,47 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source>Create Package List</source> <translation>Erzeuge Paketliste</translation> </message> <message> - <location filename="../Project/Project.py" line="4156"/> + <location filename="../Project/Project.py" line="4161"/> <source>Create &Package List</source> <translation>Erzeuge &Paketliste</translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source>Create Plugin Archive</source> <translation>Erzeuge Plugin Archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="5165"/> + <location filename="../Project/Project.py" line="5170"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Die Datei <b>PKGLIST</b> existiert bereits.</p><p>Überschreiben?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Die Datei <b>PKGLIST</b> konnte nicht erzeugt werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5233"/> + <location filename="../Project/Project.py" line="5238"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Für das Projekt wurde kein Hauptskript angegeben. Abbruch...</translation> </message> <message> - <location filename="../Project/Project.py" line="1690"/> + <location filename="../Project/Project.py" line="1695"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>Das Quellverzeichnis enthält keine Dateien, die zur gewählten Kategorie gehören.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>Select Version Control System</source> <translation>Versionskontrollsystem auswählen</translation> </message> <message> - <location filename="../Project/Project.py" line="2534"/> + <location filename="../Project/Project.py" line="2539"/> <source>None</source> <translation>Keines</translation> </message> @@ -51647,52 +51647,52 @@ <translation>Projekttyp Registrierung</translation> </message> <message> - <location filename="../Project/Project.py" line="5375"/> + <location filename="../Project/Project.py" line="5380"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht im Archiv gespeichert werde. Sie wird ignoriert.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5449"/> + <location filename="../Project/Project.py" line="5454"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Grund: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>You have to specify a translation pattern first.</source> <translation>Sie müssen zuerst ein Übersetzungsmuster festlegen.</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Translation Pattern</source> <translation>Übersetzungsmuster</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Gib das Pfadmuster für Übersetzungsdateien ein (benutze „%language%“ anstelle des Sprachcodes):</translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Versionskontrolle nicht möglich.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations</source> <translation>Lexerzuordnungen</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations...</source> <translation>Lexerzuordnungen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3956"/> + <location filename="../Project/Project.py" line="3961"/> <source>Show the project lexer associations (overriding defaults)</source> <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation> </message> <message> - <location filename="../Project/Project.py" line="3958"/> + <location filename="../Project/Project.py" line="3963"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Lexerzuordnungen</b><p>Dies öffnet einen Dialog, um die projektspezifischen Lexerzuordnungen zu bearbeiten. Diese Zuordnungen überschreiben die globalen Lexerzuordnungen. Lexer werden verwendet, um den Editortext einzufärben.</p></translation> </message> @@ -51712,12 +51712,12 @@ <translation>Python 3-Dateien (*.py *.py3);;Python 3-GUI-Dateien (*.pyw *.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="1646"/> + <location filename="../Project/Project.py" line="1651"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>Die ausgewählte Datei <b>{0}</b> konnte nicht zu <b>{1}</b> hinzugefügt werden.</p><p>Ursache: {2}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1703"/> + <location filename="../Project/Project.py" line="1708"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Das Zielverzeichnis <b>{0}</b> konnte nicht erstellt werden.</p><p>Ursache: {1}</p></translation> </message> @@ -51727,32 +51727,32 @@ <translation>Python 2-Dateien (*.py2);;Python 2-GUI-Dateien (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source>Create main script</source> <translation>Hauptskript erzeugen</translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>Das Hauptskript <b>{0}</b> konnte nicht erzeugt werden.<br/>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>Load Diagram</source> <translation>Diagramm laden</translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>&Load Diagram...</source> <translation>Diagramm &laden...</translation> </message> <message> - <location filename="../Project/Project.py" line="4145"/> + <location filename="../Project/Project.py" line="4150"/> <source>Load a diagram from file.</source> <translation>Lade ein Diagramm aus einer Datei.</translation> </message> <message> - <location filename="../Project/Project.py" line="4147"/> + <location filename="../Project/Project.py" line="4152"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Diagramm laden...</b><p>Dies lädt ein Diagramm aus einer Datei.</p></translation> </message> @@ -51782,27 +51782,27 @@ <translation>PyQt5 Kommandozeile</translation> </message> <message> - <location filename="../Project/Project.py" line="4753"/> + <location filename="../Project/Project.py" line="4758"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Ignoriere Übersteuerung.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4161"/> + <location filename="../Project/Project.py" line="4166"/> <source>Create an initial PKGLIST file for an eric6 plugin.</source> <translation>Erzeugt eine erste PKGLIST-Datei für ein eric6-Plugin.</translation> </message> <message> - <location filename="../Project/Project.py" line="4163"/> + <location filename="../Project/Project.py" line="4168"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation><b>Erzeuge Paketliste</b><p>Dies erzeugt eine erste Liste von Dateien, die in ein eric6-Pluginarchive einbezogen werden sollen. Die Liste wird aus der Projektdatei erzeugt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5340"/> + <location filename="../Project/Project.py" line="5345"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Die eric6 Plugin Archivdatei <b>{0}</b> konnte nicht erzeugt werden.</p><p>Ursache: {1}</p></translation> </message> @@ -51822,228 +51822,228 @@ <translation>Eric6 Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source>Create project management directory</source> <translation>Projektverwaltungsverzeichnis erstellen</translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation><p>Das Projektverzeichnis <b>{0}</b> ist nicht beschreibbar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="3897"/> + <location filename="../Project/Project.py" line="3902"/> <source>Search for a file in the project list of files.</source> <translation>Suche nach einer Datei in der Liste der Projektdateien.</translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3904"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation><b>Projektdatei suchen</b><p>Dies sucht nach einer Datei in der Liste der Projektdateien.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File</source> <translation>Projektdatei suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File...</source> <translation>Projektdatei suchen...</translation> </message> <message> - <location filename="../Project/Project.py" line="5269"/> + <location filename="../Project/Project.py" line="5274"/> <source>Create Plugin Archives</source> <translation>Erzeuge Plugin Archive</translation> </message> <message> - <location filename="../Project/Project.py" line="4172"/> - <source>Create Plugin &Archives</source> - <translation>Erzeuge Plugin &Archive</translation> - </message> - <message> <location filename="../Project/Project.py" line="4177"/> + <source>Create Plugin &Archives</source> + <translation>Erzeuge Plugin &Archive</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4182"/> <source>Create eric6 plugin archive files.</source> <translation>Erzeugt eric6 Plugin Archivdateien.</translation> </message> <message> - <location filename="../Project/Project.py" line="4179"/> + <location filename="../Project/Project.py" line="4184"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation><b>Erzeuge Pluginarchive</b><p>Dies erzeugt eric6-Pluginarchivdateien mit den Dateien, die in einer PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> + <location filename="../Project/Project.py" line="4194"/> <source>Create Plugin Archives (Snapshot)</source> <translation>Erzeuge Plugin Archive (Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (&Snapshot)</source> - <translation>Erzeuge Plugin Archive (&Snapshot)</translation> - </message> - <message> <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation>Erzeuge Plugin Archive (&Snapshot)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4199"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation>Erzeugt eric6 Plugin Archivdateien (Snapshot Releases).</translation> </message> <message> - <location filename="../Project/Project.py" line="4196"/> + <location filename="../Project/Project.py" line="4201"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation><b>Erzeuge Pluginarchive (Snapshot)</b><p>Dies erzeugt eric6-Pluginarchivdateien mit den Dateien, die in der PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5247"/> + <location filename="../Project/Project.py" line="5252"/> <source>Select package lists:</source> <translation>Wähle Paketlisten:</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Creating plugin archives...</source> <translation>Erzeuge Plugin Archive...</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Abort</source> <translation>Abbruch</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>%v/%m Archives</source> <translation>%v/%m Archive</translation> </message> <message> - <location filename="../Project/Project.py" line="5282"/> + <location filename="../Project/Project.py" line="5287"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geladen werden.<br/>Grund: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5394"/> + <location filename="../Project/Project.py" line="5399"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation><p>Die eric6 Plugin Archivdateien wurden mit einigen Fehlern erzeugt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5397"/> + <location filename="../Project/Project.py" line="5402"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation><p>Die eric6 Plugin Archivdateien wurden erfolgreich erzeugt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5258"/> + <location filename="../Project/Project.py" line="5263"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation><p>Keine Paketlistendateien (PKGLIST*) verfügbar oder ausgewählt. Abbruch...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5312"/> + <location filename="../Project/Project.py" line="5317"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation><p>Die Datei <b>{0}</b> ist noch nicht bereit.</p><p>Bitte überarbeite sie und löschen die Zeile '; initial_list' des Dateikopfes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3882"/> + <location filename="../Project/Project.py" line="3887"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation><b>Neue Dateien suchen...</b><p>Dies sucht im Projektverzeichnis und in registrierten Unterverzeichnissen nach neuen Dateien (Quellen, *.ui, *.idl, *.proto).</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3940"/> + <location filename="../Project/Project.py" line="3945"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Dateitypzuordnungen...</b><p>Dies zeigt einen Dialog zur Eingabe der Dateitypzuordnungen des Projektes. Diese Zuordnungen bestimmen den Typ (Quellen, Formulare, Schnittstellen, Protokolle oder Sonstige) über ein Dateinamenmuster. Sie werden genutzt, wenn eine Datei zum Projekt hinzugefügt oder wenn nach neuen Dateien gesucht wird.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>Die ausgewählte Übersetzungsdatei <b>{0}</b> konnte nicht gelöscht werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>Die ausgewählte Datei <b>{0}</b> konnte nicht gelöscht werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>Das ausgewählte Verzeichnis <b>{0}</b> konnte nicht gelöscht werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source>Create Makefile</source> <translation>Makefile erzeugen</translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>Die make Datei <b>{0}</b> konnte nicht erzeugt werden.<br/>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>Execute Make</source> <translation>Make ausführen</translation> </message> <message> - <location filename="../Project/Project.py" line="4210"/> + <location filename="../Project/Project.py" line="4215"/> <source>&Execute Make</source> <translation>&Make ausführen</translation> </message> <message> - <location filename="../Project/Project.py" line="4214"/> + <location filename="../Project/Project.py" line="4219"/> <source>Perform a 'make' run.</source> <translation>Führt eine 'make' Lauf aus.</translation> </message> <message> - <location filename="../Project/Project.py" line="4216"/> + <location filename="../Project/Project.py" line="4221"/> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation><b>Make ausführen</b><p>Die führt einen 'make' Lauf aus, um das konfigurierte Ziel zu bauen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5654"/> + <location filename="../Project/Project.py" line="5659"/> <source>Test for Changes</source> <translation>Auf Änderungen prüfen</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4229"/> <source>&Test for Changes</source> <translation>Auf Änderungen &prüfen</translation> </message> <message> - <location filename="../Project/Project.py" line="4228"/> + <location filename="../Project/Project.py" line="4233"/> <source>Question 'make', if a rebuild is needed.</source> <translation>Fragt 'make', ob ein Neubau erforderlich ist.</translation> </message> <message> - <location filename="../Project/Project.py" line="4230"/> + <location filename="../Project/Project.py" line="4235"/> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation><b>Auf Änderungen prüfen</b><p>Dies fragt 'make', ob ein Neubau des konfigurierten Zieles erforderlich ist.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4272"/> + <location filename="../Project/Project.py" line="4277"/> <source>Make</source> <translation>Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5602"/> + <location filename="../Project/Project.py" line="5607"/> <source>The make process did not start.</source> <translation>Der make Prozess ist nicht gestartet.</translation> </message> <message> - <location filename="../Project/Project.py" line="5647"/> + <location filename="../Project/Project.py" line="5652"/> <source>The make process crashed.</source> <translation>Der make Prozess ist abgestürzt.</translation> </message> <message> - <location filename="../Project/Project.py" line="5657"/> - <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> - <translation><p>Es gibt Änderungen, die einen Neubau des konfigurierten Zieles <b>{0}</b> erfordern.</p></translation> - </message> - <message> <location filename="../Project/Project.py" line="5662"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation><p>Es gibt Änderungen, die einen Neubau des konfigurierten Zieles <b>{0}</b> erfordern.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5667"/> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation><p>Es gibt Änderungen, die einen Neubau des Standardzieles erfordern.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>The makefile contains errors.</source> <translation>Die make Datei enthält Fehler.</translation> </message> @@ -52303,7 +52303,7 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="947"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1011"/> <source>Forms</source> <translation>Formulare</translation> </message> @@ -52313,62 +52313,62 @@ <translation><b>Projekt Formular Browser</b><p>Dies bietet eine Übersicht aller im Projekt enthaltenen Formulare an. Verschieden Aktionen können über das Kontextmenü ausgeführt werden.</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="149"/> + <location filename="../Project/ProjectFormsBrowser.py" line="158"/> <source>Compile form</source> <translation>Formular übersetzen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="327"/> + <location filename="../Project/ProjectFormsBrowser.py" line="352"/> <source>Compile all forms</source> <translation>Alle Formulare übersetzen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="288"/> + <location filename="../Project/ProjectFormsBrowser.py" line="309"/> <source>Remove from project</source> <translation>Aus dem Projekt entfernen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="291"/> + <location filename="../Project/ProjectFormsBrowser.py" line="312"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>Form Compilation</source> <translation>Formular übersetzen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="698"/> + <location filename="../Project/ProjectFormsBrowser.py" line="776"/> <source>The compilation of the form file was successful.</source> <translation>Die Übersetzung des Formulars war erfolgreich.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="905"/> + <location filename="../Project/ProjectFormsBrowser.py" line="969"/> <source>Compiling forms...</source> <translation>Formular übersetzen...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Abort</source> <translation>Abbrechen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="238"/> + <location filename="../Project/ProjectFormsBrowser.py" line="255"/> <source>Open in Qt-Designer</source> <translation>Mit Qt Designer öffnen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="335"/> + <location filename="../Project/ProjectFormsBrowser.py" line="360"/> <source>Add forms directory...</source> <translation>Formularverzeichnis hinzufügen...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>The compilation of the form file failed.</source> <translation>Die Übersetzung des Formulars ist fehlgeschlagen.</translation> </message> @@ -52393,82 +52393,82 @@ <translation>Dialog mit Knöpfen (rechts)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="300"/> + <location filename="../Project/ProjectFormsBrowser.py" line="321"/> <source>New form...</source> <translation>Neues Formular...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source>New Form</source> <translation>Neues Formular</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="549"/> + <location filename="../Project/ProjectFormsBrowser.py" line="574"/> <source>Select a form type:</source> <translation>Wähle einen Formulartyp:</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="338"/> + <location filename="../Project/ProjectFormsBrowser.py" line="363"/> <source>Expand all directories</source> <translation>Alle Verzeichnisse aufklappen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="340"/> + <location filename="../Project/ProjectFormsBrowser.py" line="365"/> <source>Collapse all directories</source> <translation>Alle Verzeichnisse einklappen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="240"/> + <location filename="../Project/ProjectFormsBrowser.py" line="257"/> <source>Open in Editor</source> <translation>Mit Editor öffnen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="175"/> + <location filename="../Project/ProjectFormsBrowser.py" line="184"/> <source>Rename file</source> <translation>Datei umbenennen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="247"/> + <location filename="../Project/ProjectFormsBrowser.py" line="264"/> <source>Compile forms</source> <translation>Formulare übersetzen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Delete forms</source> <translation>Formulare löschen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Do you really want to delete these forms from the project?</source> <translation>Wollen Sie wirklich diese Formulare aus dem Projekt löschen?</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation><p>Die neue Formulardatei <b>{0}</b> konnte nicht erzeugt werden.<br>Problem: {1}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="144"/> + <location filename="../Project/ProjectFormsBrowser.py" line="153"/> <source>Preview form</source> <translation>Formularvorschau</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="243"/> + <location filename="../Project/ProjectFormsBrowser.py" line="260"/> <source>Preview translations</source> <translation>Übersetzungsvorschau</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="713"/> + <location filename="../Project/ProjectFormsBrowser.py" line="791"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation><p>Die Übersetzung des Formulars ist fehlgeschlagen.</p<p>Grund: {0}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>{0} konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es sich im Suchpfad befindet.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="333"/> + <location filename="../Project/ProjectFormsBrowser.py" line="358"/> <source>Add forms...</source> <translation>Formulare hinzufügen...</translation> </message> @@ -52483,17 +52483,17 @@ <translation>Dialog mit Knöpfen (unten Mitte)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Determining changed forms...</source> <translation>Ermittle veränderte Formulare...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="972"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1036"/> <source>Compiling changed forms...</source> <translation>Übersetze veränderte Formulare...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="582"/> + <location filename="../Project/ProjectFormsBrowser.py" line="607"/> <source>The file already exists! Overwrite it?</source> <translation>Die Datei existiert bereits. Überschreiben?</translation> </message> @@ -52508,27 +52508,27 @@ <translation>Dialog mit Knöpfebox (rechts)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="160"/> + <location filename="../Project/ProjectFormsBrowser.py" line="169"/> <source>Generate Dialog Code...</source> <translation>Erzeuge Dialogcode...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="257"/> + <location filename="../Project/ProjectFormsBrowser.py" line="274"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="563"/> + <location filename="../Project/ProjectFormsBrowser.py" line="588"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>Qt-Formulare (*.ui);;Alle Dateien (*)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="343"/> + <location filename="../Project/ProjectFormsBrowser.py" line="368"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="309"/> + <location filename="../Project/ProjectFormsBrowser.py" line="330"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message> @@ -52583,10 +52583,20 @@ <translation>QStackedWidget</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>%v/%m Forms</source> <translation>%v/%m Formulare</translation> </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>Configure uic Compiler</source> + <translation>uic Compiler konfigurieren</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>No project specific uic compiler flags are supported for PySide or PySide2.</source> + <translation>Für PySide und PySide2 werden keine Projekt spezifischen uic Compiler Optionen unterstützt.</translation> + </message> </context> <context> <name>ProjectInterfacesBrowser</name> @@ -74119,6 +74129,44 @@ </message> </context> <context> + <name>UicCompilerOptionsDialog</name> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="14"/> + <source>uic Compiler Options</source> + <translation>uic Compiler Optionen</translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="23"/> + <source>'import' Package</source> + <translation>'import' Package</translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="29"/> + <source>Enter the package name</source> + <translation>Gib den Paketnamen ein</translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="36"/> + <source><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</source> + <translation><b>Hinweis</b>: Dies erzeugt Befehlszeilen der Art 'from PACKAGE import ...'.</translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="49"/> + <source>Resources Suffix</source> + <translation>Suffix für Ressourcen</translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="55"/> + <source>Enter the suffix of compiled resource files (default: _rc)</source> + <translation>Gib das Suffix für übersetzte Ressourcendateien ein (Standard: _rc)</translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="62"/> + <source><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</source> + <translation><b>Hinweis</b>: Das Suffix leer lassen, um den Standardwert '_rc' zu verwenden.</translation> + </message> +</context> +<context> <name>UnittestDialog</name> <message> <location filename="../PyUnit/UnittestDialog.py" line="405"/> @@ -84006,22 +84054,22 @@ <translation>Keine Vorschläge</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1871"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> <source>Web Archive (*.mhtml *.mht)</source> <translation>Web Archiv (*.mhtml *.mht)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1872"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1874"/> <source>HTML File (*.html *.htm)</source> <translation>HTML Datei (*.html *.htm)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1875"/> <source>HTML File with all resources (*.html *.htm)</source> <translation>HTML Datei mit allen Resourcen (*.html *.htm)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1897"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1899"/> <source>Save Web Page</source> <translation>Web Seite speichern</translation> </message> @@ -84031,22 +84079,22 @@ <translation>Leere Seite</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source>Quota Request</source> <translation>Speicherplatzanfrage</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <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> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source>Protocol Handler Request</source> <translation>Protokollhandleranfrage</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source><p> Allow the website at <b>{0}</b> to open all <b>{1}</b> links?</p></source> <translation><p>Der Website <b>{0}</b> erlauben, alle <b>{1}</b> Links zu öffnen?</p></translation> </message>
--- a/i18n/eric6_empty.ts Wed Nov 21 19:26:59 2018 +0100 +++ b/i18n/eric6_empty.ts Sat Nov 24 15:37:04 2018 +0100 @@ -5364,37 +5364,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source>uic error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source>Code Generation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="618"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="654"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="208"/> <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> <translation type="unfinished"></translation> </message> @@ -50601,1200 +50601,1200 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source>Read project file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source>Save project file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source>Read user project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source>Save user project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source>Read project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1232"/> + <location filename="../Project/Project.py" line="1237"/> <source>Please save the project first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source>Save project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source>Delete project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source>Read debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source>Save debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source>Delete debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>Add Language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>You have to specify a translation pattern first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source>Delete translation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1659"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1721"/> + <location filename="../Project/Project.py" line="1726"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1646"/> + <location filename="../Project/Project.py" line="1651"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1789"/> + <location filename="../Project/Project.py" line="1794"/> <source>The target directory must not be empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>Add directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1690"/> + <location filename="../Project/Project.py" line="1695"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1703"/> + <location filename="../Project/Project.py" line="1708"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>The source directory must not be empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1937"/> + <location filename="../Project/Project.py" line="1942"/> <source>Rename file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source>Rename File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source>Delete file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source>Delete directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source>Create project directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>New Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2436"/> + <location filename="../Project/Project.py" line="2441"/> <source>Add existing files to the project?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>Select Version Control System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2555"/> + <location filename="../Project/Project.py" line="2560"/> <source>Would you like to edit the VCS command options?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>New project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2503"/> + <location filename="../Project/Project.py" line="2508"/> <source>Shall the project file be added to the repository?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2534"/> + <location filename="../Project/Project.py" line="2539"/> <source>None</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2527"/> + <location filename="../Project/Project.py" line="2532"/> <source>Select version control system for the project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Translation Pattern</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> + <location filename="../Project/Project.py" line="3783"/> <source>Open project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3057"/> + <location filename="../Project/Project.py" line="3062"/> <source>Project Files (*.e4p)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save project as</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source>Save File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>Close Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>The current project has unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>Syntax errors detected</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>The project contains %n file(s) with syntax errors.</source> <translation type="unfinished"> <numerusform></numerusform> </translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>&New...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3769"/> + <location filename="../Project/Project.py" line="3774"/> <source>Generate a new project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3770"/> + <location filename="../Project/Project.py" line="3775"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>&Open...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3783"/> + <source>&Open...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3788"/> <source>Open an existing project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3784"/> + <location filename="../Project/Project.py" line="3789"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> + <location filename="../Project/Project.py" line="3796"/> <source>Close project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> - <source>&Close</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3795"/> - <source>Close the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3796"/> + <source>&Close</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3800"/> + <source>Close the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3801"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> - <source>Save project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3995"/> - <source>&Save</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Save the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3808"/> + <source>Save project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4000"/> + <source>&Save</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3812"/> + <source>Save the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3813"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save &as...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> + <location filename="../Project/Project.py" line="3824"/> <source>Save the current project to a new file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> + <location filename="../Project/Project.py" line="3826"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> + <location filename="../Project/Project.py" line="3835"/> <source>Add files to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add &files...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3835"/> + <source>Add &files...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3840"/> <source>Add files to the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> + <location filename="../Project/Project.py" line="3842"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory to project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3851"/> + <source>Add directory to project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3851"/> + <source>Add directory...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3856"/> <source>Add a directory to the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> + <location filename="../Project/Project.py" line="3858"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> + <location filename="../Project/Project.py" line="3866"/> <source>Add translation to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add &translation...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3866"/> + <source>Add &translation...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source>Add a translation to the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3868"/> + <location filename="../Project/Project.py" line="3873"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Search new files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Searc&h new files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3880"/> + <location filename="../Project/Project.py" line="3885"/> <source>Search new files in the project directory.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3897"/> + <location filename="../Project/Project.py" line="3902"/> <source>Search for a file in the project list of files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3904"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> - <source>Project properties</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3906"/> - <source>&Properties...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3911"/> + <source>Project properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3911"/> + <source>&Properties...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3916"/> <source>Show the project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3917"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> + <location filename="../Project/Project.py" line="3924"/> <source>User project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> - <source>&User Properties...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3924"/> + <source>&User Properties...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3929"/> <source>Show the user specific project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3926"/> + <location filename="../Project/Project.py" line="3931"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3938"/> + <location filename="../Project/Project.py" line="3943"/> <source>Show the project filetype associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3956"/> + <location filename="../Project/Project.py" line="3961"/> <source>Show the project lexer associations (overriding defaults)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3958"/> + <location filename="../Project/Project.py" line="3963"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> + <location filename="../Project/Project.py" line="3975"/> <source>Debugger Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger &Properties...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3974"/> - <source>Show the debugger properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3975"/> + <source>Debugger &Properties...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3979"/> + <source>Show the debugger properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3980"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> - <source>Load</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3983"/> - <source>&Load</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3987"/> - <source>Load the debugger properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3988"/> + <source>Load</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3988"/> + <source>&Load</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3992"/> + <source>Load the debugger properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3993"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3995"/> - <source>Save</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3999"/> - <source>Save the debugger properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4000"/> + <source>Save</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4004"/> + <source>Save the debugger properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4005"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4007"/> - <source>Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>&Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4011"/> - <source>Delete the debugger properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4012"/> + <source>Delete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4012"/> + <source>&Delete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4016"/> + <source>Delete the debugger properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4017"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> + <location filename="../Project/Project.py" line="4025"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> - <source>&Reset</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4024"/> - <source>Reset the debugger properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4025"/> + <source>&Reset</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4029"/> + <source>Reset the debugger properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4030"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4034"/> - <source>Load session</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4038"/> - <source>Load the projects session file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4039"/> + <source>Load session</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4043"/> + <source>Load the projects session file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4044"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4052"/> - <source>Save session</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4056"/> - <source>Save the projects session file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4057"/> + <source>Save session</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4061"/> + <source>Save the projects session file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4062"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4070"/> - <source>Delete session</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4074"/> - <source>Delete the projects session file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4075"/> + <source>Delete session</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4079"/> + <source>Delete the projects session file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4080"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>Code Metrics</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>&Code Metrics...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4093"/> <source>Show some code metrics for the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4090"/> + <location filename="../Project/Project.py" line="4095"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Python Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Code Co&verage...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4102"/> + <location filename="../Project/Project.py" line="4107"/> <source>Show code coverage information for the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4104"/> + <location filename="../Project/Project.py" line="4109"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4112"/> + <location filename="../Project/Project.py" line="4117"/> <source>&Profile Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4116"/> + <location filename="../Project/Project.py" line="4121"/> <source>Show profiling data for the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4118"/> + <location filename="../Project/Project.py" line="4123"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4127"/> + <location filename="../Project/Project.py" line="4132"/> <source>&Application Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4131"/> + <location filename="../Project/Project.py" line="4136"/> <source>Show a diagram of the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4133"/> + <location filename="../Project/Project.py" line="4138"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4145"/> + <location filename="../Project/Project.py" line="4150"/> <source>Load a diagram from file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4147"/> + <location filename="../Project/Project.py" line="4152"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source>Create Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4156"/> - <source>Create &Package List</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4161"/> + <source>Create &Package List</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4166"/> <source>Create an initial PKGLIST file for an eric6 plugin.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4163"/> + <location filename="../Project/Project.py" line="4168"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source>Create Plugin Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4257"/> + <location filename="../Project/Project.py" line="4262"/> <source>&Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4258"/> - <source>Open &Recent Projects</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4259"/> - <source>&Version Control</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4263"/> - <source>Chec&k</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4265"/> - <source>Sho&w</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4266"/> - <source>&Diagrams</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4267"/> - <source>Session</source> + <source>Open &Recent Projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4264"/> + <source>&Version Control</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="4268"/> - <source>Source &Documentation</source> + <source>Chec&k</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="4270"/> - <source>Debugger</source> + <source>Sho&w</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="4271"/> + <source>&Diagrams</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4272"/> + <source>Session</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4273"/> + <source>Source &Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4275"/> + <source>Debugger</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4276"/> <source>Pac&kagers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4390"/> + <location filename="../Project/Project.py" line="4395"/> <source>Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4456"/> + <location filename="../Project/Project.py" line="4461"/> <source>&Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>Search New Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>There were no new files found to be added.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source>Version Control System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4753"/> + <location filename="../Project/Project.py" line="4758"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4893"/> + <location filename="../Project/Project.py" line="4898"/> <source>Coverage Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4943"/> + <location filename="../Project/Project.py" line="4948"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Please select a profile file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Include module names?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5165"/> + <location filename="../Project/Project.py" line="5170"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5233"/> + <location filename="../Project/Project.py" line="5238"/> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5340"/> + <location filename="../Project/Project.py" line="5345"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5375"/> + <location filename="../Project/Project.py" line="5380"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5449"/> + <location filename="../Project/Project.py" line="5454"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5269"/> + <location filename="../Project/Project.py" line="5274"/> <source>Create Plugin Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4172"/> - <source>Create Plugin &Archives</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4177"/> + <source>Create Plugin &Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4182"/> <source>Create eric6 plugin archive files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4179"/> + <location filename="../Project/Project.py" line="4184"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> + <location filename="../Project/Project.py" line="4194"/> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (&Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4199"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4196"/> + <location filename="../Project/Project.py" line="4201"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5247"/> + <location filename="../Project/Project.py" line="5252"/> <source>Select package lists:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Creating plugin archives...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>%v/%m Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5282"/> + <location filename="../Project/Project.py" line="5287"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5394"/> + <location filename="../Project/Project.py" line="5399"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5397"/> + <location filename="../Project/Project.py" line="5402"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5258"/> + <location filename="../Project/Project.py" line="5263"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5312"/> + <location filename="../Project/Project.py" line="5317"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3882"/> + <location filename="../Project/Project.py" line="3887"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3940"/> + <location filename="../Project/Project.py" line="3945"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source>Create Makefile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4210"/> + <location filename="../Project/Project.py" line="4215"/> <source>&Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4214"/> + <location filename="../Project/Project.py" line="4219"/> <source>Perform a 'make' run.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4216"/> + <location filename="../Project/Project.py" line="4221"/> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5654"/> + <location filename="../Project/Project.py" line="5659"/> <source>Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4229"/> <source>&Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4228"/> + <location filename="../Project/Project.py" line="4233"/> <source>Question 'make', if a rebuild is needed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4230"/> + <location filename="../Project/Project.py" line="4235"/> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4272"/> + <location filename="../Project/Project.py" line="4277"/> <source>Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5602"/> + <location filename="../Project/Project.py" line="5607"/> <source>The make process did not start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5647"/> + <location filename="../Project/Project.py" line="5652"/> <source>The make process crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5657"/> - <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="5662"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5667"/> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>The makefile contains errors.</source> <translation type="unfinished"></translation> </message> @@ -52054,7 +52054,7 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="947"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1011"/> <source>Forms</source> <translation type="unfinished"></translation> </message> @@ -52154,190 +52154,200 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="149"/> + <location filename="../Project/ProjectFormsBrowser.py" line="158"/> <source>Compile form</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="327"/> + <location filename="../Project/ProjectFormsBrowser.py" line="352"/> <source>Compile all forms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="160"/> + <location filename="../Project/ProjectFormsBrowser.py" line="169"/> <source>Generate Dialog Code...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="238"/> + <location filename="../Project/ProjectFormsBrowser.py" line="255"/> <source>Open in Qt-Designer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="240"/> - <source>Open in Editor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="144"/> - <source>Preview form</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="243"/> - <source>Preview translations</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="257"/> + <source>Open in Editor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="153"/> + <source>Preview form</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="260"/> + <source>Preview translations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="274"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="175"/> + <location filename="../Project/ProjectFormsBrowser.py" line="184"/> <source>Rename file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="288"/> - <source>Remove from project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="291"/> - <source>Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="300"/> - <source>New form...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="333"/> - <source>Add forms...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="335"/> - <source>Add forms directory...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="309"/> + <source>Remove from project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="312"/> + <source>Delete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="321"/> + <source>New form...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="358"/> + <source>Add forms...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="360"/> + <source>Add forms directory...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="330"/> <source>Copy Path to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="338"/> + <location filename="../Project/ProjectFormsBrowser.py" line="363"/> <source>Expand all directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="340"/> + <location filename="../Project/ProjectFormsBrowser.py" line="365"/> <source>Collapse all directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="343"/> + <location filename="../Project/ProjectFormsBrowser.py" line="368"/> <source>Configure...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="247"/> + <location filename="../Project/ProjectFormsBrowser.py" line="264"/> <source>Compile forms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source>New Form</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="549"/> + <location filename="../Project/ProjectFormsBrowser.py" line="574"/> <source>Select a form type:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="563"/> + <location filename="../Project/ProjectFormsBrowser.py" line="588"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="582"/> + <location filename="../Project/ProjectFormsBrowser.py" line="607"/> <source>The file already exists! Overwrite it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Delete forms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Do you really want to delete these forms from the project?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>Form Compilation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="698"/> + <location filename="../Project/ProjectFormsBrowser.py" line="776"/> <source>The compilation of the form file was successful.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="713"/> + <location filename="../Project/ProjectFormsBrowser.py" line="791"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>The compilation of the form file failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="905"/> + <location filename="../Project/ProjectFormsBrowser.py" line="969"/> <source>Compiling forms...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>%v/%m Forms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Determining changed forms...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="972"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1036"/> <source>Compiling changed forms...</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>Configure uic Compiler</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>No project specific uic compiler flags are supported for PySide or PySide2.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectInterfacesBrowser</name> @@ -73505,6 +73515,44 @@ </message> </context> <context> + <name>UicCompilerOptionsDialog</name> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="14"/> + <source>uic Compiler Options</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="23"/> + <source>'import' Package</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="29"/> + <source>Enter the package name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="36"/> + <source><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="49"/> + <source>Resources Suffix</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="55"/> + <source>Enter the suffix of compiled resource files (default: _rc)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="62"/> + <source><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>UnittestDialog</name> <message> <location filename="../PyUnit/UnittestDialog.py" line="405"/> @@ -83319,22 +83367,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1871"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> <source>Web Archive (*.mhtml *.mht)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1872"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1874"/> <source>HTML File (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1875"/> <source>HTML File with all resources (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1897"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1899"/> <source>Save Web Page</source> <translation type="unfinished"></translation> </message> @@ -83344,22 +83392,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source>Quota Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source>Protocol Handler Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source><p> Allow the website at <b>{0}</b> to open all <b>{1}</b> links?</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_en.ts Wed Nov 21 19:26:59 2018 +0100 +++ b/i18n/eric6_en.ts Sat Nov 24 15:37:04 2018 +0100 @@ -5371,37 +5371,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source>uic error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source>Code Generation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="618"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="654"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="208"/> <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> <translation type="unfinished"></translation> </message> @@ -50603,312 +50603,312 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source>Read project file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source>Save project file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source>Read user project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source>Save user project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source>Read project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1232"/> + <location filename="../Project/Project.py" line="1237"/> <source>Please save the project first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source>Save project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source>Delete project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source>Read debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source>Save debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source>Delete debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>Add Language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>You have to specify a translation pattern first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source>Delete translation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1659"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1721"/> + <location filename="../Project/Project.py" line="1726"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1646"/> + <location filename="../Project/Project.py" line="1651"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1789"/> + <location filename="../Project/Project.py" line="1794"/> <source>The target directory must not be empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>Add directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1690"/> + <location filename="../Project/Project.py" line="1695"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1703"/> + <location filename="../Project/Project.py" line="1708"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>The source directory must not be empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1937"/> + <location filename="../Project/Project.py" line="1942"/> <source>Rename file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source>Rename File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source>Delete file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source>Delete directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source>Create project directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>New Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2436"/> + <location filename="../Project/Project.py" line="2441"/> <source>Add existing files to the project?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>Select Version Control System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2555"/> + <location filename="../Project/Project.py" line="2560"/> <source>Would you like to edit the VCS command options?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>New project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2503"/> + <location filename="../Project/Project.py" line="2508"/> <source>Shall the project file be added to the repository?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2534"/> + <location filename="../Project/Project.py" line="2539"/> <source>None</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2527"/> + <location filename="../Project/Project.py" line="2532"/> <source>Select version control system for the project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Translation Pattern</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> + <location filename="../Project/Project.py" line="3783"/> <source>Open project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3057"/> + <location filename="../Project/Project.py" line="3062"/> <source>Project Files (*.e4p)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save project as</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source>Save File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>Close Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>The current project has unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>Syntax errors detected</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>The project contains one file with syntax errors.</numerusform> @@ -50916,607 +50916,607 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>&New...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3769"/> + <location filename="../Project/Project.py" line="3774"/> <source>Generate a new project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3770"/> + <location filename="../Project/Project.py" line="3775"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>&Open...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3783"/> + <source>&Open...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3788"/> <source>Open an existing project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3784"/> + <location filename="../Project/Project.py" line="3789"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> - <source>Close project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3791"/> - <source>&Close</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3795"/> - <source>Close the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3796"/> + <source>Close project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> + <source>&Close</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3800"/> + <source>Close the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3801"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> - <source>Save project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3995"/> - <source>&Save</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Save the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3808"/> + <source>Save project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4000"/> + <source>&Save</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3812"/> + <source>Save the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3813"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save &as...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> + <location filename="../Project/Project.py" line="3824"/> <source>Save the current project to a new file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> + <location filename="../Project/Project.py" line="3826"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add files to project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add &files...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3835"/> + <source>Add files to project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3835"/> + <source>Add &files...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3840"/> <source>Add files to the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> + <location filename="../Project/Project.py" line="3842"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory to project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3851"/> + <source>Add directory to project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3851"/> + <source>Add directory...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3856"/> <source>Add a directory to the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> + <location filename="../Project/Project.py" line="3858"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> + <location filename="../Project/Project.py" line="3866"/> <source>Add translation to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add &translation...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3866"/> + <source>Add &translation...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source>Add a translation to the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3868"/> + <location filename="../Project/Project.py" line="3873"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Search new files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Searc&h new files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3880"/> + <location filename="../Project/Project.py" line="3885"/> <source>Search new files in the project directory.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> - <source>Project properties</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3906"/> - <source>&Properties...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3911"/> + <source>Project properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3911"/> + <source>&Properties...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3916"/> <source>Show the project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3917"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> + <location filename="../Project/Project.py" line="3924"/> <source>User project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> - <source>&User Properties...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3924"/> + <source>&User Properties...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3929"/> <source>Show the user specific project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3926"/> + <location filename="../Project/Project.py" line="3931"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3938"/> + <location filename="../Project/Project.py" line="3943"/> <source>Show the project filetype associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3956"/> + <location filename="../Project/Project.py" line="3961"/> <source>Show the project lexer associations (overriding defaults)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3958"/> + <location filename="../Project/Project.py" line="3963"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger Properties</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger &Properties...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3974"/> - <source>Show the debugger properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3975"/> + <source>Debugger Properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3975"/> + <source>Debugger &Properties...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3979"/> + <source>Show the debugger properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3980"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> - <source>Load</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3983"/> - <source>&Load</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3987"/> - <source>Load the debugger properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3988"/> + <source>Load</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3988"/> + <source>&Load</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3992"/> + <source>Load the debugger properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3993"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3995"/> - <source>Save</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3999"/> - <source>Save the debugger properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4000"/> + <source>Save</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4004"/> + <source>Save the debugger properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4005"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4007"/> - <source>Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>&Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4011"/> - <source>Delete the debugger properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4012"/> + <source>Delete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4012"/> + <source>&Delete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4016"/> + <source>Delete the debugger properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4017"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> + <location filename="../Project/Project.py" line="4025"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> - <source>&Reset</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4024"/> - <source>Reset the debugger properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4025"/> + <source>&Reset</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4029"/> + <source>Reset the debugger properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4030"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4034"/> - <source>Load session</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4038"/> - <source>Load the projects session file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4039"/> + <source>Load session</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4043"/> + <source>Load the projects session file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4044"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4052"/> - <source>Save session</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4056"/> - <source>Save the projects session file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4057"/> + <source>Save session</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4061"/> + <source>Save the projects session file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4062"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4070"/> - <source>Delete session</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4074"/> - <source>Delete the projects session file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4075"/> + <source>Delete session</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4079"/> + <source>Delete the projects session file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4080"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>Code Metrics</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>&Code Metrics...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4093"/> <source>Show some code metrics for the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4090"/> + <location filename="../Project/Project.py" line="4095"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Python Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Code Co&verage...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4102"/> + <location filename="../Project/Project.py" line="4107"/> <source>Show code coverage information for the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4104"/> + <location filename="../Project/Project.py" line="4109"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4112"/> + <location filename="../Project/Project.py" line="4117"/> <source>&Profile Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4116"/> + <location filename="../Project/Project.py" line="4121"/> <source>Show profiling data for the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4118"/> + <location filename="../Project/Project.py" line="4123"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4127"/> + <location filename="../Project/Project.py" line="4132"/> <source>&Application Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4131"/> + <location filename="../Project/Project.py" line="4136"/> <source>Show a diagram of the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4133"/> + <location filename="../Project/Project.py" line="4138"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source>Create Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4156"/> + <location filename="../Project/Project.py" line="4161"/> <source>Create &Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source>Create Plugin Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4257"/> + <location filename="../Project/Project.py" line="4262"/> <source>&Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4258"/> - <source>Open &Recent Projects</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4259"/> - <source>&Version Control</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4263"/> - <source>Chec&k</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4265"/> - <source>Sho&w</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4266"/> - <source>&Diagrams</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4267"/> - <source>Session</source> + <source>Open &Recent Projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4264"/> + <source>&Version Control</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="4268"/> - <source>Source &Documentation</source> + <source>Chec&k</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="4270"/> - <source>Debugger</source> + <source>Sho&w</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="4271"/> + <source>&Diagrams</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4272"/> + <source>Session</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4273"/> + <source>Source &Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4275"/> + <source>Debugger</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4276"/> <source>Pac&kagers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4390"/> + <location filename="../Project/Project.py" line="4395"/> <source>Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4456"/> + <location filename="../Project/Project.py" line="4461"/> <source>&Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>Search New Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>There were no new files found to be added.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source>Version Control System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4893"/> + <location filename="../Project/Project.py" line="4898"/> <source>Coverage Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4943"/> + <location filename="../Project/Project.py" line="4948"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Please select a profile file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Include module names?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5165"/> + <location filename="../Project/Project.py" line="5170"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5233"/> + <location filename="../Project/Project.py" line="5238"/> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5375"/> + <location filename="../Project/Project.py" line="5380"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5449"/> + <location filename="../Project/Project.py" line="5454"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -51526,32 +51526,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4145"/> + <location filename="../Project/Project.py" line="4150"/> <source>Load a diagram from file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4147"/> + <location filename="../Project/Project.py" line="4152"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> @@ -51581,27 +51581,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4753"/> + <location filename="../Project/Project.py" line="4758"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4161"/> + <location filename="../Project/Project.py" line="4166"/> <source>Create an initial PKGLIST file for an eric6 plugin.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4163"/> + <location filename="../Project/Project.py" line="4168"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5340"/> + <location filename="../Project/Project.py" line="5345"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -51621,228 +51621,228 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3897"/> + <location filename="../Project/Project.py" line="3902"/> <source>Search for a file in the project list of files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3904"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5269"/> + <location filename="../Project/Project.py" line="5274"/> <source>Create Plugin Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4172"/> - <source>Create Plugin &Archives</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4177"/> + <source>Create Plugin &Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4182"/> <source>Create eric6 plugin archive files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4179"/> + <location filename="../Project/Project.py" line="4184"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> + <location filename="../Project/Project.py" line="4194"/> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (&Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4199"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4196"/> + <location filename="../Project/Project.py" line="4201"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5247"/> + <location filename="../Project/Project.py" line="5252"/> <source>Select package lists:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Creating plugin archives...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>%v/%m Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5282"/> + <location filename="../Project/Project.py" line="5287"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5394"/> + <location filename="../Project/Project.py" line="5399"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5397"/> + <location filename="../Project/Project.py" line="5402"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5258"/> + <location filename="../Project/Project.py" line="5263"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5312"/> + <location filename="../Project/Project.py" line="5317"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3882"/> + <location filename="../Project/Project.py" line="3887"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3940"/> + <location filename="../Project/Project.py" line="3945"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source>Create Makefile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4210"/> + <location filename="../Project/Project.py" line="4215"/> <source>&Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4214"/> + <location filename="../Project/Project.py" line="4219"/> <source>Perform a 'make' run.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4216"/> + <location filename="../Project/Project.py" line="4221"/> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5654"/> + <location filename="../Project/Project.py" line="5659"/> <source>Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4229"/> <source>&Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4228"/> + <location filename="../Project/Project.py" line="4233"/> <source>Question 'make', if a rebuild is needed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4230"/> + <location filename="../Project/Project.py" line="4235"/> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4272"/> + <location filename="../Project/Project.py" line="4277"/> <source>Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5602"/> + <location filename="../Project/Project.py" line="5607"/> <source>The make process did not start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5647"/> + <location filename="../Project/Project.py" line="5652"/> <source>The make process crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5657"/> - <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="5662"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5667"/> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>The makefile contains errors.</source> <translation type="unfinished"></translation> </message> @@ -52102,7 +52102,7 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="947"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1011"/> <source>Forms</source> <translation type="unfinished"></translation> </message> @@ -52152,182 +52152,182 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="149"/> + <location filename="../Project/ProjectFormsBrowser.py" line="158"/> <source>Compile form</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="327"/> + <location filename="../Project/ProjectFormsBrowser.py" line="352"/> <source>Compile all forms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="160"/> + <location filename="../Project/ProjectFormsBrowser.py" line="169"/> <source>Generate Dialog Code...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="238"/> + <location filename="../Project/ProjectFormsBrowser.py" line="255"/> <source>Open in Qt-Designer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="240"/> - <source>Open in Editor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="144"/> - <source>Preview form</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="243"/> - <source>Preview translations</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="257"/> + <source>Open in Editor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="153"/> + <source>Preview form</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="260"/> + <source>Preview translations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="274"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="175"/> + <location filename="../Project/ProjectFormsBrowser.py" line="184"/> <source>Rename file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="288"/> - <source>Remove from project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="291"/> - <source>Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="300"/> - <source>New form...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="333"/> - <source>Add forms...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="335"/> - <source>Add forms directory...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="309"/> + <source>Remove from project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="312"/> + <source>Delete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="321"/> + <source>New form...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="358"/> + <source>Add forms...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="360"/> + <source>Add forms directory...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="330"/> <source>Copy Path to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="338"/> + <location filename="../Project/ProjectFormsBrowser.py" line="363"/> <source>Expand all directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="340"/> + <location filename="../Project/ProjectFormsBrowser.py" line="365"/> <source>Collapse all directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="343"/> + <location filename="../Project/ProjectFormsBrowser.py" line="368"/> <source>Configure...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="247"/> + <location filename="../Project/ProjectFormsBrowser.py" line="264"/> <source>Compile forms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source>New Form</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="549"/> + <location filename="../Project/ProjectFormsBrowser.py" line="574"/> <source>Select a form type:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="563"/> + <location filename="../Project/ProjectFormsBrowser.py" line="588"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="582"/> + <location filename="../Project/ProjectFormsBrowser.py" line="607"/> <source>The file already exists! Overwrite it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Delete forms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Do you really want to delete these forms from the project?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>Form Compilation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="698"/> + <location filename="../Project/ProjectFormsBrowser.py" line="776"/> <source>The compilation of the form file was successful.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="713"/> + <location filename="../Project/ProjectFormsBrowser.py" line="791"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>The compilation of the form file failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="905"/> + <location filename="../Project/ProjectFormsBrowser.py" line="969"/> <source>Compiling forms...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Determining changed forms...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="972"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1036"/> <source>Compiling changed forms...</source> <translation type="unfinished"></translation> </message> @@ -52382,10 +52382,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>%v/%m Forms</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>Configure uic Compiler</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>No project specific uic compiler flags are supported for PySide or PySide2.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectInterfacesBrowser</name> @@ -73555,6 +73565,44 @@ </message> </context> <context> + <name>UicCompilerOptionsDialog</name> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="14"/> + <source>uic Compiler Options</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="23"/> + <source>'import' Package</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="29"/> + <source>Enter the package name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="36"/> + <source><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="49"/> + <source>Resources Suffix</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="55"/> + <source>Enter the suffix of compiled resource files (default: _rc)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="62"/> + <source><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>UnittestDialog</name> <message> <location filename="../PyUnit/UnittestDialog.py" line="405"/> @@ -83372,22 +83420,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1871"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> <source>Web Archive (*.mhtml *.mht)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1872"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1874"/> <source>HTML File (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1875"/> <source>HTML File with all resources (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1897"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1899"/> <source>Save Web Page</source> <translation type="unfinished"></translation> </message> @@ -83397,22 +83445,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source>Quota Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source>Protocol Handler Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source><p> Allow the website at <b>{0}</b> to open all <b>{1}</b> links?</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_es.ts Wed Nov 21 19:26:59 2018 +0100 +++ b/i18n/eric6_es.ts Sat Nov 24 15:37:04 2018 +0100 @@ -5400,12 +5400,12 @@ <translation>Filtrar c&on:</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source>uic error</source> <translation>error de uic</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source>Code Generation</source> <translation>Generación de Código</translation> </message> @@ -5420,27 +5420,27 @@ <translation>El archivo <b>{0}</b> existe pero no contiene ninguna clase.</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p>Ha ocurrido un error al cargar el formulario <b>{0}</b>.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="618"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>No se ha podido cargar el archivo con la plantilla de código "{0}".</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="654"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>No se ha podido abrir el archivo de codigo fuente "{0}".</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>No se ha podido escribir en el archivo de codigo fuente "{0}".</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="208"/> <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> <translation type="unfinished"></translation> </message> @@ -50786,207 +50786,207 @@ <translation>Otro</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source>Read project file</source> <translation>Leer archivo de proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source>Save project file</source> <translation>Guardar proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source>Read user project properties</source> <translation>Leer las propiedades de proyecto del usuario</translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source>Save user project properties</source> <translation>Guardar propiedades de proyecto del usuario</translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source>Read project session</source> <translation>Leer sesion de proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="1232"/> + <location filename="../Project/Project.py" line="1237"/> <source>Please save the project first.</source> <translation>Por favor guarde primero el proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source>Save project session</source> <translation>Guardar sesion de proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source>Delete project session</source> <translation>Borrar sesion de proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source>Read tasks</source> <translation>Leer tareas</translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source>Save tasks</source> <translation>Guardar Tareas</translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source>Read debugger properties</source> <translation>Leer propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source>Save debugger properties</source> <translation>Guardar propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source>Delete debugger properties</source> <translation>Borrar propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>Add Language</source> <translation>Añadir lenguaje</translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source>Delete translation</source> <translation>Borrar traducción</translation> </message> <message> - <location filename="../Project/Project.py" line="1659"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add file</source> <translation>Agregar archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="1789"/> + <location filename="../Project/Project.py" line="1794"/> <source>The target directory must not be empty.</source> <translation>El directorio de destino no puede estar vacío.</translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>Add directory</source> <translation>Añadir directorio</translation> </message> <message> - <location filename="../Project/Project.py" line="1690"/> + <location filename="../Project/Project.py" line="1695"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>El directorio de origen no contiene archivos que pertenezcan a la categoría seleccionada.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>The source directory must not be empty.</source> <translation>El directorio de origen no puede estar vacío.</translation> </message> <message> - <location filename="../Project/Project.py" line="1937"/> + <location filename="../Project/Project.py" line="1942"/> <source>Rename file</source> <translation>Renombrar archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source>Rename File</source> <translation>Renombrar Archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source>Delete file</source> <translation>Borrar archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source>Delete directory</source> <translation>Borrar directorio</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source>Create project directory</source> <translation>Crear directorio de proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>New Project</source> <translation>Proyecto nuevo</translation> </message> <message> - <location filename="../Project/Project.py" line="2436"/> + <location filename="../Project/Project.py" line="2441"/> <source>Add existing files to the project?</source> <translation>¿Agregar archivos existentes al proyecto?</translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>Select Version Control System</source> <translation>Seleccion el Sistema de control de versiones (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="2555"/> + <location filename="../Project/Project.py" line="2560"/> <source>Would you like to edit the VCS command options?</source> <translation>¿Le gustaría editar las opciones de comando para VCS?</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>New project</source> <translation>Proyecto nuevo</translation> </message> <message> - <location filename="../Project/Project.py" line="2503"/> + <location filename="../Project/Project.py" line="2508"/> <source>Shall the project file be added to the repository?</source> <translation>¿Debe añadirse el archivo de proyecto al repositorio?</translation> </message> <message> - <location filename="../Project/Project.py" line="2534"/> + <location filename="../Project/Project.py" line="2539"/> <source>None</source> <translation>Ninguno</translation> </message> <message> - <location filename="../Project/Project.py" line="2527"/> + <location filename="../Project/Project.py" line="2532"/> <source>Select version control system for the project</source> <translation>Seleccione el sistema de control de versiones para el proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> + <location filename="../Project/Project.py" line="3783"/> <source>Open project</source> <translation>Abrir proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3057"/> + <location filename="../Project/Project.py" line="3062"/> <source>Project Files (*.e4p)</source> <translation>Archivos de proyecto (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save project as</source> <translation>Guardar proyecto como</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source>Save File</source> <translation>Guardar archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>Close Project</source> <translation>Cerrar Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>The current project has unsaved changes.</source> <translation>El proyecto actual tiene cambios sin guardar.</translation> </message> <message> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>Syntax errors detected</source> <translation>Se detectaron errores de sintaxis</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>El archivo contiene %n archivo(s) con errores de sintaxis.</numerusform> @@ -50994,567 +50994,567 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>&New...</source> <translation>&Nuevo...</translation> </message> <message> - <location filename="../Project/Project.py" line="3769"/> + <location filename="../Project/Project.py" line="3774"/> <source>Generate a new project</source> <translation>Generar un nuevo proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3770"/> + <location filename="../Project/Project.py" line="3775"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nuevo...</b><p>Abre un diálogo para introducir la información para un nuevo proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>&Open...</source> - <translation>&Abrir...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3783"/> + <source>&Open...</source> + <translation>&Abrir...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3788"/> <source>Open an existing project</source> <translation>Abrir un proyecto existente</translation> </message> <message> - <location filename="../Project/Project.py" line="3784"/> + <location filename="../Project/Project.py" line="3789"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Abrir...</b><p>Abre un proyecto existente..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> + <location filename="../Project/Project.py" line="3796"/> <source>Close project</source> <translation>Cerrar proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> - <source>&Close</source> - <translation>&Cerrar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3795"/> - <source>Close the current project</source> - <translation>Cierra el proyecto actual</translation> - </message> - <message> <location filename="../Project/Project.py" line="3796"/> + <source>&Close</source> + <translation>&Cerrar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3800"/> + <source>Close the current project</source> + <translation>Cierra el proyecto actual</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3801"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Cerrar</b><p>Cierra el proyecto actualt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> - <source>Save project</source> - <translation>Guardar proyecto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3995"/> - <source>&Save</source> - <translation>&Guardar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Save the current project</source> - <translation>Guarda el proyecto actual</translation> - </message> - <message> <location filename="../Project/Project.py" line="3808"/> + <source>Save project</source> + <translation>Guardar proyecto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4000"/> + <source>&Save</source> + <translation>&Guardar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3812"/> + <source>Save the current project</source> + <translation>Guarda el proyecto actual</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3813"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Guardar</b><p>Guarda el proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save &as...</source> <translation>Guardar co&mo...</translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> + <location filename="../Project/Project.py" line="3824"/> <source>Save the current project to a new file</source> <translation>Guardar el proyecto actual en un nuevo archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> + <location filename="../Project/Project.py" line="3826"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Guardar como</b><p>Guarda el proyecto en otro archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add files to project</source> - <translation>Agregar archivos al proyecto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add &files...</source> - <translation>&Agregar archivos...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3835"/> + <source>Add files to project</source> + <translation>Agregar archivos al proyecto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3835"/> + <source>Add &files...</source> + <translation>&Agregar archivos...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3840"/> <source>Add files to the current project</source> <translation>Añadir archivos al proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> + <location filename="../Project/Project.py" line="3842"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Añadir archivos...</b><p>Abre un diálogo para añadir archivos al proyecto actual. El lugar donde se van a añadir es determinado por la extensión del nombre de archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> + <location filename="../Project/Project.py" line="3851"/> <source>Add directory to project</source> <translation>Agregar directorio al proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory...</source> - <translation>Agregar directorio...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3851"/> + <source>Add directory...</source> + <translation>Agregar directorio...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3856"/> <source>Add a directory to the current project</source> <translation>Agregar directorio al proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> + <location filename="../Project/Project.py" line="3858"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Añadir directorio...</b><p>Abre un diálogo para añadir un directorio al proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> + <location filename="../Project/Project.py" line="3866"/> <source>Add translation to project</source> <translation>Añadir traducción al proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add &translation...</source> - <translation>Añadir &Traducción...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3866"/> + <source>Add &translation...</source> + <translation>Añadir &Traducción...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source>Add a translation to the current project</source> <translation>Añadir una traducción al proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="3868"/> + <location filename="../Project/Project.py" line="3873"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Añadir traducción...</b><p>Abre un diálogo para añadir una traducción al proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Search new files</source> <translation>Buscar archivos nuevos</translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Searc&h new files...</source> <translation>Bus&car archivos nuevos...</translation> </message> <message> - <location filename="../Project/Project.py" line="3880"/> + <location filename="../Project/Project.py" line="3885"/> <source>Search new files in the project directory.</source> <translation>Bucar nuevos archivos en el directorio de proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> + <location filename="../Project/Project.py" line="3911"/> <source>Project properties</source> <translation>Propiedades del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> - <source>&Properties...</source> - <translation>&Propiedades...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3911"/> + <source>&Properties...</source> + <translation>&Propiedades...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3916"/> <source>Show the project properties</source> <translation>Ver las propiedades del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3917"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Propiedades...</b><p>Muestra un diálogo para editar las propiedades del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> + <location filename="../Project/Project.py" line="3924"/> <source>User project properties</source> <translation>Propiedades del usuario del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> - <source>&User Properties...</source> - <translation>Propiedades del &Usuario...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3924"/> + <source>&User Properties...</source> + <translation>Propiedades del &Usuario...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3929"/> <source>Show the user specific project properties</source> <translation>Muestra propiedades del proyecto específicas del usuario</translation> </message> <message> - <location filename="../Project/Project.py" line="3926"/> + <location filename="../Project/Project.py" line="3931"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Propiedades del Usuario...</b><p>Abre un diálogo par editar las propiedades del proyecto específicas del usuario.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations</source> <translation>Asociación de tipos de archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations...</source> <translation>Asociación de tipos de archivo...</translation> </message> <message> - <location filename="../Project/Project.py" line="3938"/> + <location filename="../Project/Project.py" line="3943"/> <source>Show the project filetype associations</source> <translation>Ver las asociaciones del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger Properties</source> - <translation>Propiedades del depurador</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger &Properties...</source> - <translation>&Propiedades del depurador...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3974"/> - <source>Show the debugger properties</source> - <translation>Muestra las propiedades del depurador</translation> - </message> - <message> <location filename="../Project/Project.py" line="3975"/> + <source>Debugger Properties</source> + <translation>Propiedades del depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3975"/> + <source>Debugger &Properties...</source> + <translation>&Propiedades del depurador...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3979"/> + <source>Show the debugger properties</source> + <translation>Muestra las propiedades del depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3980"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Propiedades del Depurador...</b><p>Abre un diálogo par editar las propiedades del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> - <source>Load</source> - <translation>Cargar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3983"/> - <source>&Load</source> - <translation>&Cargar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3987"/> - <source>Load the debugger properties</source> - <translation>Cargar las propiedades del depurador</translation> - </message> - <message> <location filename="../Project/Project.py" line="3988"/> + <source>Load</source> + <translation>Cargar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3988"/> + <source>&Load</source> + <translation>&Cargar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3992"/> + <source>Load the debugger properties</source> + <translation>Cargar las propiedades del depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3993"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Cargar Propiedades del Depurador</b><p>Carga las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3995"/> - <source>Save</source> - <translation>Guardar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3999"/> - <source>Save the debugger properties</source> - <translation>Guardar propiedades del depurador</translation> - </message> - <message> <location filename="../Project/Project.py" line="4000"/> + <source>Save</source> + <translation>Guardar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4004"/> + <source>Save the debugger properties</source> + <translation>Guardar propiedades del depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4005"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Guardar Propiedades del Depurador</b><p>Guarda las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4007"/> - <source>Delete</source> - <translation>Borrar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>&Delete</source> - <translation>&Borrar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4011"/> - <source>Delete the debugger properties</source> - <translation>Borrar las propiedades del depurador</translation> - </message> - <message> <location filename="../Project/Project.py" line="4012"/> + <source>Delete</source> + <translation>Borrar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4012"/> + <source>&Delete</source> + <translation>&Borrar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4016"/> + <source>Delete the debugger properties</source> + <translation>Borrar las propiedades del depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4017"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Borrar Propiedades del Depurador</b><p>Borra el archivo que contiene las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> + <location filename="../Project/Project.py" line="4025"/> <source>Reset</source> <translation>Reiniciar</translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> - <source>&Reset</source> - <translation>&Reiniciar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4024"/> - <source>Reset the debugger properties</source> - <translation>Restablecer las propiedades del depurador</translation> - </message> - <message> <location filename="../Project/Project.py" line="4025"/> + <source>&Reset</source> + <translation>&Reiniciar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4029"/> + <source>Reset the debugger properties</source> + <translation>Restablecer las propiedades del depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4030"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Restablecer Propiedades del Depurador</b><p>Restablece las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4034"/> - <source>Load session</source> - <translation>Cargar sesión</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4038"/> - <source>Load the projects session file.</source> - <translation>Cargar archivo de sesión de proyectos.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4039"/> + <source>Load session</source> + <translation>Cargar sesión</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4043"/> + <source>Load the projects session file.</source> + <translation>Cargar archivo de sesión de proyectos.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4044"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Cargar sesión</b><p>Carga el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.<br>- todos los archivos de fuentes abiertos<br>- todos los puntos de interrupción<br>- todos los argumentos de línea de comandos<br>- el directorio de trabajo<br>- el flag de reporte de excepciones</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4052"/> - <source>Save session</source> - <translation>Guardar sesión</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4056"/> - <source>Save the projects session file.</source> - <translation>Guardar archivos de sessión de proyecto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4057"/> + <source>Save session</source> + <translation>Guardar sesión</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4061"/> + <source>Save the projects session file.</source> + <translation>Guardar archivos de sessión de proyecto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4062"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Guardar sesión</b><p>Guarda el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.<br>- todos los archivos de fuentes abiertos<br>- todos los puntos de interrupción<br>- todos los argumentos de línea de comandos<br>- el directorio de trabajo<br>- el flag de reporte de excepciones</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4070"/> - <source>Delete session</source> - <translation>Borrar sesión</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4074"/> - <source>Delete the projects session file.</source> - <translation>Borrar el archivo de sesión de proyecto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4075"/> + <source>Delete session</source> + <translation>Borrar sesión</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4079"/> + <source>Delete the projects session file.</source> + <translation>Borrar el archivo de sesión de proyecto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4080"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Borrar sesión</b><p>Borra el archivo de sesión del proyecto</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>Code Metrics</source> <translation>Métricas de código</translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>&Code Metrics...</source> <translation>Métricas de &código...</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4093"/> <source>Show some code metrics for the project.</source> <translation>Muestra algunas métricas del código para este proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="4090"/> + <location filename="../Project/Project.py" line="4095"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Métricas de Código...</b><p>Muestra algunas métricas de código para todos los archivos Python en el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Python Code Coverage</source> <translation>Cobertura de Código Python</translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Code Co&verage...</source> <translation>Co&bertura de código...</translation> </message> <message> - <location filename="../Project/Project.py" line="4102"/> + <location filename="../Project/Project.py" line="4107"/> <source>Show code coverage information for the project.</source> <translation>Muestra información de cobertura de código para el proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="4104"/> + <location filename="../Project/Project.py" line="4109"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Cobertura de Código...</b><p>Muestra la información de cobertura de código para todos los archivos Python en el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Profile Data</source> <translation>Datos de perfil</translation> </message> <message> - <location filename="../Project/Project.py" line="4112"/> + <location filename="../Project/Project.py" line="4117"/> <source>&Profile Data...</source> <translation>Datos de &pefil...</translation> </message> <message> - <location filename="../Project/Project.py" line="4116"/> + <location filename="../Project/Project.py" line="4121"/> <source>Show profiling data for the project.</source> <translation>Mostrar datos de profiling para el proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="4118"/> + <location filename="../Project/Project.py" line="4123"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Datos de Profiling...</b><p>Muestra datos de profiling para el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Application Diagram</source> <translation>Diagrama de Aplicación</translation> </message> <message> - <location filename="../Project/Project.py" line="4127"/> + <location filename="../Project/Project.py" line="4132"/> <source>&Application Diagram...</source> <translation>Diagrama de &Aplicación...</translation> </message> <message> - <location filename="../Project/Project.py" line="4131"/> + <location filename="../Project/Project.py" line="4136"/> <source>Show a diagram of the project.</source> <translation>Mostrar diagrama del proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="4133"/> + <location filename="../Project/Project.py" line="4138"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagrama de Aplicación...</b><p>Muestra un diagrama del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source>Create Package List</source> <translation>Crear Lista del Paquete</translation> </message> <message> - <location filename="../Project/Project.py" line="4156"/> + <location filename="../Project/Project.py" line="4161"/> <source>Create &Package List</source> <translation>Crear &Package List</translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source>Create Plugin Archive</source> <translation>Crear Archivo de Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="4257"/> + <location filename="../Project/Project.py" line="4262"/> <source>&Project</source> <translation>&Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4258"/> - <source>Open &Recent Projects</source> - <translation>Abrir Proyectos &Recientes</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4259"/> - <source>&Version Control</source> - <translation>Control de &Versiones</translation> - </message> - <message> <location filename="../Project/Project.py" line="4263"/> - <source>Chec&k</source> - <translation>Veri&ficar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4265"/> - <source>Sho&w</source> - <translation>V&er</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4266"/> - <source>&Diagrams</source> - <translation>&Diagramas</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4267"/> - <source>Session</source> - <translation>Sesión</translation> + <source>Open &Recent Projects</source> + <translation>Abrir Proyectos &Recientes</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4264"/> + <source>&Version Control</source> + <translation>Control de &Versiones</translation> </message> <message> <location filename="../Project/Project.py" line="4268"/> - <source>Source &Documentation</source> - <translation>Origen de &Documentación</translation> + <source>Chec&k</source> + <translation>Veri&ficar</translation> </message> <message> <location filename="../Project/Project.py" line="4270"/> - <source>Debugger</source> - <translation>Depurador</translation> + <source>Sho&w</source> + <translation>V&er</translation> </message> <message> <location filename="../Project/Project.py" line="4271"/> + <source>&Diagrams</source> + <translation>&Diagramas</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4272"/> + <source>Session</source> + <translation>Sesión</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4273"/> + <source>Source &Documentation</source> + <translation>Origen de &Documentación</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4275"/> + <source>Debugger</source> + <translation>Depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4276"/> <source>Pac&kagers</source> <translation>Empa&quetadores</translation> </message> <message> - <location filename="../Project/Project.py" line="4390"/> + <location filename="../Project/Project.py" line="4395"/> <source>Project</source> <translation>Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4456"/> + <location filename="../Project/Project.py" line="4461"/> <source>&Clear</source> <translation>&Borrar</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>Search New Files</source> <translation>Buscar nuevos archivos</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>There were no new files found to be added.</source> <translation>No se han encontrado nuevos archivos para ser añadidos.</translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source>Version Control System</source> <translation>Sistema de control de versiones</translation> </message> <message> - <location filename="../Project/Project.py" line="4893"/> + <location filename="../Project/Project.py" line="4898"/> <source>Coverage Data</source> <translation>Datos de Cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="4943"/> + <location filename="../Project/Project.py" line="4948"/> <source>There is no main script defined for the current project. Aborting</source> <translation>No hay script principal definido para el proyecto actual. Abortando</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Code Coverage</source> <translation>Cobertura de codigo</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Please select a coverage file</source> <translation>Por favor seleccione un archivo de cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Please select a profile file</source> <translation>Por favor seleccione un archivo de profiling</translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Include module names?</source> <translation>¿Incluir nombres de módulos?</translation> </message> <message> - <location filename="../Project/Project.py" line="5165"/> + <location filename="../Project/Project.py" line="5170"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>El archivo <b>PKGLIST</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5233"/> + <location filename="../Project/Project.py" line="5238"/> <source>The project does not have a main script defined. Aborting...</source> <translation>No hay script principal definido para el proyecto actual. Abortando...</translation> </message> @@ -51564,42 +51564,42 @@ <translation>Registrando Tipo de Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4172"/> + <location filename="../Project/Project.py" line="4177"/> <source>Create Plugin &Archives</source> <translation>Crear &Archivos de Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>You have to specify a translation pattern first.</source> <translation>Debe especificar primero un patrón de traducción.</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Translation Pattern</source> <translation>Patrón de Traducción</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Introduzca el patrón de ruta para los archivos de traducción (use '%language%' in lugar del código de idioma):</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations</source> <translation>Asociaciones de Analizador Léxico</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations...</source> <translation>Asociaciones de Analizador Léxico...</translation> </message> <message> - <location filename="../Project/Project.py" line="3956"/> + <location filename="../Project/Project.py" line="3961"/> <source>Show the project lexer associations (overriding defaults)</source> <translation>Ver las asociaciones de analizador léxico del proyecto (sobreescribiendo valores por defecto)</translation> </message> <message> - <location filename="../Project/Project.py" line="3958"/> + <location filename="../Project/Project.py" line="3963"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Asociaciones de Analizador Léxico ...</b><p>Muestra un diálogo para editar las asociaciones de analizador léxico del proyecto. Estas asociaciones sobreescriben las asociaciones de analizador léxico globales. Los analizadores léxicos se utilizan para resaltar el texto en el editor.</p></translation> </message> @@ -51619,112 +51619,112 @@ <translation>Archivos Python3 (*.py *.py3);;Archivos de GUI Python3 (*.pyw *.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de proyecto <b>{0}</b> no ha podido ser leído.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de proyecto <b>{0}</b> no ha podido ser guardado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de propiedades de proyecto específicas del usuario <b>{0}</b> no ha podido ser leído.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de propiedades de proyecto específicas del usuario <b>{0}</b> no ha podido ser guardado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de sesión de proyecto <b>{0}</b> no ha podido leerse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de sesión de proyecto <b>{0}</b> no ha podido guardarse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>El archivo de sesión de proyecto <b>{0}</b> no ha podido borrarse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <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="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de tareas <b>{0}</b> no pudo ser guardado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de propiedades del depurador del proyecto <b>{0}</b> no ha podido leerse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de propiedades del depurador del proyecto <b>{0}</b> no pudo ser guardado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>El archivo de propiedades del depurador del proyecto <b>{0}</b> no pudo ser borrado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1721"/> + <location filename="../Project/Project.py" line="1726"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>El archivo <b>{0}</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>El archivo <b>{0}</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>El archivo <b>{0}</b> no puede ser renombrado.<br />Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>El directorio de proyecto <b>{0}</b> no pudo ser creado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Deshabilitando control de versiones.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>El archivo <b>PKGLIST</b> no puede ser creado.</p><p>Causa: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5375"/> + <location filename="../Project/Project.py" line="5380"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>El fichero<b>{0}</b> no ha podido ser almacenado en el archivo. Va a ser ignorado.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5449"/> + <location filename="../Project/Project.py" line="5454"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo de plugin<b>{0}</b> no puede ser leido.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1646"/> + <location filename="../Project/Project.py" line="1651"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>El archivo seleccionado <b>{0}</b> no ha podido se añadido a <b>{1}</b>.</p><p>Razón: {2}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1703"/> + <location filename="../Project/Project.py" line="1708"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>El directorio de destino <b>{0}</b> no ha podido ser creado.</p><p>Razón: {1}</p></translation> </message> @@ -51734,32 +51734,32 @@ <translation>Archivos Python2(*.py2);;Archivos de GUI Python2 (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source>Create main script</source> <translation>Crear script principal</translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>El script principal <b>{0}</b> no se ha podido crear.<br/>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>Load Diagram</source> <translation>Cargar Diagrama</translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>&Load Diagram...</source> <translation>&Cargar Diagrama...</translation> </message> <message> - <location filename="../Project/Project.py" line="4145"/> + <location filename="../Project/Project.py" line="4150"/> <source>Load a diagram from file.</source> <translation>CArgar diagrama desde archivo.</translation> </message> <message> - <location filename="../Project/Project.py" line="4147"/> + <location filename="../Project/Project.py" line="4152"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Cargar Diagrama...</b><p>Carga un diagrama desde un archivo.</p></translation> </message> @@ -51789,37 +51789,37 @@ <translation>Consola PyQt5</translation> </message> <message> - <location filename="../Project/Project.py" line="4753"/> + <location filename="../Project/Project.py" line="4758"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Revirtiendo sobreescritura.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>El archivo de plugin<b>{0}</b> no puede ser leido.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4161"/> + <location filename="../Project/Project.py" line="4166"/> <source>Create an initial PKGLIST file for an eric6 plugin.</source> <translation>Crear un archivo inicial PKGLIST para un plugin para eric6.</translation> </message> <message> - <location filename="../Project/Project.py" line="4163"/> + <location filename="../Project/Project.py" line="4168"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation><b>Crear Package List</b><p>Crea una lista inicial de archivos para incluir en un archivo de plugin para eric6. Esta lista se crea a partir del archivo de proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4177"/> + <location filename="../Project/Project.py" line="4182"/> <source>Create eric6 plugin archive files.</source> <translation>Crear ficheros para archivo de plugin de eric6.</translation> </message> <message> - <location filename="../Project/Project.py" line="4179"/> + <location filename="../Project/Project.py" line="4184"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation><b>Crear Archivo de Plugin</b><p>Crea ficheros para archivo de plugin de eric6 utilizando el listado de ficheros proporcionados en un archivo PKGLIST*. El nombre de archivo se crea a partir del nombre del script principal si no se desinga uno en el archivo de lista de package.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5340"/> + <location filename="../Project/Project.py" line="5345"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>El archivo de plugin de eric6 <b>{0}</b> no ha podido ser creado. Abortando...</p><p>Razón: {1}</p></translation> </message> @@ -51839,213 +51839,213 @@ <translation>Eric6 Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source>Create project management directory</source> <translation>Crear directorio de gestión del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation><p>El directorio del proyecto <b>{0}</b> no se puede escribir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="3897"/> + <location filename="../Project/Project.py" line="3902"/> <source>Search for a file in the project list of files.</source> <translation>Bucar un archivo en el listado de archivos del proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3904"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation><b>Buscar Archivo en el Proyecto</b><p>Busca un archivo en el listado de archivos del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File</source> <translation>Buscar Archivo en Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File...</source> <translation>Buscar Archivo en Proyecto...</translation> </message> <message> - <location filename="../Project/Project.py" line="5269"/> + <location filename="../Project/Project.py" line="5274"/> <source>Create Plugin Archives</source> <translation>Crear Archivos de Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> + <location filename="../Project/Project.py" line="4194"/> <source>Create Plugin Archives (Snapshot)</source> <translation>Crear Archivos de Plugin (Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (&Snapshot)</source> - <translation>Crear Archivos de Plugin (&Snapshot)</translation> - </message> - <message> <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation>Crear Archivos de Plugin (&Snapshot)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4199"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation>Crear ficheros para archivo de plugin de eric6 (snapshot releases).</translation> </message> <message> - <location filename="../Project/Project.py" line="4196"/> + <location filename="../Project/Project.py" line="4201"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation><b>Crear Archivos de Plugin (Snapshot)</b><p>Crea ficheros para archivo de plugin de eric6 usando el listado de ficheros dado en un archivo PKGLIST*. El nombre del archivo se construye a partir del nombre del script principal si no se designa uno en el archivo de package list. La entrada de versión del script principal se modifica para reflejar una snapshot release.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5247"/> + <location filename="../Project/Project.py" line="5252"/> <source>Select package lists:</source> <translation>Seleccionar package lists:</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Creating plugin archives...</source> <translation>Creando archivos de plugin...</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Abort</source> <translation>Abortar</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>%v/%m Archives</source> <translation>%v/%m Archivos</translation> </message> <message> - <location filename="../Project/Project.py" line="5282"/> + <location filename="../Project/Project.py" line="5287"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo<b>{0}</b> no puede ser leído.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5394"/> + <location filename="../Project/Project.py" line="5399"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation><p>Los ficheros para archivo de plugin de eric6 se han creado con errores.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5397"/> + <location filename="../Project/Project.py" line="5402"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation><p>Los ficheros para archivo de plugin de eric6 se han creado correctamente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5258"/> + <location filename="../Project/Project.py" line="5263"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation><p>No hay archivo de package list (PKGLIST*) disponible o seleccionado. Abortando...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5312"/> + <location filename="../Project/Project.py" line="5317"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation><p>El archivo <b>{0}</b> todavía no está listo.</p><p>Por favor, revíselo y borre la línea '; initial_list' del encabezado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3882"/> + <location filename="../Project/Project.py" line="3887"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation><b>Buscar nuevos archivos...</b><p>Busca nuevos archivos (fuentes, *.ui, *.idl, *.proto) en el directorio del proyecto y en los subdirectorios registrados.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3940"/> + <location filename="../Project/Project.py" line="3945"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Asociaciones de tipos de archivo...</b><p>Muestra un diálogo para editar asociaciones de tipos de archivo del proyecto. Estas asociaciones determinan el tipo (fuentes, formulario, interfaces, protocolos u otros) con un patrón de nombre de archivo. Se usan al añadir archivos al proyecto y al realizar una búsqueda de nuevos archivos.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>El archivo de traducción seleccionado <b>{0}</b> no se ha podido borrar.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>El archivo seleccionado <b>{0}</b> no se ha podido borrar.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>El directorio seleccionado <b>{0}</b> no se ha podido borrar.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source>Create Makefile</source> <translation>Crear Makefile</translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>El makefile <b>{0}</b> no se ha podido crear.<br/>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>Execute Make</source> <translation>Ejecutar Make</translation> </message> <message> - <location filename="../Project/Project.py" line="4210"/> + <location filename="../Project/Project.py" line="4215"/> <source>&Execute Make</source> <translation>&Ejecutar Make</translation> </message> <message> - <location filename="../Project/Project.py" line="4214"/> + <location filename="../Project/Project.py" line="4219"/> <source>Perform a 'make' run.</source> <translation>Ejecutar un 'make'.</translation> </message> <message> - <location filename="../Project/Project.py" line="4216"/> + <location filename="../Project/Project.py" line="4221"/> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation><b>Ejecutar Make</b><p>Ejecuta un 'make' para reconstruir el target configurado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5654"/> + <location filename="../Project/Project.py" line="5659"/> <source>Test for Changes</source> <translation>Comprobar Cambios</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4229"/> <source>&Test for Changes</source> <translation>&Comprobar Cambios</translation> </message> <message> - <location filename="../Project/Project.py" line="4228"/> + <location filename="../Project/Project.py" line="4233"/> <source>Question 'make', if a rebuild is needed.</source> <translation>Preguntar a 'make' si es necesario reconstruir.</translation> </message> <message> - <location filename="../Project/Project.py" line="4230"/> + <location filename="../Project/Project.py" line="4235"/> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation><b>Comprobar Cambios</b><p>Pregunta a 'make si es necesario reconstruir el target configurado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4272"/> + <location filename="../Project/Project.py" line="4277"/> <source>Make</source> <translation>Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5602"/> + <location filename="../Project/Project.py" line="5607"/> <source>The make process did not start.</source> <translation>El proceso make no ha comenzado.</translation> </message> <message> - <location filename="../Project/Project.py" line="5647"/> + <location filename="../Project/Project.py" line="5652"/> <source>The make process crashed.</source> <translation>El proceso make ha fallado.</translation> </message> <message> - <location filename="../Project/Project.py" line="5657"/> - <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> - <translation><p>Hay cambios que requieren que el target make configurado <b>{0}</b> se reconstruya.</p></translation> - </message> - <message> <location filename="../Project/Project.py" line="5662"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation><p>Hay cambios que requieren que el target make configurado <b>{0}</b> se reconstruya.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5667"/> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation><p>Hay cambios que requieren que el target make por defecto se reconstruya.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>The makefile contains errors.</source> <translation>El makefile contiene errores.</translation> </message> @@ -52305,7 +52305,7 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="947"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1011"/> <source>Forms</source> <translation>Formularios</translation> </message> @@ -52355,182 +52355,182 @@ <translation>Diálogo con botones (Abajo-Centro)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="149"/> + <location filename="../Project/ProjectFormsBrowser.py" line="158"/> <source>Compile form</source> <translation>Compilar formulario</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="327"/> + <location filename="../Project/ProjectFormsBrowser.py" line="352"/> <source>Compile all forms</source> <translation>Compilar todos los formularios</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="160"/> + <location filename="../Project/ProjectFormsBrowser.py" line="169"/> <source>Generate Dialog Code...</source> <translation>Generar código de Diálogo...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="238"/> + <location filename="../Project/ProjectFormsBrowser.py" line="255"/> <source>Open in Qt-Designer</source> <translation>Abrir en Qt-Designer</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="240"/> - <source>Open in Editor</source> - <translation>Abrir en Editor</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="144"/> - <source>Preview form</source> - <translation>Previsualizar form</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="243"/> - <source>Preview translations</source> - <translation>Previsualizar traducciones</translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="257"/> + <source>Open in Editor</source> + <translation>Abrir en Editor</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="153"/> + <source>Preview form</source> + <translation>Previsualizar form</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="260"/> + <source>Preview translations</source> + <translation>Previsualizar traducciones</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="274"/> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="175"/> + <location filename="../Project/ProjectFormsBrowser.py" line="184"/> <source>Rename file</source> <translation>Renombrar archivo</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="288"/> - <source>Remove from project</source> - <translation>Quitar del proyecto</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="291"/> - <source>Delete</source> - <translation>Borrar</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="300"/> - <source>New form...</source> - <translation>Formulario nuevo...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="333"/> - <source>Add forms...</source> - <translation>Agregar formularios...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="335"/> - <source>Add forms directory...</source> - <translation>Agregar directorio de formularios...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="338"/> - <source>Expand all directories</source> - <translation>Expandir todos los directorios</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="340"/> - <source>Collapse all directories</source> - <translation>Contraer todos los directorios</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="247"/> - <source>Compile forms</source> - <translation>Compilar formularios</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> - <source>New Form</source> - <translation>Formulario nuevo</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="549"/> - <source>Select a form type:</source> - <translation>Seleccione un tipo de formulario:</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="563"/> - <source>Qt User-Interface Files (*.ui);;All Files (*)</source> - <translation>Archivos de Interfaz de Usuario (*.ui);;Todos los Archivos(*)</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="582"/> - <source>The file already exists! Overwrite it?</source> - <translation>¿El archivo ya existe! ¿Sobreescribirlo?</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> - <source>Delete forms</source> - <translation>Borrar formularios</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> - <source>Do you really want to delete these forms from the project?</source> - <translation>¿Realmente quiere borrar estos formularios del proyecto?</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> - <source>Form Compilation</source> - <translation>Compilación del Formulario</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="698"/> - <source>The compilation of the form file was successful.</source> - <translation>Se ha compilado satisfactoriamente el archivo de formulario.</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> - <source>The compilation of the form file failed.</source> - <translation>La compilación del archivo de formulario ha fallado.</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> - <source>Process Generation Error</source> - <translation>Error de Generación de Proceso</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="905"/> - <source>Compiling forms...</source> - <translation>Compilando formularios...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> - <source>Abort</source> - <translation>Abortar</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> - <source>Determining changed forms...</source> - <translation>Determinando que formularios han cambiado...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="972"/> - <source>Compiling changed forms...</source> - <translation>Compilando formularios que han cambiado...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="343"/> - <source>Configure...</source> - <translation>Configurar...</translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="309"/> + <source>Remove from project</source> + <translation>Quitar del proyecto</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="312"/> + <source>Delete</source> + <translation>Borrar</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="321"/> + <source>New form...</source> + <translation>Formulario nuevo...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="358"/> + <source>Add forms...</source> + <translation>Agregar formularios...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="360"/> + <source>Add forms directory...</source> + <translation>Agregar directorio de formularios...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="363"/> + <source>Expand all directories</source> + <translation>Expandir todos los directorios</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="365"/> + <source>Collapse all directories</source> + <translation>Contraer todos los directorios</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="264"/> + <source>Compile forms</source> + <translation>Compilar formularios</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> + <source>New Form</source> + <translation>Formulario nuevo</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="574"/> + <source>Select a form type:</source> + <translation>Seleccione un tipo de formulario:</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="588"/> + <source>Qt User-Interface Files (*.ui);;All Files (*)</source> + <translation>Archivos de Interfaz de Usuario (*.ui);;Todos los Archivos(*)</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="607"/> + <source>The file already exists! Overwrite it?</source> + <translation>¿El archivo ya existe! ¿Sobreescribirlo?</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> + <source>Delete forms</source> + <translation>Borrar formularios</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> + <source>Do you really want to delete these forms from the project?</source> + <translation>¿Realmente quiere borrar estos formularios del proyecto?</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> + <source>Form Compilation</source> + <translation>Compilación del Formulario</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="776"/> + <source>The compilation of the form file was successful.</source> + <translation>Se ha compilado satisfactoriamente el archivo de formulario.</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> + <source>The compilation of the form file failed.</source> + <translation>La compilación del archivo de formulario ha fallado.</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> + <source>Process Generation Error</source> + <translation>Error de Generación de Proceso</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="969"/> + <source>Compiling forms...</source> + <translation>Compilando formularios...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> + <source>Abort</source> + <translation>Abortar</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> + <source>Determining changed forms...</source> + <translation>Determinando que formularios han cambiado...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1036"/> + <source>Compiling changed forms...</source> + <translation>Compilando formularios que han cambiado...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="368"/> + <source>Configure...</source> + <translation>Configurar...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="330"/> <source>Copy Path to Clipboard</source> <translation>Copiar Ruta al Portapapeles</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation><p>El nuevo archivo de formulario <b>{0}</b> no ha podido ser creado.<br>Problema: {1}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="713"/> + <location filename="../Project/ProjectFormsBrowser.py" line="791"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation><p>La compilación del archivo de formulario ha fallado.</p><p>Causa: {0}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>No se ha podido ejecutar {0}.<br>Verifique que está en la ruta de búsqueda (search path).</translation> </message> @@ -52585,10 +52585,20 @@ <translation>QStackedWidget</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>%v/%m Forms</source> <translation>%v/%m Formularios</translation> </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>Configure uic Compiler</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>No project specific uic compiler flags are supported for PySide or PySide2.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectInterfacesBrowser</name> @@ -74065,6 +74075,44 @@ </message> </context> <context> + <name>UicCompilerOptionsDialog</name> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="14"/> + <source>uic Compiler Options</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="23"/> + <source>'import' Package</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="29"/> + <source>Enter the package name</source> + <translation type="unfinished">Introducir nombre de paquete</translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="36"/> + <source><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="49"/> + <source>Resources Suffix</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="55"/> + <source>Enter the suffix of compiled resource files (default: _rc)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="62"/> + <source><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>UnittestDialog</name> <message> <location filename="../PyUnit/UnittestDialog.py" line="405"/> @@ -83949,22 +83997,22 @@ <translation>No hay sugerencias</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1871"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> <source>Web Archive (*.mhtml *.mht)</source> <translation>Archivo Web (*.mhtml *.mht)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1872"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1874"/> <source>HTML File (*.html *.htm)</source> <translation>Archivo HTML (*.html *.htm)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1875"/> <source>HTML File with all resources (*.html *.htm)</source> <translation>Archivo HTML con todos los recursos (*.html *.htm)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1897"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1899"/> <source>Save Web Page</source> <translation>Guardar Página Web</translation> </message> @@ -83974,22 +84022,22 @@ <translation>Página en Blanco</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source>Quota Request</source> <translation>Solicitud de Cuota</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <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> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source>Protocol Handler Request</source> <translation>Solicitud del Gestor de Protocolo</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source><p> Allow the website at <b>{0}</b> to open all <b>{1}</b> links?</p></source> <translation><p> ¿Permitir al sitio web <b>{0}</b> abrir todos los links <b>{1}</b> ?</p></translation> </message>
--- a/i18n/eric6_fr.ts Wed Nov 21 19:26:59 2018 +0100 +++ b/i18n/eric6_fr.ts Sat Nov 24 15:37:04 2018 +0100 @@ -5538,12 +5538,12 @@ <translation>Filtrer &avec:</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source>Code Generation</source> <translation>Génération de code</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source>uic error</source> <translation>erreur uic</translation> </message> @@ -5558,27 +5558,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="618"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="654"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="208"/> <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> <translation type="unfinished"></translation> </message> @@ -51734,492 +51734,492 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source>Read project file</source> <translation>Lire un fichier projet</translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source>Save project file</source> <translation>Enregistrer le fichier projet</translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source>Read project session</source> <translation>Lire la session du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="1232"/> + <location filename="../Project/Project.py" line="1237"/> <source>Please save the project first.</source> <translation>Prière d'enregistrer votre projet d'abord.</translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source>Save project session</source> <translation>Enregistrer la session</translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>Add Language</source> <translation>Ajouter une langue</translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source>Delete translation</source> <translation>Supprimer la traduction</translation> </message> <message> - <location filename="../Project/Project.py" line="1659"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add file</source> <translation>Ajouter un fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="1789"/> + <location filename="../Project/Project.py" line="1794"/> <source>The target directory must not be empty.</source> <translation>Le répertoire cible ne doit pas être vide.</translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>Add directory</source> <translation>Ajouter un répertoire</translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>The source directory must not be empty.</source> <translation>Le répertoire source ne doit pas être vide.</translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source>Delete file</source> <translation>Suppression de fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source>Create project directory</source> <translation>Création d'un répertoire projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>New project</source> <translation>Nouveau projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> + <location filename="../Project/Project.py" line="3783"/> <source>Open project</source> <translation>Ouvir un projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save project as</source> <translation>Enregistrer le projet sous</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source>Save File</source> <translation>Enregistrer Fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>Close Project</source> <translation>Fermer le projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>The current project has unsaved changes.</source> <translation>Le projet courant a des modifications non enregistrées.</translation> </message> <message> - <location filename="../Project/Project.py" line="3995"/> + <location filename="../Project/Project.py" line="4000"/> <source>&Save</source> <translation>&Enregistrer</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>&New...</source> - <translation>&Nouveau...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3769"/> + <source>&New...</source> + <translation>&Nouveau...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3774"/> <source>Generate a new project</source> <translation>Génerer un nouveau projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3770"/> + <location filename="../Project/Project.py" line="3775"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nouveau...</b><p>Ouvre une boite de dialogue pour entrer les paramètres d'un nouveau projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>&Open...</source> - <translation>&Ouvrir...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3783"/> + <source>&Open...</source> + <translation>&Ouvrir...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3788"/> <source>Open an existing project</source> <translation>Ouvrir un projet existant</translation> </message> <message> - <location filename="../Project/Project.py" line="3784"/> + <location filename="../Project/Project.py" line="3789"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Ouvrir...</b><p>Ouvre un projet existant.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> - <source>Close project</source> - <translation>Fermer le projet</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3791"/> - <source>&Close</source> - <translation>&Fermer</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3795"/> - <source>Close the current project</source> - <translation>Fermer le projet en cours</translation> - </message> - <message> <location filename="../Project/Project.py" line="3796"/> + <source>Close project</source> + <translation>Fermer le projet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> + <source>&Close</source> + <translation>&Fermer</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3800"/> + <source>Close the current project</source> + <translation>Fermer le projet en cours</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3801"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Fermer</b><p>Ferme le projet en cours.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> - <source>Save project</source> - <translation>Enregistrer le projet</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Save the current project</source> - <translation>Enregistre le projet courant</translation> - </message> - <message> <location filename="../Project/Project.py" line="3808"/> + <source>Save project</source> + <translation>Enregistrer le projet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3812"/> + <source>Save the current project</source> + <translation>Enregistre le projet courant</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3813"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Enregistrer</b><p>Enregistre le projet en cours.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save &as...</source> <translation>&Enregistrer sous...</translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> + <location filename="../Project/Project.py" line="3824"/> <source>Save the current project to a new file</source> <translation>Enregistre le projet en cours dans un nouveau fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> + <location filename="../Project/Project.py" line="3826"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Enregistrer sous</b><p>Enregistre le projet en cours dans un nouveau fichier.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add translation to project</source> - <translation>Ajouter une traduction au projet</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add &translation...</source> - <translation>Ajouter une &traduction...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3866"/> + <source>Add translation to project</source> + <translation>Ajouter une traduction au projet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3866"/> + <source>Add &translation...</source> + <translation>Ajouter une &traduction...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source>Add a translation to the current project</source> <translation>Ajoute une traduction au projet en cours</translation> </message> <message> - <location filename="../Project/Project.py" line="3868"/> + <location filename="../Project/Project.py" line="3873"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Ajouter une traduction...</b><p>Ouvre une boite de dialogue pour ajouter une traduction au projet courant.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Search new files</source> <translation>Rechercher des nouveaux fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Searc&h new files...</source> <translation>Re&chercher des nouveaux fichiers...</translation> </message> <message> - <location filename="../Project/Project.py" line="3880"/> + <location filename="../Project/Project.py" line="3885"/> <source>Search new files in the project directory.</source> <translation>Recherche des nouveaux fichiers dans le répertoire du projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> + <location filename="../Project/Project.py" line="3911"/> <source>Project properties</source> <translation>Propriétés du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> - <source>&Properties...</source> - <translation>&Propriétés...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3911"/> + <source>&Properties...</source> + <translation>&Propriétés...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3916"/> <source>Show the project properties</source> <translation>Affiche les propriétés du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3917"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Propriétés...</b><p>Affiche une boite de dialogue pour éditer les propriétés du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4034"/> - <source>Load session</source> - <translation>Charger la session</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4038"/> - <source>Load the projects session file.</source> - <translation>Charge le fichier de session du projet.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4039"/> + <source>Load session</source> + <translation>Charger la session</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4043"/> + <source>Load the projects session file.</source> + <translation>Charge le fichier de session du projet.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4044"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Charger la session</b><p>Charge le fichier session du projet. Une session est constituée par les données suivantes.<br>- tous les fichiers open source<br>- tous les points d'arrêts<br>- les arguments de ligne de commande<br>- le répertoire de travail<br>- le flag de rapport d'exception</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4052"/> - <source>Save session</source> - <translation>Enregistrer la session</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4056"/> - <source>Save the projects session file.</source> - <translation>Enregistre le fichier de session du projet.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4057"/> + <source>Save session</source> + <translation>Enregistrer la session</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4061"/> + <source>Save the projects session file.</source> + <translation>Enregistre le fichier de session du projet.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4062"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Enregistrer la session</b><p>Enregistrer le fichier session du projet. Une session est constituée par les données suivantes.<br>- tous les fichiers open source<br>- tous les points d'arrêts<br>- les arguments de ligne de commande<br>- le répertoire de travail<br>- le flag de rapport d'exception</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>Code Metrics</source> <translation>Statistiques du code</translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>&Code Metrics...</source> <translation>Statistiques du &Code...</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4093"/> <source>Show some code metrics for the project.</source> <translation>Affiche des statistiques sur le code du projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="4090"/> + <location filename="../Project/Project.py" line="4095"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Statistiques du Code...</b><p>Affiche des statistiques sur le code de tous les fichiers Python du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Python Code Coverage</source> <translation> Code Coverage Python</translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Code Co&verage...</source> <translation>Code Co&verage...</translation> </message> <message> - <location filename="../Project/Project.py" line="4102"/> + <location filename="../Project/Project.py" line="4107"/> <source>Show code coverage information for the project.</source> <translation>Affiche les informations de code coverage pour le projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="4104"/> + <location filename="../Project/Project.py" line="4109"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Code Coverage...</b><p>Affiche les informations de code coverage pour le projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Profile Data</source> <translation>Profiling des données</translation> </message> <message> - <location filename="../Project/Project.py" line="4112"/> + <location filename="../Project/Project.py" line="4117"/> <source>&Profile Data...</source> <translation>&Profiling des données...</translation> </message> <message> - <location filename="../Project/Project.py" line="4116"/> + <location filename="../Project/Project.py" line="4121"/> <source>Show profiling data for the project.</source> <translation>Affiche le profiling des données du projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="4118"/> + <location filename="../Project/Project.py" line="4123"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profilling des données...</b><p>Affiche le profiling des données du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Application Diagram</source> <translation>Diagramme de l'application</translation> </message> <message> - <location filename="../Project/Project.py" line="4127"/> + <location filename="../Project/Project.py" line="4132"/> <source>&Application Diagram...</source> <translation>&Diagramme de l'application...</translation> </message> <message> - <location filename="../Project/Project.py" line="4131"/> + <location filename="../Project/Project.py" line="4136"/> <source>Show a diagram of the project.</source> <translation>Affiche le diagramme de l'application.</translation> </message> <message> - <location filename="../Project/Project.py" line="4133"/> + <location filename="../Project/Project.py" line="4138"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagramme de l'application...</b><p>Affiche le diagramme du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4258"/> - <source>Open &Recent Projects</source> - <translation>Ouvrir un projet &récent</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4266"/> - <source>&Diagrams</source> - <translation>&Diagrammes</translation> - </message> - <message> <location filename="../Project/Project.py" line="4263"/> - <source>Chec&k</source> - <translation>&Vérification</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4259"/> - <source>&Version Control</source> - <translation>&Contrôle de version</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4265"/> - <source>Sho&w</source> - <translation>&Affichage</translation> + <source>Open &Recent Projects</source> + <translation>Ouvrir un projet &récent</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4271"/> + <source>&Diagrams</source> + <translation>&Diagrammes</translation> </message> <message> <location filename="../Project/Project.py" line="4268"/> + <source>Chec&k</source> + <translation>&Vérification</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4264"/> + <source>&Version Control</source> + <translation>&Contrôle de version</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4270"/> + <source>Sho&w</source> + <translation>&Affichage</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4273"/> <source>Source &Documentation</source> <translation>&Documentation automatique</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>Search New Files</source> <translation>Rechercher des nouveaux fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>There were no new files found to be added.</source> <translation>Aucun fichier à ajouter n'a été trouvé.</translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source>Version Control System</source> <translation>Système de conrôle des versions (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="4893"/> + <location filename="../Project/Project.py" line="4898"/> <source>Coverage Data</source> <translation>Coverage de données</translation> </message> <message> - <location filename="../Project/Project.py" line="4943"/> + <location filename="../Project/Project.py" line="4948"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation> </message> <message> - <location filename="../Project/Project.py" line="1937"/> + <location filename="../Project/Project.py" line="1942"/> <source>Rename file</source> <translation>Renommer le fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source>Rename File</source> <translation>Renommer le fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>New Project</source> <translation>Nouveau projet</translation> </message> <message> - <location filename="../Project/Project.py" line="2436"/> + <location filename="../Project/Project.py" line="2441"/> <source>Add existing files to the project?</source> <translation>Ajouter des fichiers existant au projet ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2555"/> + <location filename="../Project/Project.py" line="2560"/> <source>Would you like to edit the VCS command options?</source> <translation>Voulez-vous éditer les options de commande VCS ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2503"/> + <location filename="../Project/Project.py" line="2508"/> <source>Shall the project file be added to the repository?</source> <translation>Le fichier projet doit-il être ajouté au référentiel?</translation> </message> <message> - <location filename="../Project/Project.py" line="2527"/> + <location filename="../Project/Project.py" line="2532"/> <source>Select version control system for the project</source> <translation>Sélectionner un système de contrôle de version (VCS) pour le projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory to project</source> - <translation>Ajouter un répertoire au projet</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory...</source> - <translation>Ajouter un répertoire...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3851"/> + <source>Add directory to project</source> + <translation>Ajouter un répertoire au projet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3851"/> + <source>Add directory...</source> + <translation>Ajouter un répertoire...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3856"/> <source>Add a directory to the current project</source> <translation>Ajouter un répertoire au projet courant</translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> + <location filename="../Project/Project.py" line="3858"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Ajouter un répertoire...</b><p>Ouvre une fenêtre pour ajouter un répertoire au projet courant.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Code Coverage</source> <translation>Code Coverage</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Please select a coverage file</source> <translation>Sélectionner un fichier coverage</translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Please select a profile file</source> <translation>Sélectionner un fichier profile</translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source>Delete project session</source> <translation>Supprime la session de projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4070"/> - <source>Delete session</source> - <translation>Supprimer la session</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4074"/> - <source>Delete the projects session file.</source> - <translation>Suppression du fichier session de projet.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4075"/> + <source>Delete session</source> + <translation>Supprimer la session</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4079"/> + <source>Delete the projects session file.</source> + <translation>Suppression du fichier session de projet.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4080"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Suppression de session</b><p>Ceci supprime le fichier session de projet.</p></translation> </message> @@ -52244,157 +52244,157 @@ <translation>Autre</translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Include module names?</source> <translation>Inclure les noms de modules ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source>Delete directory</source> <translation>Suppression répertoire</translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source>Read tasks</source> <translation>Tâches lues</translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source>Save tasks</source> <translation>Tâches enregistrées</translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source>Read debugger properties</source> <translation>Lecture des propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source>Save debugger properties</source> <translation>Enregistrement des propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source>Delete debugger properties</source> <translation>Suppression des propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> + <location filename="../Project/Project.py" line="3975"/> <source>Debugger Properties</source> <translation>Propriétés du Débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger &Properties...</source> - <translation>Débogueur & Propriétés...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3974"/> - <source>Show the debugger properties</source> - <translation>Affichage des propriétés du débogueur</translation> - </message> - <message> <location filename="../Project/Project.py" line="3975"/> + <source>Debugger &Properties...</source> + <translation>Débogueur & Propriétés...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3979"/> + <source>Show the debugger properties</source> + <translation>Affichage des propriétés du débogueur</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3980"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Propriétés du Débogueur...</b><p>Affiche une boite de dialogue permettant d'éditer les proprités du débogueur, spécifiques au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> + <location filename="../Project/Project.py" line="3988"/> <source>Load</source> <translation>Charger</translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> - <source>&Load</source> - <translation>&Charger</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3987"/> - <source>Load the debugger properties</source> - <translation>Charger les propriétés du débogueur</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3995"/> - <source>Save</source> - <translation>Enregistrer</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3999"/> - <source>Save the debugger properties</source> - <translation>Enregistrer les propriétés du débogueur</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>Delete</source> - <translation>Supprimer</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>&Delete</source> - <translation>&Supprimer</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4011"/> - <source>Delete the debugger properties</source> - <translation>Supprimer les propriétés du débogueur</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4020"/> - <source>Reset</source> - <translation>Réinitialiser</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4020"/> - <source>&Reset</source> - <translation>&Réinitialiser</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4024"/> - <source>Reset the debugger properties</source> - <translation>Réinitialise des propriétés du débogueur</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4270"/> - <source>Debugger</source> - <translation>Débogueur</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4267"/> - <source>Session</source> - <translation>Session</translation> - </message> - <message> <location filename="../Project/Project.py" line="3988"/> - <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> - <translation><b>Chargement des Propriétés du Débogueur</b><p>Charge la configuration du débogueur spécifique au projet.</p></translation> + <source>&Load</source> + <translation>&Charger</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3992"/> + <source>Load the debugger properties</source> + <translation>Charger les propriétés du débogueur</translation> </message> <message> <location filename="../Project/Project.py" line="4000"/> - <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> - <translation><b>Enregistrement des Propriétés du Débogueur</b><p>Enregistre la configuration du débogueur spécifique au projet.</p></translation> + <source>Save</source> + <translation>Enregistrer</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4004"/> + <source>Save the debugger properties</source> + <translation>Enregistrer les propriétés du débogueur</translation> </message> <message> <location filename="../Project/Project.py" line="4012"/> - <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> - <translation><b>Suppression des Propriétés du Débogueur...</b><p>Supprime la configuration du débogueur spécifique au projet.</p></translation> + <source>Delete</source> + <translation>Supprimer</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4012"/> + <source>&Delete</source> + <translation>&Supprimer</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4016"/> + <source>Delete the debugger properties</source> + <translation>Supprimer les propriétés du débogueur</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4025"/> + <source>Reset</source> + <translation>Réinitialiser</translation> </message> <message> <location filename="../Project/Project.py" line="4025"/> + <source>&Reset</source> + <translation>&Réinitialiser</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4029"/> + <source>Reset the debugger properties</source> + <translation>Réinitialise des propriétés du débogueur</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4275"/> + <source>Debugger</source> + <translation>Débogueur</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4272"/> + <source>Session</source> + <translation>Session</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3993"/> + <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> + <translation><b>Chargement des Propriétés du Débogueur</b><p>Charge la configuration du débogueur spécifique au projet.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4005"/> + <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> + <translation><b>Enregistrement des Propriétés du Débogueur</b><p>Enregistre la configuration du débogueur spécifique au projet.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4017"/> + <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> + <translation><b>Suppression des Propriétés du Débogueur...</b><p>Supprime la configuration du débogueur spécifique au projet.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4030"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Réinitialiser les propriétés du débogueur</b><p>Réinitialise la configuration du débogueur spécifique au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations</source> <translation>Association des types de fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations...</source> <translation>Association des types de fichiers...</translation> </message> <message> - <location filename="../Project/Project.py" line="3938"/> + <location filename="../Project/Project.py" line="3943"/> <source>Show the project filetype associations</source> <translation>Affiche les asociation Fichier/Type de fichier pour le projet</translation> </message> @@ -52404,87 +52404,87 @@ <translation type="obsolete"><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4271"/> + <location filename="../Project/Project.py" line="4276"/> <source>Pac&kagers</source> <translation>Création de pac&kage</translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> + <location filename="../Project/Project.py" line="3835"/> <source>Add files to project</source> <translation>Ajouter des fichiers au projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add &files...</source> - <translation>Ajouter des &fichiers...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3835"/> + <source>Add &files...</source> + <translation>Ajouter des &fichiers...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3840"/> <source>Add files to the current project</source> <translation>Ajouter des fichiers au projet courant</translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> + <location filename="../Project/Project.py" line="3842"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Ajouter des fichiers...</b><p>Ouvre une boite de dialogue pour ajouter des fichiers au projet courant. La position pour l'insertion est déterminée par l'extension du fichier.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3057"/> + <location filename="../Project/Project.py" line="3062"/> <source>Project Files (*.e4p)</source> <translation>Fichiers projets (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="4257"/> + <location filename="../Project/Project.py" line="4262"/> <source>&Project</source> <translation>&Projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4390"/> + <location filename="../Project/Project.py" line="4395"/> <source>Project</source> <translation>Projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4456"/> + <location filename="../Project/Project.py" line="4461"/> <source>&Clear</source> <translation>&Effacer</translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source>Read user project properties</source> <translation>Lire les propriétés utilisateur du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source>Save user project properties</source> <translation>Enregistrer les propriétés utilisateur du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> - <source>User project properties</source> - <translation>Propriétés utilisateur du projet</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3919"/> - <source>&User Properties...</source> - <translation>Propriétés &Utilisateur...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3924"/> + <source>User project properties</source> + <translation>Propriétés utilisateur du projet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3924"/> + <source>&User Properties...</source> + <translation>Propriétés &Utilisateur...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3929"/> <source>Show the user specific project properties</source> <translation>Afficher le propriétés utilisateurs spécifiques au projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3926"/> + <location filename="../Project/Project.py" line="3931"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Propriétés utilisateur...</b><p>Affiche une fenêtre permettant d'éditer les propriétés du projet spécifiques à l'utilisateur.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>Syntax errors detected</source> <translation>Erreurs de syntaxe détectées</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Le projet contient %n fichier avec des erreurs de syntaxe.</numerusform> @@ -52492,22 +52492,22 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source>Create Package List</source> <translation>Création de la liste de package</translation> </message> <message> - <location filename="../Project/Project.py" line="4156"/> + <location filename="../Project/Project.py" line="4161"/> <source>Create &Package List</source> <translation type="unfinished">Création de l'&archive du plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source>Create Plugin Archive</source> <translation>Création de l'archive du plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="5165"/> + <location filename="../Project/Project.py" line="5170"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Le fichier <b>PKGLIST</b> existe déjà.</p><p>Ecraser ?</p></translation> </message> @@ -52517,22 +52517,22 @@ <translation type="obsolete"><p>Le fichier <b>PKGLIST</b> n'existe pas. Abandon...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5233"/> + <location filename="../Project/Project.py" line="5238"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Le projet n'a pas de script principal défini. Abandon...</translation> </message> <message> - <location filename="../Project/Project.py" line="1690"/> + <location filename="../Project/Project.py" line="1695"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>Le répertoire source ne contient aucun fichier correspondant à la catégorie sélectionnée.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>Select Version Control System</source> <translation>Sélectionner un système de contrôle de version</translation> </message> <message> - <location filename="../Project/Project.py" line="2534"/> + <location filename="../Project/Project.py" line="2539"/> <source>None</source> <translation>Auncun</translation> </message> @@ -52542,42 +52542,42 @@ <translation>Enregistrement du type de projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4172"/> + <location filename="../Project/Project.py" line="4177"/> <source>Create Plugin &Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>You have to specify a translation pattern first.</source> <translation>Vous devez d'abord spécifier un pattern de traduction.</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Translation Pattern</source> <translation>Pattern de traduction</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Entrer le pattern pour les fichiers de traduction (utiliser la balise '%language%' à la place de la langue à utiliser):</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations</source> <translation>Association des types de fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations...</source> <translation>Association des types de fichiers...</translation> </message> <message> - <location filename="../Project/Project.py" line="3956"/> + <location filename="../Project/Project.py" line="3961"/> <source>Show the project lexer associations (overriding defaults)</source> <translation>Affiche les asociations Fichier/Type de fichier pour le projet (sans tenir compte des valeurs par défaut)</translation> </message> <message> - <location filename="../Project/Project.py" line="3958"/> + <location filename="../Project/Project.py" line="3963"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Associations des types de fichiers...</b><p>Permet d'associer les types de fichiers aux analyseurs syntaxiques pour le projet en cours. Ces associations sont prioritaires sur les associations de fichiers configurées par défaut.</p></translation> </message> @@ -52597,112 +52597,112 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1721"/> + <location filename="../Project/Project.py" line="1726"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Le fichier <b>{0}</b>existe déjà. Écraser ?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5375"/> + <location filename="../Project/Project.py" line="5380"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5449"/> + <location filename="../Project/Project.py" line="5454"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1646"/> + <location filename="../Project/Project.py" line="1651"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1703"/> + <location filename="../Project/Project.py" line="1708"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -52712,32 +52712,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>Load Diagram</source> <translation type="unfinished">Charger le diagramme</translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4145"/> + <location filename="../Project/Project.py" line="4150"/> <source>Load a diagram from file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4147"/> + <location filename="../Project/Project.py" line="4152"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> @@ -52767,37 +52767,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4753"/> + <location filename="../Project/Project.py" line="4758"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4161"/> + <location filename="../Project/Project.py" line="4166"/> <source>Create an initial PKGLIST file for an eric6 plugin.</source> <translation type="unfinished">Créé le fichier d'archive pour un plugin eric4. {5 ?} {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4163"/> + <location filename="../Project/Project.py" line="4168"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"><b>Création de l'archive du plugin</b><p>Ceci créé une archive contenant l'ensemble des fichiers indiqués dans le fichier PKGLIST. Le nom de l'archive est construit à partir du nom du script principal.</p> {5 ?} {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4177"/> + <location filename="../Project/Project.py" line="4182"/> <source>Create eric6 plugin archive files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4179"/> + <location filename="../Project/Project.py" line="4184"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5340"/> + <location filename="../Project/Project.py" line="5345"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -52817,83 +52817,83 @@ <translation type="unfinished">Plugin Eric4 {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3897"/> + <location filename="../Project/Project.py" line="3902"/> <source>Search for a file in the project list of files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3904"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5269"/> + <location filename="../Project/Project.py" line="5274"/> <source>Create Plugin Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (&Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4199"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4196"/> + <location filename="../Project/Project.py" line="4201"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5247"/> + <location filename="../Project/Project.py" line="5252"/> <source>Select package lists:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Creating plugin archives...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>%v/%m Archives</source> <translation type="unfinished"></translation> </message> @@ -52903,132 +52903,132 @@ <translation type="obsolete">Coverage</translation> </message> <message> - <location filename="../Project/Project.py" line="5282"/> + <location filename="../Project/Project.py" line="5287"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5394"/> + <location filename="../Project/Project.py" line="5399"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5397"/> + <location filename="../Project/Project.py" line="5402"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5258"/> + <location filename="../Project/Project.py" line="5263"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5312"/> + <location filename="../Project/Project.py" line="5317"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3882"/> + <location filename="../Project/Project.py" line="3887"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3940"/> + <location filename="../Project/Project.py" line="3945"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source>Create Makefile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4210"/> + <location filename="../Project/Project.py" line="4215"/> <source>&Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4214"/> + <location filename="../Project/Project.py" line="4219"/> <source>Perform a 'make' run.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4216"/> + <location filename="../Project/Project.py" line="4221"/> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5654"/> + <location filename="../Project/Project.py" line="5659"/> <source>Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4229"/> <source>&Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4228"/> + <location filename="../Project/Project.py" line="4233"/> <source>Question 'make', if a rebuild is needed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4230"/> + <location filename="../Project/Project.py" line="4235"/> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4272"/> + <location filename="../Project/Project.py" line="4277"/> <source>Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5602"/> + <location filename="../Project/Project.py" line="5607"/> <source>The make process did not start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5647"/> + <location filename="../Project/Project.py" line="5652"/> <source>The make process crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5657"/> - <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="5662"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5667"/> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>The makefile contains errors.</source> <translation type="unfinished"></translation> </message> @@ -53288,7 +53288,7 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="947"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1011"/> <source>Forms</source> <translation>Feuilles du projet</translation> </message> @@ -53318,127 +53318,127 @@ <translation>Boite de dialogue avec Boutons (à droite)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="149"/> + <location filename="../Project/ProjectFormsBrowser.py" line="158"/> <source>Compile form</source> <translation>Compiler la feuille</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="327"/> + <location filename="../Project/ProjectFormsBrowser.py" line="352"/> <source>Compile all forms</source> <translation>Compiler toutes les feuilles</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="238"/> + <location filename="../Project/ProjectFormsBrowser.py" line="255"/> <source>Open in Qt-Designer</source> <translation>Ouvrir dans Qt-Designer</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="288"/> + <location filename="../Project/ProjectFormsBrowser.py" line="309"/> <source>Remove from project</source> <translation>Supprimer du projet</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="291"/> + <location filename="../Project/ProjectFormsBrowser.py" line="312"/> <source>Delete</source> <translation>Supprimer</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="300"/> + <location filename="../Project/ProjectFormsBrowser.py" line="321"/> <source>New form...</source> <translation>Nouvelle feuille...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="335"/> + <location filename="../Project/ProjectFormsBrowser.py" line="360"/> <source>Add forms directory...</source> <translation>Ajouter un répertoire de feuilles...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="338"/> + <location filename="../Project/ProjectFormsBrowser.py" line="363"/> <source>Expand all directories</source> <translation>Déployer tous les répertoires</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="340"/> + <location filename="../Project/ProjectFormsBrowser.py" line="365"/> <source>Collapse all directories</source> <translation>Contracter tous les répertoires</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source>New Form</source> <translation>Nouvelle feuille</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="549"/> + <location filename="../Project/ProjectFormsBrowser.py" line="574"/> <source>Select a form type:</source> <translation>Sélectionner un type de feuille:</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>Form Compilation</source> <translation>Compilation</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="698"/> + <location filename="../Project/ProjectFormsBrowser.py" line="776"/> <source>The compilation of the form file was successful.</source> <translation>La compilation de la feuille a réussi.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>The compilation of the form file failed.</source> <translation>La compilation de la feuille a échoué.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="905"/> + <location filename="../Project/ProjectFormsBrowser.py" line="969"/> <source>Compiling forms...</source> <translation>Compilation des feuilles...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Abort</source> <translation>Abandon</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="240"/> + <location filename="../Project/ProjectFormsBrowser.py" line="257"/> <source>Open in Editor</source> <translation>Ouvrir dans l'éditeur</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="175"/> + <location filename="../Project/ProjectFormsBrowser.py" line="184"/> <source>Rename file</source> <translation>Renommer le fichier</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="247"/> + <location filename="../Project/ProjectFormsBrowser.py" line="264"/> <source>Compile forms</source> <translation>Compiler les feuilles</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Delete forms</source> <translation>Supprimer les feuilles</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Do you really want to delete these forms from the project?</source> <translation>Voulez-vous vraiment supprimer ces feuilles du projet?</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="144"/> + <location filename="../Project/ProjectFormsBrowser.py" line="153"/> <source>Preview form</source> <translation>Apercu feuille</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="243"/> + <location filename="../Project/ProjectFormsBrowser.py" line="260"/> <source>Preview translations</source> <translation>Apercu des traductions</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="333"/> + <location filename="../Project/ProjectFormsBrowser.py" line="358"/> <source>Add forms...</source> <translation>Ajouter des feuilles...</translation> </message> @@ -53453,17 +53453,17 @@ <translation>Boite de dialogue avec boutons (Bas-Centre)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Determining changed forms...</source> <translation>Détermination des feuilles modifiées...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="972"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1036"/> <source>Compiling changed forms...</source> <translation>Compilation des feuilles modifiées...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="582"/> + <location filename="../Project/ProjectFormsBrowser.py" line="607"/> <source>The file already exists! Overwrite it?</source> <translation>Le fichier existe déjà! Ecraser ?</translation> </message> @@ -53478,42 +53478,42 @@ <translation>Boite de dialogue avec Boutons (à droite)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="160"/> + <location filename="../Project/ProjectFormsBrowser.py" line="169"/> <source>Generate Dialog Code...</source> <translation>Générateur de code...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="257"/> + <location filename="../Project/ProjectFormsBrowser.py" line="274"/> <source>Open</source> <translation>Ouvrir</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="563"/> + <location filename="../Project/ProjectFormsBrowser.py" line="588"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>Fichiers Qt User-Interface (*.ui);;Tous fichiers(*)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="343"/> + <location filename="../Project/ProjectFormsBrowser.py" line="368"/> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="309"/> + <location filename="../Project/ProjectFormsBrowser.py" line="330"/> <source>Copy Path to Clipboard</source> <translation type="unfinished">Copier chemin dans le Presse-Papiers</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="713"/> + <location filename="../Project/ProjectFormsBrowser.py" line="791"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> @@ -53568,10 +53568,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>%v/%m Forms</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>Configure uic Compiler</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>No project specific uic compiler flags are supported for PySide or PySide2.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectInterfacesBrowser</name> @@ -75401,6 +75411,44 @@ </message> </context> <context> + <name>UicCompilerOptionsDialog</name> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="14"/> + <source>uic Compiler Options</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="23"/> + <source>'import' Package</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="29"/> + <source>Enter the package name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="36"/> + <source><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="49"/> + <source>Resources Suffix</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="55"/> + <source>Enter the suffix of compiled resource files (default: _rc)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="62"/> + <source><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>UnittestDialog</name> <message> <location filename="../PyUnit/UnittestDialog.py" line="405"/> @@ -85294,22 +85342,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1871"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> <source>Web Archive (*.mhtml *.mht)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1872"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1874"/> <source>HTML File (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1875"/> <source>HTML File with all resources (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1897"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1899"/> <source>Save Web Page</source> <translation type="unfinished"></translation> </message> @@ -85319,22 +85367,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source>Quota Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source>Protocol Handler Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source><p> Allow the website at <b>{0}</b> to open all <b>{1}</b> links?</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_it.ts Wed Nov 21 19:26:59 2018 +0100 +++ b/i18n/eric6_it.ts Sat Nov 24 15:37:04 2018 +0100 @@ -5441,12 +5441,12 @@ <translation>&Filtra con:</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source>Code Generation</source> <translation>Generazione del codice</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source>uic error</source> <translation>errore uic</translation> </message> @@ -5461,27 +5461,27 @@ <translation>Il file <b>{0}</b> esiste ma non contiene nessuna classe.</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p>C'è un errore nel caricamento del form<b>{0}</b>.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="618"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Non posso aprire il file del modello del codice "{0}".<p><p>Ragione: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="654"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Non posso aprire il file sorgente "{0}".</p><p>Ragione: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Non posso scrivere il file sorgente "{0}".</p><p>Ragione: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="208"/> <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> <translation type="unfinished"></translation> </message> @@ -51051,492 +51051,492 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source>Read project file</source> <translation>Leggi file progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source>Save project file</source> <translation>Salva file progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source>Read project session</source> <translation>Leggi sessione del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="1232"/> + <location filename="../Project/Project.py" line="1237"/> <source>Please save the project first.</source> <translation>Prima salvare il progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source>Save project session</source> <translation>Salva sessione di progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>Add Language</source> <translation>Aggiungi Lingua</translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source>Delete translation</source> <translation>Cancella traduzione</translation> </message> <message> - <location filename="../Project/Project.py" line="1659"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add file</source> <translation>Aggiungi file</translation> </message> <message> - <location filename="../Project/Project.py" line="1789"/> + <location filename="../Project/Project.py" line="1794"/> <source>The target directory must not be empty.</source> <translation>La directory di destinazione non deve essere vuota.</translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>Add directory</source> <translation>Aggiungi directory</translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>The source directory must not be empty.</source> <translation>La directory sorgente non deve essere vuota.</translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source>Delete file</source> <translation>Cancella file</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source>Create project directory</source> <translation>Crea la directory del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>New project</source> <translation>Nuovo progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> + <location filename="../Project/Project.py" line="3783"/> <source>Open project</source> <translation>Apri progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save project as</source> <translation>Salva progetto come</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source>Save File</source> <translation>Salva file</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>Close Project</source> <translation>Chiudi progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>The current project has unsaved changes.</source> <translation>Il progetto attuale ha delle modifiche non salvate.</translation> </message> <message> - <location filename="../Project/Project.py" line="3995"/> + <location filename="../Project/Project.py" line="4000"/> <source>&Save</source> <translation>&Salva</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>&New...</source> - <translation>&Nuovo...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3769"/> + <source>&New...</source> + <translation>&Nuovo...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3774"/> <source>Generate a new project</source> <translation>Genera un nuovo progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3770"/> + <location filename="../Project/Project.py" line="3775"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nuovo...</b><p>Apre un dialogo per l'inserimento delle informazioni per un nuovo progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>&Open...</source> - <translation>&Apri...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3783"/> + <source>&Open...</source> + <translation>&Apri...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3788"/> <source>Open an existing project</source> <translation>Apri un progetto esistente</translation> </message> <message> - <location filename="../Project/Project.py" line="3784"/> + <location filename="../Project/Project.py" line="3789"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Apri...</b><p>Apre un progetto esistente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> - <source>Close project</source> - <translation>Chiudi progetto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3791"/> - <source>&Close</source> - <translation>&Chiudi</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3795"/> - <source>Close the current project</source> - <translation>Chiudi il progetto corrente</translation> - </message> - <message> <location filename="../Project/Project.py" line="3796"/> + <source>Close project</source> + <translation>Chiudi progetto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> + <source>&Close</source> + <translation>&Chiudi</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3800"/> + <source>Close the current project</source> + <translation>Chiudi il progetto corrente</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3801"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Chiudi</b><p>Chiude l'attuale progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> - <source>Save project</source> - <translation>Salva progetto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Save the current project</source> - <translation>Salva il progetto corrente</translation> - </message> - <message> <location filename="../Project/Project.py" line="3808"/> + <source>Save project</source> + <translation>Salva progetto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3812"/> + <source>Save the current project</source> + <translation>Salva il progetto corrente</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3813"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Salva</b><p>Salva l'attuale progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save &as...</source> <translation>S&alva come...</translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> + <location filename="../Project/Project.py" line="3824"/> <source>Save the current project to a new file</source> <translation>Salva il progetto attuale come un nuovo file</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> + <location filename="../Project/Project.py" line="3826"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Salva as </b><p>Salva l'attuale progetto come nuovo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add translation to project</source> - <translation>Aggiungi le traduzioni al progetto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add &translation...</source> - <translation>Aggiungi &traduzione...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3866"/> + <source>Add translation to project</source> + <translation>Aggiungi le traduzioni al progetto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3866"/> + <source>Add &translation...</source> + <translation>Aggiungi &traduzione...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source>Add a translation to the current project</source> <translation>Aggiungi le traduzioni al progetto corrente</translation> </message> <message> - <location filename="../Project/Project.py" line="3868"/> + <location filename="../Project/Project.py" line="3873"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Aggiungi traduzione...</b><p>Apre un dialogo per aggiungere una traduzione al progetto corrente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Search new files</source> <translation>Cerca nuovi file</translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Searc&h new files...</source> <translation>Cerca &nuovi file...</translation> </message> <message> - <location filename="../Project/Project.py" line="3880"/> + <location filename="../Project/Project.py" line="3885"/> <source>Search new files in the project directory.</source> <translation>Cerca nei file nella directory del progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> + <location filename="../Project/Project.py" line="3911"/> <source>Project properties</source> <translation>Proprietà del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> - <source>&Properties...</source> - <translation>&Proprietà...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3911"/> + <source>&Properties...</source> + <translation>&Proprietà...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3916"/> <source>Show the project properties</source> <translation>Mostra le proprietà del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3917"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Proprietà...</b><p>Mosta un dialogo per modificare le proprietà di un progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4034"/> - <source>Load session</source> - <translation>Carica sessione</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4038"/> - <source>Load the projects session file.</source> - <translation>Carica il file di sessione del progetto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4039"/> + <source>Load session</source> + <translation>Carica sessione</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4043"/> + <source>Load the projects session file.</source> + <translation>Carica il file di sessione del progetto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4044"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Carica sessione</b><p>Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.<br>- tutti i file sorgente aperti<br>- tutti i breakpoint<br>- gli argomenti alla riga di comango<br>- la directory di lavoro<br>- il flag di segnalazione delle eccezioni</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4052"/> - <source>Save session</source> - <translation>Salva sessione</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4056"/> - <source>Save the projects session file.</source> - <translation>Salva il file sessione del progetto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4057"/> + <source>Save session</source> + <translation>Salva sessione</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4061"/> + <source>Save the projects session file.</source> + <translation>Salva il file sessione del progetto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4062"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Salva sessione</b><p>Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.<br>- tutti i file sorgente aperti<br>- tutti i breakpoint<br>- gli argomenti alla riga di comango<br>- la directory di lavoro<br>- il flag di segnalazione delle eccezioni</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>Code Metrics</source> <translation>Statistiche codice</translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>&Code Metrics...</source> <translation>Statistiche &codice...</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4093"/> <source>Show some code metrics for the project.</source> <translation>Mostra alcune statistiche del codice per il progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="4090"/> + <location filename="../Project/Project.py" line="4095"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Statistiche codice...</b><p>Mostra alcune statistiche di tutti i file Python nel progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Python Code Coverage</source> <translation>Analisi codice Python</translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Code Co&verage...</source> <translation>A&nalisi codice...</translation> </message> <message> - <location filename="../Project/Project.py" line="4102"/> + <location filename="../Project/Project.py" line="4107"/> <source>Show code coverage information for the project.</source> <translation>Mostra le informazioni dell'analisi del codice del progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="4104"/> + <location filename="../Project/Project.py" line="4109"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Analisi codice...</b><p>Mostra le analisi del codice di tutti i file Python nel progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Profile Data</source> <translation>Profilazione dati</translation> </message> <message> - <location filename="../Project/Project.py" line="4112"/> + <location filename="../Project/Project.py" line="4117"/> <source>&Profile Data...</source> <translation>&Profilazione dati...</translation> </message> <message> - <location filename="../Project/Project.py" line="4116"/> + <location filename="../Project/Project.py" line="4121"/> <source>Show profiling data for the project.</source> <translation>Mostra la profilazione dei dati per il progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="4118"/> + <location filename="../Project/Project.py" line="4123"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profilazione dati...</b><p>Mostra la profilazione dei dati per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Application Diagram</source> <translation>Diagrammi dell'applicazione</translation> </message> <message> - <location filename="../Project/Project.py" line="4127"/> + <location filename="../Project/Project.py" line="4132"/> <source>&Application Diagram...</source> <translation>Diagramma dell' &Applicazione...</translation> </message> <message> - <location filename="../Project/Project.py" line="4131"/> + <location filename="../Project/Project.py" line="4136"/> <source>Show a diagram of the project.</source> <translation>Mostra un diagramma del progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="4133"/> + <location filename="../Project/Project.py" line="4138"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagrammi dell'applicazione...</b><p>Mostra un diagramma del progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4258"/> - <source>Open &Recent Projects</source> - <translation>Apri un progetto &recente</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4266"/> - <source>&Diagrams</source> - <translation>&Diagrammi</translation> - </message> - <message> <location filename="../Project/Project.py" line="4263"/> - <source>Chec&k</source> - <translation>&Controlla</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4259"/> - <source>&Version Control</source> - <translation>Controllo di &Versione</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4265"/> - <source>Sho&w</source> - <translation>&Mostra</translation> + <source>Open &Recent Projects</source> + <translation>Apri un progetto &recente</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4271"/> + <source>&Diagrams</source> + <translation>&Diagrammi</translation> </message> <message> <location filename="../Project/Project.py" line="4268"/> + <source>Chec&k</source> + <translation>&Controlla</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4264"/> + <source>&Version Control</source> + <translation>Controllo di &Versione</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4270"/> + <source>Sho&w</source> + <translation>&Mostra</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4273"/> <source>Source &Documentation</source> <translation>&Documentazione sorgenti</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>Search New Files</source> <translation>Cerca Nuovi File</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>There were no new files found to be added.</source> <translation>Non sono stati trovati file da aggiungere.</translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source>Version Control System</source> <translation>Version Control System</translation> </message> <message> - <location filename="../Project/Project.py" line="4893"/> + <location filename="../Project/Project.py" line="4898"/> <source>Coverage Data</source> <translation>Dati Analisi</translation> </message> <message> - <location filename="../Project/Project.py" line="4943"/> + <location filename="../Project/Project.py" line="4948"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Non c'è uno script principale definito per il progetto. Esco</translation> </message> <message> - <location filename="../Project/Project.py" line="1937"/> + <location filename="../Project/Project.py" line="1942"/> <source>Rename file</source> <translation>Rinomina file</translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source>Rename File</source> <translation>Rinomina File</translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>New Project</source> <translation>Nuovo Progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="2436"/> + <location filename="../Project/Project.py" line="2441"/> <source>Add existing files to the project?</source> <translation>Aggiungi file esistenti al progetto ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2555"/> + <location filename="../Project/Project.py" line="2560"/> <source>Would you like to edit the VCS command options?</source> <translation>Vuoi modificare le opzioni del comando VCS ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2503"/> + <location filename="../Project/Project.py" line="2508"/> <source>Shall the project file be added to the repository?</source> <translation>Il file progetto deve essere aggiunto al repository ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2527"/> + <location filename="../Project/Project.py" line="2532"/> <source>Select version control system for the project</source> <translation>Seleziona il version control system per il progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory to project</source> - <translation>Aggiungi directory al progetto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory...</source> - <translation>Aggiungi directory...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3851"/> + <source>Add directory to project</source> + <translation>Aggiungi directory al progetto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3851"/> + <source>Add directory...</source> + <translation>Aggiungi directory...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3856"/> <source>Add a directory to the current project</source> <translation>Aggiungi una directory al progetto corrente</translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> + <location filename="../Project/Project.py" line="3858"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Aggiungi directory...</b><p>Apre un dialogo per aggiungere una directory al progetto corrente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Code Coverage</source> <translation>Analisi codice</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Please select a coverage file</source> <translation>Per favore seleziona un file per l'analisi</translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Please select a profile file</source> <translation>Per favore seleziona un file per la profilazione</translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source>Delete project session</source> <translation>Cancella sessione di progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4070"/> - <source>Delete session</source> - <translation>Cancella sessione</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4074"/> - <source>Delete the projects session file.</source> - <translation>Cancella il file di sessione del progetto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4075"/> + <source>Delete session</source> + <translation>Cancella sessione</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4079"/> + <source>Delete the projects session file.</source> + <translation>Cancella il file di sessione del progetto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4080"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Cancella sessione</b><p>Cancella la sessione del progetto.</p></translation> </message> @@ -51556,157 +51556,157 @@ <translation>Altro</translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Include module names?</source> <translation>Includi i nomi dei moduli ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source>Delete directory</source> <translation>Cancella directory</translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source>Read tasks</source> <translation>Leggi tesk</translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source>Save tasks</source> <translation>Salva task</translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source>Read debugger properties</source> <translation>Leggi le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source>Save debugger properties</source> <translation>Salva le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source>Delete debugger properties</source> <translation>Cancella le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> + <location filename="../Project/Project.py" line="3975"/> <source>Debugger Properties</source> <translation>Proprietà Debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger &Properties...</source> - <translation>&Proprietà Debugger...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3974"/> - <source>Show the debugger properties</source> - <translation>Mostra le proprietàd el debugger</translation> - </message> - <message> <location filename="../Project/Project.py" line="3975"/> + <source>Debugger &Properties...</source> + <translation>&Proprietà Debugger...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3979"/> + <source>Show the debugger properties</source> + <translation>Mostra le proprietàd el debugger</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3980"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Proprietà debugger...</b><p>Mostra un dialogo per modificare le impostazioni specifiche per il progetto del debugger.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> + <location filename="../Project/Project.py" line="3988"/> <source>Load</source> <translation>Carica</translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> - <source>&Load</source> - <translation>&Carica</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3987"/> - <source>Load the debugger properties</source> - <translation>Carica le proprietàd el debugger</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3995"/> - <source>Save</source> - <translation>Salva</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3999"/> - <source>Save the debugger properties</source> - <translation>Salva le proprietà del debugger</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>Delete</source> - <translation>Cancella</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>&Delete</source> - <translation>&Cancella</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4011"/> - <source>Delete the debugger properties</source> - <translation>Cancella le proprietà del debugger</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4020"/> - <source>Reset</source> - <translation>Resetta</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4020"/> - <source>&Reset</source> - <translation>&Resetta</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4024"/> - <source>Reset the debugger properties</source> - <translation>Resetta le proprietà del debugger</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4270"/> - <source>Debugger</source> - <translation>Debugger</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4267"/> - <source>Session</source> - <translation>Sessione</translation> - </message> - <message> <location filename="../Project/Project.py" line="3988"/> - <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> - <translation><b>Carica le proprietà del debugger</b><p>Carica le proprietà del debugger specifiche per il progetto.</p></translation> + <source>&Load</source> + <translation>&Carica</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3992"/> + <source>Load the debugger properties</source> + <translation>Carica le proprietàd el debugger</translation> </message> <message> <location filename="../Project/Project.py" line="4000"/> - <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> - <translation><b>Salva le proprietà del debugger</b><p>Salva le proprietà del debugger specifiche per il progetto.</p></translation> + <source>Save</source> + <translation>Salva</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4004"/> + <source>Save the debugger properties</source> + <translation>Salva le proprietà del debugger</translation> </message> <message> <location filename="../Project/Project.py" line="4012"/> - <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> - <translation><b>Cancella le proprietà del debugger</b><p>Cancella il file che contiene le proprietà del debugger specifiche per il progetto.</p></translation> + <source>Delete</source> + <translation>Cancella</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4012"/> + <source>&Delete</source> + <translation>&Cancella</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4016"/> + <source>Delete the debugger properties</source> + <translation>Cancella le proprietà del debugger</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4025"/> + <source>Reset</source> + <translation>Resetta</translation> </message> <message> <location filename="../Project/Project.py" line="4025"/> + <source>&Reset</source> + <translation>&Resetta</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4029"/> + <source>Reset the debugger properties</source> + <translation>Resetta le proprietà del debugger</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4275"/> + <source>Debugger</source> + <translation>Debugger</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4272"/> + <source>Session</source> + <translation>Sessione</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3993"/> + <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> + <translation><b>Carica le proprietà del debugger</b><p>Carica le proprietà del debugger specifiche per il progetto.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4005"/> + <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> + <translation><b>Salva le proprietà del debugger</b><p>Salva le proprietà del debugger specifiche per il progetto.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4017"/> + <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> + <translation><b>Cancella le proprietà del debugger</b><p>Cancella il file che contiene le proprietà del debugger specifiche per il progetto.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4030"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Azzera le proprietà del debugger</b><p>Azzera le proprietà del debugger specifiche per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations</source> <translation>Associazione tipi file</translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations...</source> <translation>Associazione tipi file...</translation> </message> <message> - <location filename="../Project/Project.py" line="3938"/> + <location filename="../Project/Project.py" line="3943"/> <source>Show the project filetype associations</source> <translation>Mostra le associazioni dei tipi di file del progetto</translation> </message> @@ -51716,87 +51716,87 @@ <translation type="obsolete"><b>Associazione tipi file...</b><p>Mostra un dialogo per modificare le associazioni dei tipi file del progetto. Queste associazioni determinano il tipo (codice sorgente, interfaccia o altro) con un pattern del nome file. Sono usati quando aggiungi un file al progetto e quanto esegui una ricerca per nuovi file.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4271"/> + <location filename="../Project/Project.py" line="4276"/> <source>Pac&kagers</source> <translation>Pac&kagers</translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> + <location filename="../Project/Project.py" line="3835"/> <source>Add files to project</source> <translation>Aggiungi file al progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add &files...</source> - <translation>Aggiungi &files...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3835"/> + <source>Add &files...</source> + <translation>Aggiungi &files...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3840"/> <source>Add files to the current project</source> <translation>Aggiungi file al progetto corrente</translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> + <location filename="../Project/Project.py" line="3842"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Aggiungi files...</b><p>Apre un dialogo per aggiungere file al progetto corrente. Il posto dove aggiungerli è determinato dall'estensione.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3057"/> + <location filename="../Project/Project.py" line="3062"/> <source>Project Files (*.e4p)</source> <translation>File progetto (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="4257"/> + <location filename="../Project/Project.py" line="4262"/> <source>&Project</source> <translation>&Progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4390"/> + <location filename="../Project/Project.py" line="4395"/> <source>Project</source> <translation>Progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4456"/> + <location filename="../Project/Project.py" line="4461"/> <source>&Clear</source> <translation>Pulis&ci</translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source>Read user project properties</source> <translation>Leggi le proprietà utente del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source>Save user project properties</source> <translation>Salva le proprietà utente del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> - <source>User project properties</source> - <translation>Proprietà utente del progetto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3919"/> - <source>&User Properties...</source> - <translation>Proprietà &utente...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3924"/> + <source>User project properties</source> + <translation>Proprietà utente del progetto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3924"/> + <source>&User Properties...</source> + <translation>Proprietà &utente...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3929"/> <source>Show the user specific project properties</source> <translation>Mostra le proprietà del multiprogetto specifiche dell'utente</translation> </message> <message> - <location filename="../Project/Project.py" line="3926"/> + <location filename="../Project/Project.py" line="3931"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Proprietà utente...</b><p>Mosta un dialogo per modificare le proprietà utente di un progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>Syntax errors detected</source> <translation>Errore di sintassi rilevato</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Il progetto contiene %n file con errori di sintassi.</numerusform> @@ -51804,42 +51804,42 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source>Create Package List</source> <translation>Crea lista del package</translation> </message> <message> - <location filename="../Project/Project.py" line="4156"/> + <location filename="../Project/Project.py" line="4161"/> <source>Create &Package List</source> <translation type="unfinished">Crea un &archivio per il plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source>Create Plugin Archive</source> <translation>Crea un archivio per il plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="5165"/> + <location filename="../Project/Project.py" line="5170"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Il file <b>PKGLIST</b> esiste già.</p><p>Sovrascriverlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5233"/> + <location filename="../Project/Project.py" line="5238"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Non c'è uno script principale definito per il progetto. Esco...</translation> </message> <message> - <location filename="../Project/Project.py" line="1690"/> + <location filename="../Project/Project.py" line="1695"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>La directory di partenza non contiene nessun file appartenente alla categoria selezionata.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>Select Version Control System</source> <translation>Selezione il Sistema di Controllo della Versione (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="2534"/> + <location filename="../Project/Project.py" line="2539"/> <source>None</source> <translation>Nessuno</translation> </message> @@ -51849,42 +51849,42 @@ <translation>Registrazione tipo progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4172"/> + <location filename="../Project/Project.py" line="4177"/> <source>Create Plugin &Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>You have to specify a translation pattern first.</source> <translation>Devi prima specificare un pattern di traduzione.</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Translation Pattern</source> <translation>Pattern di traduzione</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Inserisci il path per il file di traduzione (usa '%language% al posto del codice lingua):</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations</source> <translation>Associazioni analizzatore lessicale</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations...</source> <translation>Associazioni analizzatore lessicale...</translation> </message> <message> - <location filename="../Project/Project.py" line="3956"/> + <location filename="../Project/Project.py" line="3961"/> <source>Show the project lexer associations (overriding defaults)</source> <translation>Mostra le associazioni degli analizzatori lessicali del progetto (sovrascrivendo i default)</translation> </message> <message> - <location filename="../Project/Project.py" line="3958"/> + <location filename="../Project/Project.py" line="3963"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Associazioni analizzatore lessicale...</b><p>Mostra un dialogo per modificare le associazioni degli analizzatori lessicali dei progetti. Queste associazioni sovrascrivono the impostazioni globali. Gli analizzatori lessicali sono utilizzati per l'evidenziazione del testo nell'editor.</p></translation> </message> @@ -51904,62 +51904,62 @@ <translation>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Il file progetto <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>Il file progetto <b{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation><p>Il file delle proprietà specifiche dell'utente del progetto <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation><p>Il file delle proprietà specifiche dell'utente del progetto <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation><p>La sessione del progetto <b>{0}</b> non può essere letta.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation><p>La sessione del progetto <b>{0}</b> non può essere scritta.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>La sessione del progetto <b>{0}</b> non può essere cancellato.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <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="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Il file task <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation><p>Il file delle proprietà del debugger del progetto<b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation><p>Il file delle proprietà del debugger del progetto<b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>Il file delle proprietà del debugger del progetto<b>{0}</b> non può essere cancellato.</p></translation> </message> @@ -51969,17 +51969,17 @@ <translation type="obsolete"><p>Il file di traduzione selezionato <b>{0}</b> non può essere cancellato.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1721"/> + <location filename="../Project/Project.py" line="1726"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Il file <b>{0}</b> esiste già.</p><p>Sovrascriverlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere rinominato.<br />Motivo: {1}</p></translation> </message> @@ -51994,37 +51994,37 @@ <translation type="obsolete"><p>La directory selezionata <b>{0}</b> non può essere cancellata.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>La directory del progetto <b>{0}</b> non può essere creata.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>VCS selezionato <b>{0}</b>non trovato.<br>Disabilito il controllo di versione.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Il file <b>PKGLIST</b> non può essere creato.<br />Motivo: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5375"/> + <location filename="../Project/Project.py" line="5380"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere aggiunto all'archivio.Lo ignoro.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5449"/> + <location filename="../Project/Project.py" line="5454"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Il file plugin <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1646"/> + <location filename="../Project/Project.py" line="1651"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>Il file selezionato <b>{0}</b> non può essere aggiunto a <b>{1}</b>.</p><p>Motivo: {2}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1703"/> + <location filename="../Project/Project.py" line="1708"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>La directory di destinazione<b>{0}</b> non può essere creata.</p><p>Motivo: {1}</p></translation> </message> @@ -52034,32 +52034,32 @@ <translation>Python Files (*.py2);;Python GUI Files (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>Load Diagram</source> <translation type="unfinished">Carico Diagramma</translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4145"/> + <location filename="../Project/Project.py" line="4150"/> <source>Load a diagram from file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4147"/> + <location filename="../Project/Project.py" line="4152"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> @@ -52089,37 +52089,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4753"/> + <location filename="../Project/Project.py" line="4758"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4161"/> + <location filename="../Project/Project.py" line="4166"/> <source>Create an initial PKGLIST file for an eric6 plugin.</source> <translation type="unfinished">Crea un file archivio per il plugin di eric6.</translation> </message> <message> - <location filename="../Project/Project.py" line="4163"/> + <location filename="../Project/Project.py" line="4168"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"><b>Crea Archivio Plugin</b><p>Crea un archivio per il plugin eric6 usando la lista dei file fornita nel file PKGLIST. Il nome dell'archivio è costruito dal nome dello script.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4177"/> + <location filename="../Project/Project.py" line="4182"/> <source>Create eric6 plugin archive files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4179"/> + <location filename="../Project/Project.py" line="4184"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5340"/> + <location filename="../Project/Project.py" line="5345"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"><p>Il file archivio del plugin di eric6<b>{0}</b> non può essere creato.<br />Motivo: {1}</p></translation> </message> @@ -52139,213 +52139,213 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3897"/> + <location filename="../Project/Project.py" line="3902"/> <source>Search for a file in the project list of files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3904"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5269"/> + <location filename="../Project/Project.py" line="5274"/> <source>Create Plugin Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> + <location filename="../Project/Project.py" line="4194"/> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (&Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4199"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4196"/> + <location filename="../Project/Project.py" line="4201"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5247"/> + <location filename="../Project/Project.py" line="5252"/> <source>Select package lists:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Creating plugin archives...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Abort</source> <translation type="unfinished">Termina</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>%v/%m Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5282"/> + <location filename="../Project/Project.py" line="5287"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5394"/> + <location filename="../Project/Project.py" line="5399"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5397"/> + <location filename="../Project/Project.py" line="5402"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5258"/> + <location filename="../Project/Project.py" line="5263"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5312"/> + <location filename="../Project/Project.py" line="5317"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3882"/> + <location filename="../Project/Project.py" line="3887"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3940"/> + <location filename="../Project/Project.py" line="3945"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source>Create Makefile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4210"/> + <location filename="../Project/Project.py" line="4215"/> <source>&Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4214"/> + <location filename="../Project/Project.py" line="4219"/> <source>Perform a 'make' run.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4216"/> + <location filename="../Project/Project.py" line="4221"/> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5654"/> + <location filename="../Project/Project.py" line="5659"/> <source>Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4229"/> <source>&Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4228"/> + <location filename="../Project/Project.py" line="4233"/> <source>Question 'make', if a rebuild is needed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4230"/> + <location filename="../Project/Project.py" line="4235"/> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4272"/> + <location filename="../Project/Project.py" line="4277"/> <source>Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5602"/> + <location filename="../Project/Project.py" line="5607"/> <source>The make process did not start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5647"/> + <location filename="../Project/Project.py" line="5652"/> <source>The make process crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5657"/> - <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="5662"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5667"/> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>The makefile contains errors.</source> <translation type="unfinished"></translation> </message> @@ -52605,7 +52605,7 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="947"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1011"/> <source>Forms</source> <translation>Forms</translation> </message> @@ -52635,127 +52635,127 @@ <translation>Dialogo con pulsanti (a destra)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="149"/> + <location filename="../Project/ProjectFormsBrowser.py" line="158"/> <source>Compile form</source> <translation>Compila la form</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="327"/> + <location filename="../Project/ProjectFormsBrowser.py" line="352"/> <source>Compile all forms</source> <translation>Compila tutte le form</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="238"/> + <location filename="../Project/ProjectFormsBrowser.py" line="255"/> <source>Open in Qt-Designer</source> <translation>Apri con Qt-Designer</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="288"/> + <location filename="../Project/ProjectFormsBrowser.py" line="309"/> <source>Remove from project</source> <translation>Rimuovi dal progetto</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="291"/> + <location filename="../Project/ProjectFormsBrowser.py" line="312"/> <source>Delete</source> <translation>Cancella</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="300"/> + <location filename="../Project/ProjectFormsBrowser.py" line="321"/> <source>New form...</source> <translation>Nuova form...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="335"/> + <location filename="../Project/ProjectFormsBrowser.py" line="360"/> <source>Add forms directory...</source> <translation>Affiungi directory delle forms...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="338"/> + <location filename="../Project/ProjectFormsBrowser.py" line="363"/> <source>Expand all directories</source> <translation>Espandi tutte le directory</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="340"/> + <location filename="../Project/ProjectFormsBrowser.py" line="365"/> <source>Collapse all directories</source> <translation>Riduci tutte le directory</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source>New Form</source> <translation>Nuova form</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="549"/> + <location filename="../Project/ProjectFormsBrowser.py" line="574"/> <source>Select a form type:</source> <translation>Seleziona tipo form:</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>Form Compilation</source> <translation>Compilazione form</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="698"/> + <location filename="../Project/ProjectFormsBrowser.py" line="776"/> <source>The compilation of the form file was successful.</source> <translation>La compilazione della form è avvenuta con successo.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>The compilation of the form file failed.</source> <translation>La compilazione della form è fallita.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Process Generation Error</source> <translation>Errore Generazione Processo</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="905"/> + <location filename="../Project/ProjectFormsBrowser.py" line="969"/> <source>Compiling forms...</source> <translation>Compilazione form in corso...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Abort</source> <translation>Termina</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="240"/> + <location filename="../Project/ProjectFormsBrowser.py" line="257"/> <source>Open in Editor</source> <translation>Apri con l'editor</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="175"/> + <location filename="../Project/ProjectFormsBrowser.py" line="184"/> <source>Rename file</source> <translation>Rinomina file</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="247"/> + <location filename="../Project/ProjectFormsBrowser.py" line="264"/> <source>Compile forms</source> <translation>Compila le form</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Delete forms</source> <translation>Cancella le form</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Do you really want to delete these forms from the project?</source> <translation>Vuoi veramente cancellare queste form dal progetto ?</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="144"/> + <location filename="../Project/ProjectFormsBrowser.py" line="153"/> <source>Preview form</source> <translation>Anteprima form</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="243"/> + <location filename="../Project/ProjectFormsBrowser.py" line="260"/> <source>Preview translations</source> <translation>Anteprima traduzioni</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="333"/> + <location filename="../Project/ProjectFormsBrowser.py" line="358"/> <source>Add forms...</source> <translation>Aggiungi form...</translation> </message> @@ -52770,17 +52770,17 @@ <translation>Dialogo con pulsanti (centrati in basso)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Determining changed forms...</source> <translation>Determina form modificate...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="972"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1036"/> <source>Compiling changed forms...</source> <translation>Compila le form modificate...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="582"/> + <location filename="../Project/ProjectFormsBrowser.py" line="607"/> <source>The file already exists! Overwrite it?</source> <translation>Il file esiste già! Sovrascriverlo ?</translation> </message> @@ -52795,42 +52795,42 @@ <translation>Dialogo con un Buttonbox (a destra)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="160"/> + <location filename="../Project/ProjectFormsBrowser.py" line="169"/> <source>Generate Dialog Code...</source> <translation>Genera codice del dialogo...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="257"/> + <location filename="../Project/ProjectFormsBrowser.py" line="274"/> <source>Open</source> <translation>Apri</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="563"/> + <location filename="../Project/ProjectFormsBrowser.py" line="588"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>File interfaccia Qt (*.ui);;Tutti i file (*)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="343"/> + <location filename="../Project/ProjectFormsBrowser.py" line="368"/> <source>Configure...</source> <translation>Configura...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="309"/> + <location filename="../Project/ProjectFormsBrowser.py" line="330"/> <source>Copy Path to Clipboard</source> <translation>Copia il path nella Clipboard</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation><p>Il nuovo file della form <b>{0}</b> non può essere creato.<br>Problema: {1}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="713"/> + <location filename="../Project/ProjectFormsBrowser.py" line="791"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation><p>La compilazione del file form è fallita.</p><p>Motivo: {0}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>Non posso avviare {0}.<br>Assicurarsi che sia nel path.</translation> </message> @@ -52885,10 +52885,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>%v/%m Forms</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>Configure uic Compiler</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>No project specific uic compiler flags are supported for PySide or PySide2.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectInterfacesBrowser</name> @@ -74315,6 +74325,44 @@ </message> </context> <context> + <name>UicCompilerOptionsDialog</name> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="14"/> + <source>uic Compiler Options</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="23"/> + <source>'import' Package</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="29"/> + <source>Enter the package name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="36"/> + <source><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="49"/> + <source>Resources Suffix</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="55"/> + <source>Enter the suffix of compiled resource files (default: _rc)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="62"/> + <source><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>UnittestDialog</name> <message> <location filename="../PyUnit/UnittestDialog.py" line="405"/> @@ -84173,22 +84221,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1871"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> <source>Web Archive (*.mhtml *.mht)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1872"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1874"/> <source>HTML File (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1875"/> <source>HTML File with all resources (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1897"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1899"/> <source>Save Web Page</source> <translation type="unfinished"></translation> </message> @@ -84198,22 +84246,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source>Quota Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source>Protocol Handler Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source><p> Allow the website at <b>{0}</b> to open all <b>{1}</b> links?</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_pt.ts Wed Nov 21 19:26:59 2018 +0100 +++ b/i18n/eric6_pt.ts Sat Nov 24 15:37:04 2018 +0100 @@ -5603,37 +5603,37 @@ <translation>O ficheiro <b>{0}</b> existe mas não tem classes.</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source>uic error</source> <translation>erro uic</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p>Houve um erro ao carregar o form <b>{0}</b>.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source>Code Generation</source> <translation>Geração de Código</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="618"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Não se pode abrir o ficheiro modelo de código "{0}"</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="654"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Não se pode abrir o ficheiro fonte "{0}".</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Não se pode escrever o ficheiro fonte "{0}".</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="208"/> <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> <translation type="unfinished"></translation> </message> @@ -52505,312 +52505,312 @@ <translation>A registar Tipo de Projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source>Read project file</source> <translation>Ler ficheiro de projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Não se pôde ler o ficheiro de projeto <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source>Save project file</source> <translation>Gravar ficheiro de projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>Não se pôde escrever o ficheiro de projeto <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source>Read user project properties</source> <translation>Ler propriedades de projeto do usuário</translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source>Save user project properties</source> <translation>Gravar propriedades de projeto do usuário</translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source>Read project session</source> <translation>Ler sessão de projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="1232"/> + <location filename="../Project/Project.py" line="1237"/> <source>Please save the project first.</source> <translation>Guarde primeiro o projeto por favor.</translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source>Save project session</source> <translation>Gravar a sessão do projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source>Delete project session</source> <translation>Apagar a sessão do projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source>Read tasks</source> <translation>Ler tarefas</translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source>Save tasks</source> <translation>Gravar tarefas</translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source>Read debugger properties</source> <translation>Ler propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source>Save debugger properties</source> <translation>Gravar propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source>Delete debugger properties</source> <translation>Apagar propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>Add Language</source> <translation>Adicionar Idioma</translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>You have to specify a translation pattern first.</source> <translation>Primeiro tem que especificar um padrão de tradução.</translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source>Delete translation</source> <translation>Apagar a Tradução</translation> </message> <message> - <location filename="../Project/Project.py" line="1659"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add file</source> <translation>Adicionar ficheiro</translation> </message> <message> - <location filename="../Project/Project.py" line="1721"/> + <location filename="../Project/Project.py" line="1726"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>O ficheiro <b>{0}</b> já existe. </p><p>Sobreescrever?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1646"/> + <location filename="../Project/Project.py" line="1651"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1789"/> + <location filename="../Project/Project.py" line="1794"/> <source>The target directory must not be empty.</source> <translation>O diretório de destino não pode estar vazio.</translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>Add directory</source> <translation>Adicionar diretório</translation> </message> <message> - <location filename="../Project/Project.py" line="1690"/> + <location filename="../Project/Project.py" line="1695"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1703"/> + <location filename="../Project/Project.py" line="1708"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>The source directory must not be empty.</source> <translation>O diretório fonte não pode estar vazio.</translation> </message> <message> - <location filename="../Project/Project.py" line="1937"/> + <location filename="../Project/Project.py" line="1942"/> <source>Rename file</source> <translation>Renomear ficheiro</translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source>Rename File</source> <translation>Renomear Ficheiro</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>O ficheiro <b>{0}</b> já existe. Sobreescrever?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source>Delete file</source> <translation>Apagar ficheiro</translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source>Delete directory</source> <translation>Apagar diretório</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source>Create project directory</source> <translation>Criar diretório de projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>O diretorio do projeto <b>{0}</b> não se pôde criar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>New Project</source> <translation>Projeto Novo</translation> </message> <message> - <location filename="../Project/Project.py" line="2436"/> + <location filename="../Project/Project.py" line="2441"/> <source>Add existing files to the project?</source> <translation>Adicionar os ficheiros existentes ao projeto?</translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>Select Version Control System</source> <translation>Selecionar o Sistema de Control de Versão</translation> </message> <message> - <location filename="../Project/Project.py" line="2555"/> + <location filename="../Project/Project.py" line="2560"/> <source>Would you like to edit the VCS command options?</source> <translation>Quer editar as opções de commandos VCS?</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>New project</source> <translation>Projeto novo</translation> </message> <message> - <location filename="../Project/Project.py" line="2503"/> + <location filename="../Project/Project.py" line="2508"/> <source>Shall the project file be added to the repository?</source> <translation>Deve adicionar-se o ficheiro de projeto ao repositório?</translation> </message> <message> - <location filename="../Project/Project.py" line="2534"/> + <location filename="../Project/Project.py" line="2539"/> <source>None</source> <translation>Nenhum</translation> </message> <message> - <location filename="../Project/Project.py" line="2527"/> + <location filename="../Project/Project.py" line="2532"/> <source>Select version control system for the project</source> <translation>Selecionar o sistema de control de versão para o projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Translation Pattern</source> <translation>Padrão de Tradução</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Introduzir o padrão para os ficheiros de tradução (usar '%language%' em lugar do código de idioma):</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> + <location filename="../Project/Project.py" line="3783"/> <source>Open project</source> <translation>Abrir projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3057"/> + <location filename="../Project/Project.py" line="3062"/> <source>Project Files (*.e4p)</source> <translation>Ficheiros de Projeto (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save project as</source> <translation>Gravar projeto como</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source>Save File</source> <translation>Gravar Ficheiro</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>Close Project</source> <translation>Fechar Projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>The current project has unsaved changes.</source> <translation>O projeto atual tem alterações por gravar.</translation> </message> <message> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>Syntax errors detected</source> <translation>Detetados erros de sintaxe</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>O projeto tem um ficheiro com erros de síntaxe.</numerusform> @@ -52818,607 +52818,607 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>&New...</source> <translation>&Novo...</translation> </message> <message> - <location filename="../Project/Project.py" line="3769"/> + <location filename="../Project/Project.py" line="3774"/> <source>Generate a new project</source> <translation>Criar um projeto novo</translation> </message> <message> - <location filename="../Project/Project.py" line="3770"/> + <location filename="../Project/Project.py" line="3775"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Novo...</b><p>Abre uma caixa de diálogo para introduzir a informação para um projeto novo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>&Open...</source> - <translation>&Abrir...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3783"/> + <source>&Open...</source> + <translation>&Abrir...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3788"/> <source>Open an existing project</source> <translation>Abrir um projeto existente</translation> </message> <message> - <location filename="../Project/Project.py" line="3784"/> + <location filename="../Project/Project.py" line="3789"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Abrir...</b><p>Isto abre um projeto existente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> - <source>Close project</source> - <translation>Fechar projeto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3791"/> - <source>&Close</source> - <translation>&Fechar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3795"/> - <source>Close the current project</source> - <translation>Fechar o projeto atual</translation> - </message> - <message> <location filename="../Project/Project.py" line="3796"/> + <source>Close project</source> + <translation>Fechar projeto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> + <source>&Close</source> + <translation>&Fechar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3800"/> + <source>Close the current project</source> + <translation>Fechar o projeto atual</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3801"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Fechar</b><p>Fecha o projeto atual</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> - <source>Save project</source> - <translation>Gravar projeto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3995"/> - <source>&Save</source> - <translation>&Gravar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Save the current project</source> - <translation>Gravar o projeto actual</translation> - </message> - <message> <location filename="../Project/Project.py" line="3808"/> + <source>Save project</source> + <translation>Gravar projeto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4000"/> + <source>&Save</source> + <translation>&Gravar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3812"/> + <source>Save the current project</source> + <translation>Gravar o projeto actual</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3813"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Gravar</b><p>Guarda o projeto atual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save &as...</source> <translation>Gravar &como...</translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> + <location filename="../Project/Project.py" line="3824"/> <source>Save the current project to a new file</source> <translation>Gravar o projeto atual para um ficheiro novo</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> + <location filename="../Project/Project.py" line="3826"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Gravar como</b><p>Guarda o projeto atual para um ficheiro novo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add files to project</source> - <translation>Adicionar ficheiros ao projeto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add &files...</source> - <translation>Adicionar &ficheiros...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3835"/> + <source>Add files to project</source> + <translation>Adicionar ficheiros ao projeto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3835"/> + <source>Add &files...</source> + <translation>Adicionar &ficheiros...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3840"/> <source>Add files to the current project</source> <translation>Adicionar ficheiros ao projeto atual</translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> + <location filename="../Project/Project.py" line="3842"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Adicionar ficheiros...</b><p>Abre uma caixa de diálogo para adicionar ficheiros ao projeto atual. O lugar para adicionar determina-se pela extensão de ficheiro.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory to project</source> - <translation>Adicionar diretório ao projeto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory...</source> - <translation>Adicionar diretório...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3851"/> + <source>Add directory to project</source> + <translation>Adicionar diretório ao projeto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3851"/> + <source>Add directory...</source> + <translation>Adicionar diretório...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3856"/> <source>Add a directory to the current project</source> <translation>Adicionar um diretório ao projeto atual</translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> + <location filename="../Project/Project.py" line="3858"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Adicionar diretório</b><p>Abre uma caixa de diálogo para adicionar um diretório ao projeto atual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> + <location filename="../Project/Project.py" line="3866"/> <source>Add translation to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add &translation...</source> - <translation>Adicionar &tradução...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3866"/> + <source>Add &translation...</source> + <translation>Adicionar &tradução...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source>Add a translation to the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3868"/> + <location filename="../Project/Project.py" line="3873"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Search new files</source> <translation>Procurar ficheiros novos</translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Searc&h new files...</source> <translation>&Procurar ficheiros novos...</translation> </message> <message> - <location filename="../Project/Project.py" line="3880"/> + <location filename="../Project/Project.py" line="3885"/> <source>Search new files in the project directory.</source> <translation>Procurar ficheiros novos no diretório do projeto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> - <source>Project properties</source> - <translation>Propriedades do projeto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3906"/> - <source>&Properties...</source> - <translation>&Propriedades...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3911"/> + <source>Project properties</source> + <translation>Propriedades do projeto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3911"/> + <source>&Properties...</source> + <translation>&Propriedades...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3916"/> <source>Show the project properties</source> <translation>Mostrar as propriedades do projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3917"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> + <location filename="../Project/Project.py" line="3924"/> <source>User project properties</source> <translation>Propriedades de projecto do usuário</translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> - <source>&User Properties...</source> - <translation>Propriedades de &Usuário...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3924"/> + <source>&User Properties...</source> + <translation>Propriedades de &Usuário...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3929"/> <source>Show the user specific project properties</source> <translation>Mostrar as propriedades do projeto específicas do usuário</translation> </message> <message> - <location filename="../Project/Project.py" line="3926"/> + <location filename="../Project/Project.py" line="3931"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations</source> <translation>Associações de Tipos de Ficheiros</translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations...</source> <translation>Associações de Tipos de Ficheiros...</translation> </message> <message> - <location filename="../Project/Project.py" line="3938"/> + <location filename="../Project/Project.py" line="3943"/> <source>Show the project filetype associations</source> <translation>Mostrar as associações de tipos de ficheiros do projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3956"/> + <location filename="../Project/Project.py" line="3961"/> <source>Show the project lexer associations (overriding defaults)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3958"/> + <location filename="../Project/Project.py" line="3963"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger Properties</source> - <translation>Propriedades do Depurador</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger &Properties...</source> - <translation>&Propriedades do Depurador...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3974"/> - <source>Show the debugger properties</source> - <translation>Mostrar as propriedades do depurador</translation> - </message> - <message> <location filename="../Project/Project.py" line="3975"/> + <source>Debugger Properties</source> + <translation>Propriedades do Depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3975"/> + <source>Debugger &Properties...</source> + <translation>&Propriedades do Depurador...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3979"/> + <source>Show the debugger properties</source> + <translation>Mostrar as propriedades do depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3980"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> - <source>Load</source> - <translation>Carregar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3983"/> - <source>&Load</source> - <translation>&Carregar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3987"/> - <source>Load the debugger properties</source> - <translation>Carregar propriedades do depurador</translation> - </message> - <message> <location filename="../Project/Project.py" line="3988"/> + <source>Load</source> + <translation>Carregar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3988"/> + <source>&Load</source> + <translation>&Carregar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3992"/> + <source>Load the debugger properties</source> + <translation>Carregar propriedades do depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3993"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3995"/> - <source>Save</source> - <translation>Gravar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3999"/> - <source>Save the debugger properties</source> - <translation>Gravar propriedades do depurador</translation> - </message> - <message> <location filename="../Project/Project.py" line="4000"/> + <source>Save</source> + <translation>Gravar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4004"/> + <source>Save the debugger properties</source> + <translation>Gravar propriedades do depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4005"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4007"/> - <source>Delete</source> - <translation>Apagar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>&Delete</source> - <translation>&Apagar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4011"/> - <source>Delete the debugger properties</source> - <translation>Apagar as propriedades do depurador</translation> - </message> - <message> <location filename="../Project/Project.py" line="4012"/> + <source>Delete</source> + <translation>Apagar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4012"/> + <source>&Delete</source> + <translation>&Apagar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4016"/> + <source>Delete the debugger properties</source> + <translation>Apagar as propriedades do depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4017"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> + <location filename="../Project/Project.py" line="4025"/> <source>Reset</source> <translation>Reinicializar</translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> - <source>&Reset</source> - <translation>&Reinicializar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4024"/> - <source>Reset the debugger properties</source> - <translation>Reinicializar as propriedades do depurador</translation> - </message> - <message> <location filename="../Project/Project.py" line="4025"/> + <source>&Reset</source> + <translation>&Reinicializar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4029"/> + <source>Reset the debugger properties</source> + <translation>Reinicializar as propriedades do depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4030"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4034"/> - <source>Load session</source> - <translation>Carregar sessão</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4038"/> - <source>Load the projects session file.</source> - <translation>Carregar o ficheiro de sessão do projeto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4039"/> + <source>Load session</source> + <translation>Carregar sessão</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4043"/> + <source>Load the projects session file.</source> + <translation>Carregar o ficheiro de sessão do projeto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4044"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4052"/> - <source>Save session</source> - <translation>Guargar sessão</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4056"/> - <source>Save the projects session file.</source> - <translation>Gravar ficheiro de sessão do projeto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4057"/> + <source>Save session</source> + <translation>Guargar sessão</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4061"/> + <source>Save the projects session file.</source> + <translation>Gravar ficheiro de sessão do projeto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4062"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4070"/> - <source>Delete session</source> - <translation>Apagar sessão</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4074"/> - <source>Delete the projects session file.</source> - <translation>Apagar o ficheiro de sessão do projeto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4075"/> + <source>Delete session</source> + <translation>Apagar sessão</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4079"/> + <source>Delete the projects session file.</source> + <translation>Apagar o ficheiro de sessão do projeto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4080"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>Code Metrics</source> <translation type="unfinished">Métricas de Código</translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>&Code Metrics...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4093"/> <source>Show some code metrics for the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4090"/> + <location filename="../Project/Project.py" line="4095"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Python Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Code Co&verage...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4102"/> + <location filename="../Project/Project.py" line="4107"/> <source>Show code coverage information for the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4104"/> + <location filename="../Project/Project.py" line="4109"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Profile Data</source> <translation type="unfinished">Dados de Perfil</translation> </message> <message> - <location filename="../Project/Project.py" line="4112"/> + <location filename="../Project/Project.py" line="4117"/> <source>&Profile Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4116"/> + <location filename="../Project/Project.py" line="4121"/> <source>Show profiling data for the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4118"/> + <location filename="../Project/Project.py" line="4123"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Application Diagram</source> <translation>Diagrama da Aplicação</translation> </message> <message> - <location filename="../Project/Project.py" line="4127"/> + <location filename="../Project/Project.py" line="4132"/> <source>&Application Diagram...</source> <translation>Diagrama da &Aplicação...</translation> </message> <message> - <location filename="../Project/Project.py" line="4131"/> + <location filename="../Project/Project.py" line="4136"/> <source>Show a diagram of the project.</source> <translation>Mostrar o diagrama do projeto.</translation> </message> <message> - <location filename="../Project/Project.py" line="4133"/> + <location filename="../Project/Project.py" line="4138"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagrama da Aplicação...</b><p>Mostra um diagrama do projeto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source>Create Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4156"/> + <location filename="../Project/Project.py" line="4161"/> <source>Create &Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source>Create Plugin Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4257"/> + <location filename="../Project/Project.py" line="4262"/> <source>&Project</source> <translation>&Projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="4258"/> - <source>Open &Recent Projects</source> - <translation>Abrir Projetos &Recentes</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4259"/> - <source>&Version Control</source> - <translation>Contro&l de Versão</translation> - </message> - <message> <location filename="../Project/Project.py" line="4263"/> - <source>Chec&k</source> - <translation>&Verificar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4265"/> - <source>Sho&w</source> - <translation>&Mostrar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4266"/> - <source>&Diagrams</source> - <translation>&Diagramas</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4267"/> - <source>Session</source> - <translation>Sessão</translation> + <source>Open &Recent Projects</source> + <translation>Abrir Projetos &Recentes</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4264"/> + <source>&Version Control</source> + <translation>Contro&l de Versão</translation> </message> <message> <location filename="../Project/Project.py" line="4268"/> - <source>Source &Documentation</source> - <translation>&Documentação Fonte</translation> + <source>Chec&k</source> + <translation>&Verificar</translation> </message> <message> <location filename="../Project/Project.py" line="4270"/> - <source>Debugger</source> - <translation>Depurador</translation> + <source>Sho&w</source> + <translation>&Mostrar</translation> </message> <message> <location filename="../Project/Project.py" line="4271"/> + <source>&Diagrams</source> + <translation>&Diagramas</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4272"/> + <source>Session</source> + <translation>Sessão</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4273"/> + <source>Source &Documentation</source> + <translation>&Documentação Fonte</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4275"/> + <source>Debugger</source> + <translation>Depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4276"/> <source>Pac&kagers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4390"/> + <location filename="../Project/Project.py" line="4395"/> <source>Project</source> <translation>Projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="4456"/> + <location filename="../Project/Project.py" line="4461"/> <source>&Clear</source> <translation>&Limpar</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>Search New Files</source> <translation>Procurar Ficheiros Novos</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>There were no new files found to be added.</source> <translation>Não se encontraram ficheiros novos para adicionar.</translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source>Version Control System</source> <translation>Sistema de Control de Versão</translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4893"/> + <location filename="../Project/Project.py" line="4898"/> <source>Coverage Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4943"/> + <location filename="../Project/Project.py" line="4948"/> <source>There is no main script defined for the current project. Aborting</source> <translation>O projeto atual não tem um script principal definido. A cancelar</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Please select a profile file</source> <translation>Escolha um ficheiro de perfil por favor</translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Include module names?</source> <translation>Incluir nomes de módulos?</translation> </message> <message> - <location filename="../Project/Project.py" line="5165"/> + <location filename="../Project/Project.py" line="5170"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5233"/> + <location filename="../Project/Project.py" line="5238"/> <source>The project does not have a main script defined. Aborting...</source> <translation>O projeto atual não tem um script principal definido. A cancelar...</translation> </message> <message> - <location filename="../Project/Project.py" line="5375"/> + <location filename="../Project/Project.py" line="5380"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5449"/> + <location filename="../Project/Project.py" line="5454"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -53428,32 +53428,32 @@ <translation>Ficheiros Python2 (*.py2);;Ficheiros GUI Python2 (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>Load Diagram</source> <translation>Carregar Diagrama</translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>&Load Diagram...</source> <translation>&Carregar Diagrama...</translation> </message> <message> - <location filename="../Project/Project.py" line="4145"/> + <location filename="../Project/Project.py" line="4150"/> <source>Load a diagram from file.</source> <translation>Carregar um diagrama desde um ficheiro.</translation> </message> <message> - <location filename="../Project/Project.py" line="4147"/> + <location filename="../Project/Project.py" line="4152"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Carregar Diagrama...</b><p>Carga um diagrama desde um ficheiro.</p></translation> </message> @@ -53483,12 +53483,12 @@ <translation>Consola de PyQt5</translation> </message> <message> - <location filename="../Project/Project.py" line="4753"/> + <location filename="../Project/Project.py" line="4758"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -53508,17 +53508,17 @@ <translation>Complemento de Eric6</translation> </message> <message> - <location filename="../Project/Project.py" line="4161"/> + <location filename="../Project/Project.py" line="4166"/> <source>Create an initial PKGLIST file for an eric6 plugin.</source> <translation>Criar um ficheiro PKGLIST inicial para complemento eric6.</translation> </message> <message> - <location filename="../Project/Project.py" line="4163"/> + <location filename="../Project/Project.py" line="4168"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5340"/> + <location filename="../Project/Project.py" line="5345"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -53528,228 +53528,228 @@ <translation type="obsolete"><p>O ficheiro de complemento de eric6 <b>{0}</b> foi criado com êxito.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3897"/> + <location filename="../Project/Project.py" line="3902"/> <source>Search for a file in the project list of files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3904"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5269"/> + <location filename="../Project/Project.py" line="5274"/> <source>Create Plugin Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4172"/> - <source>Create Plugin &Archives</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4177"/> + <source>Create Plugin &Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4182"/> <source>Create eric6 plugin archive files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4179"/> + <location filename="../Project/Project.py" line="4184"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> + <location filename="../Project/Project.py" line="4194"/> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (&Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4199"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4196"/> + <location filename="../Project/Project.py" line="4201"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5247"/> + <location filename="../Project/Project.py" line="5252"/> <source>Select package lists:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Creating plugin archives...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>%v/%m Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5282"/> + <location filename="../Project/Project.py" line="5287"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"><p>O ficheiro <b>{0}</b> não se pôde ler. </p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5394"/> + <location filename="../Project/Project.py" line="5399"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5397"/> + <location filename="../Project/Project.py" line="5402"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5258"/> + <location filename="../Project/Project.py" line="5263"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5312"/> + <location filename="../Project/Project.py" line="5317"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3882"/> + <location filename="../Project/Project.py" line="3887"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3940"/> + <location filename="../Project/Project.py" line="3945"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source>Create Makefile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4210"/> + <location filename="../Project/Project.py" line="4215"/> <source>&Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4214"/> + <location filename="../Project/Project.py" line="4219"/> <source>Perform a 'make' run.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4216"/> + <location filename="../Project/Project.py" line="4221"/> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5654"/> + <location filename="../Project/Project.py" line="5659"/> <source>Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4229"/> <source>&Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4228"/> + <location filename="../Project/Project.py" line="4233"/> <source>Question 'make', if a rebuild is needed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4230"/> + <location filename="../Project/Project.py" line="4235"/> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4272"/> + <location filename="../Project/Project.py" line="4277"/> <source>Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5602"/> + <location filename="../Project/Project.py" line="5607"/> <source>The make process did not start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5647"/> + <location filename="../Project/Project.py" line="5652"/> <source>The make process crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5657"/> - <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="5662"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5667"/> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>The makefile contains errors.</source> <translation type="unfinished"></translation> </message> @@ -54009,7 +54009,7 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="947"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1011"/> <source>Forms</source> <translation>Formulários</translation> </message> @@ -54059,182 +54059,182 @@ <translation>Caixa de Diálogo com Botões (Direita)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="149"/> + <location filename="../Project/ProjectFormsBrowser.py" line="158"/> <source>Compile form</source> <translation>Compilar formulário</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="327"/> + <location filename="../Project/ProjectFormsBrowser.py" line="352"/> <source>Compile all forms</source> <translation>Compilar todos</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="160"/> + <location filename="../Project/ProjectFormsBrowser.py" line="169"/> <source>Generate Dialog Code...</source> <translation>Criar Código de Caixa de Diálogo...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="238"/> + <location filename="../Project/ProjectFormsBrowser.py" line="255"/> <source>Open in Qt-Designer</source> <translation>Abrir no Qt-Designer</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="240"/> - <source>Open in Editor</source> - <translation>Abrir no Editor</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="144"/> - <source>Preview form</source> - <translation>Antever form</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="243"/> - <source>Preview translations</source> - <translation>Antever traduções</translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="257"/> + <source>Open in Editor</source> + <translation>Abrir no Editor</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="153"/> + <source>Preview form</source> + <translation>Antever form</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="260"/> + <source>Preview translations</source> + <translation>Antever traduções</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="274"/> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="175"/> + <location filename="../Project/ProjectFormsBrowser.py" line="184"/> <source>Rename file</source> <translation>Renomear ficheiro</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="288"/> - <source>Remove from project</source> - <translation>Retirar do projeto</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="291"/> - <source>Delete</source> - <translation>Apagar</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="300"/> - <source>New form...</source> - <translation>Novo formulário...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="333"/> - <source>Add forms...</source> - <translation>Adicionar formulários...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="335"/> - <source>Add forms directory...</source> - <translation>Adicionar diretório de formulários...</translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="309"/> + <source>Remove from project</source> + <translation>Retirar do projeto</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="312"/> + <source>Delete</source> + <translation>Apagar</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="321"/> + <source>New form...</source> + <translation>Novo formulário...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="358"/> + <source>Add forms...</source> + <translation>Adicionar formulários...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="360"/> + <source>Add forms directory...</source> + <translation>Adicionar diretório de formulários...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="330"/> <source>Copy Path to Clipboard</source> <translation>Copiar Rota à Área de Transferência</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="338"/> + <location filename="../Project/ProjectFormsBrowser.py" line="363"/> <source>Expand all directories</source> <translation>Expandir os diretórios todos</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="340"/> + <location filename="../Project/ProjectFormsBrowser.py" line="365"/> <source>Collapse all directories</source> <translation>Colapsar os diretórios todos</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="343"/> + <location filename="../Project/ProjectFormsBrowser.py" line="368"/> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="247"/> + <location filename="../Project/ProjectFormsBrowser.py" line="264"/> <source>Compile forms</source> <translation>Compilar formulários</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source>New Form</source> <translation>Novo Formulário</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="549"/> + <location filename="../Project/ProjectFormsBrowser.py" line="574"/> <source>Select a form type:</source> <translation>Selecionar o tipo de form:</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="563"/> + <location filename="../Project/ProjectFormsBrowser.py" line="588"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>Ficheiros de Interface de Usuário Qt (*.ui);;Ficheiros Todos (*)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="582"/> + <location filename="../Project/ProjectFormsBrowser.py" line="607"/> <source>The file already exists! Overwrite it?</source> <translation>O ficheiro já existe. Sobreescrever?</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation><p>O ficheiro do novo formulário <b>{0}</b> não pôde ser criado.<br>Problema: {1}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Delete forms</source> <translation>Apagar formulários</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Do you really want to delete these forms from the project?</source> <translation>Tem a certeza de que quer apagar estes formulários do projeto?</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>Form Compilation</source> <translation>Compilação de Formulários</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="698"/> + <location filename="../Project/ProjectFormsBrowser.py" line="776"/> <source>The compilation of the form file was successful.</source> <translation>A compilação do form teve êxito.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="713"/> + <location filename="../Project/ProjectFormsBrowser.py" line="791"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation><p>Falhou a compilação do ficheiro do formulário.</p><p>Razão: {0}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>The compilation of the form file failed.</source> <translation>A compilação do ficheiro do form falhou.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Process Generation Error</source> <translation>Erro na Criação de Processo</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>Não pôde iniciar {0}.<br>Certifique-se de que está na rota de pesquisa.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="905"/> + <location filename="../Project/ProjectFormsBrowser.py" line="969"/> <source>Compiling forms...</source> <translation>A compilar formulários...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Abort</source> <translation>Terminar</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Determining changed forms...</source> <translation>A determinar formulários alterados...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="972"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1036"/> <source>Compiling changed forms...</source> <translation>A compilar formulários alterados...</translation> </message> @@ -54289,10 +54289,20 @@ <translation>QStackedWidget</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>%v/%m Forms</source> <translation>%v/%m Formulários</translation> </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>Configure uic Compiler</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>No project specific uic compiler flags are supported for PySide or PySide2.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectInterfacesBrowser</name> @@ -75902,6 +75912,44 @@ </message> </context> <context> + <name>UicCompilerOptionsDialog</name> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="14"/> + <source>uic Compiler Options</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="23"/> + <source>'import' Package</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="29"/> + <source>Enter the package name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="36"/> + <source><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="49"/> + <source>Resources Suffix</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="55"/> + <source>Enter the suffix of compiled resource files (default: _rc)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="62"/> + <source><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>UnittestDialog</name> <message> <location filename="../PyUnit/UnittestDialog.py" line="405"/> @@ -85775,22 +85823,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1871"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> <source>Web Archive (*.mhtml *.mht)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1872"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1874"/> <source>HTML File (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1875"/> <source>HTML File with all resources (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1897"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1899"/> <source>Save Web Page</source> <translation type="unfinished"></translation> </message> @@ -85800,22 +85848,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source>Quota Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source>Protocol Handler Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source><p> Allow the website at <b>{0}</b> to open all <b>{1}</b> links?</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_ru.ts Wed Nov 21 19:26:59 2018 +0100 +++ b/i18n/eric6_ru.ts Sat Nov 24 15:37:04 2018 +0100 @@ -5420,37 +5420,37 @@ <translation>Файл <b>'{0}'</b> существует, но не содержит ни одного класса.</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source>uic error</source> <translation>ошибка uic</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p>При загрузке формы <b>{0}</b> произошла ошибка:</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source>Code Generation</source> <translation>Генерация кода</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="618"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Невозможно открыть файл с шаблоном кода <b>{0}</b>:<br>Причина: {1}.</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="654"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Невозможно открыть файл с исходными текстами <b>{0}</b>:<br>Причина: {1}.</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Невозможно записать файл с исходными текстами <b>{0}</b>:<br>Причина: {1}.</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="208"/> <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> <translation type="unfinished"></translation> </message> @@ -50897,312 +50897,312 @@ <translation>Регистрация типа проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source>Read project file</source> <translation>Загрузить файл проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл проекта: <b>{0}</b></p></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source>Save project file</source> <translation>Сохранить файл проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл проекта: <b>{0}</b></p></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source>Read user project properties</source> <translation>Прочитать пользовательские настройки проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл пользовательских настроек <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source>Save user project properties</source> <translation>Сохранить пользовательские свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно записать файл пользовательских настроек <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source>Read project session</source> <translation>Загрузить сессию проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="1232"/> + <location filename="../Project/Project.py" line="1237"/> <source>Please save the project first.</source> <translation>Пожалуйста, сначала сохраните проект.</translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл с сессией проекта: <b>{0}</b></p></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source>Save project session</source> <translation>Сохранить сессию проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл с сессией проекта: <b>{0}</b></p></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source>Delete project session</source> <translation>Удалить сессию проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>Невозможно удалить выбранный файл с сессией: <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source>Read tasks</source> <translation>Прочитать задачи</translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <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="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source>Save tasks</source> <translation>Сохранить задачи</translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл с задачами: <b>{0}</b></p></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source>Read debugger properties</source> <translation>Прочитать свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл свойств отладчика <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source>Save debugger properties</source> <translation>Сохранить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл свойств отладчика <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source>Delete debugger properties</source> <translation>Удалить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>Невозможно удалить файл свойств отладчика <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>Add Language</source> <translation>Добавить язык перевода</translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>You have to specify a translation pattern first.</source> <translation>Необходимо сначала задать шаблон перевода.</translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source>Delete translation</source> <translation>Удалить перевод</translation> </message> <message> - <location filename="../Project/Project.py" line="1659"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add file</source> <translation>Добавить файл</translation> </message> <message> - <location filename="../Project/Project.py" line="1721"/> + <location filename="../Project/Project.py" line="1726"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1646"/> + <location filename="../Project/Project.py" line="1651"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>Невозможно добавить выделенный файл <b>{0}</b> в архив <b>{1}</b>. </p><p>Причина: {2}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1789"/> + <location filename="../Project/Project.py" line="1794"/> <source>The target directory must not be empty.</source> <translation>Целевая директория не должна быть пустой.</translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>Add directory</source> <translation>Добавление директории</translation> </message> <message> - <location filename="../Project/Project.py" line="1690"/> + <location filename="../Project/Project.py" line="1695"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>Директория не содержит ни одного файла, принадлежащего к заданной категории.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1703"/> + <location filename="../Project/Project.py" line="1708"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Невозможно создать директорию <b>{0}</b> </p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>The source directory must not be empty.</source> <translation>Исходная директория не должна быть пустой.</translation> </message> <message> - <location filename="../Project/Project.py" line="1937"/> + <location filename="../Project/Project.py" line="1942"/> <source>Rename file</source> <translation>Переименовать файл</translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source>Rename File</source> <translation>Переименовать файл</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>Невозможно переименовать файл <b>{0}</b>:<br>Причина: {1}.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source>Delete file</source> <translation>Удалить файл</translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source>Delete directory</source> <translation>Удалить директорию</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source>Create project directory</source> <translation>Создать директорию проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>Невозможно создать директорию проекта <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>New Project</source> <translation>Новый проект</translation> </message> <message> - <location filename="../Project/Project.py" line="2436"/> + <location filename="../Project/Project.py" line="2441"/> <source>Add existing files to the project?</source> <translation>Добавить существующие файлы в проект?</translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>Select Version Control System</source> <translation>Выберите систему контроля версий (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="2555"/> + <location filename="../Project/Project.py" line="2560"/> <source>Would you like to edit the VCS command options?</source> <translation>Вы хотите редактировать параметры команд VCS?</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>New project</source> <translation>Новый проект</translation> </message> <message> - <location filename="../Project/Project.py" line="2503"/> + <location filename="../Project/Project.py" line="2508"/> <source>Shall the project file be added to the repository?</source> <translation>Добавить ли файл проекта в репозиторий?</translation> </message> <message> - <location filename="../Project/Project.py" line="2534"/> + <location filename="../Project/Project.py" line="2539"/> <source>None</source> <translation>None</translation> </message> <message> - <location filename="../Project/Project.py" line="2527"/> + <location filename="../Project/Project.py" line="2532"/> <source>Select version control system for the project</source> <translation>Выберите систему контроля версий для проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Translation Pattern</source> <translation>Шаблон перевода</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Введите шаблон пути для файлов переводов (используйте '%language%' вместо language code):</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> + <location filename="../Project/Project.py" line="3783"/> <source>Open project</source> <translation>Открыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3057"/> + <location filename="../Project/Project.py" line="3062"/> <source>Project Files (*.e4p)</source> <translation>Файлы проектов (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save project as</source> <translation>Сохранить проект как</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source>Save File</source> <translation>Сохранить файл</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>Close Project</source> <translation>Закрыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>The current project has unsaved changes.</source> <translation>Изменения в текущем проекте не сохранены.</translation> </message> <message> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>Syntax errors detected</source> <translation>Найдены синтаксические ошибки</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Проект содержит %n файл с синтаксической ошибкой.</numerusform> @@ -51211,351 +51211,351 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>&New...</source> <translation>&Новый...</translation> </message> <message> - <location filename="../Project/Project.py" line="3769"/> + <location filename="../Project/Project.py" line="3774"/> <source>Generate a new project</source> <translation>Создать новый проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3770"/> + <location filename="../Project/Project.py" line="3775"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Новый...</b><p>Открытие диалога ввода информации о новом проекте.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>&Open...</source> - <translation>&Открыть...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3783"/> + <source>&Open...</source> + <translation>&Открыть...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3788"/> <source>Open an existing project</source> <translation>Открыть существующий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3784"/> + <location filename="../Project/Project.py" line="3789"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Открыть...</b><p>Открытие существующего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> - <source>Close project</source> - <translation>Закрыть проект</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3791"/> - <source>&Close</source> - <translation>&Закрыть</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3795"/> - <source>Close the current project</source> - <translation>Закрыть текущий проект</translation> - </message> - <message> <location filename="../Project/Project.py" line="3796"/> + <source>Close project</source> + <translation>Закрыть проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> + <source>&Close</source> + <translation>&Закрыть</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3800"/> + <source>Close the current project</source> + <translation>Закрыть текущий проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3801"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Закрыть</b><p>Закрытие текущего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> - <source>Save project</source> - <translation>Сохранить проект</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3995"/> - <source>&Save</source> - <translation>&Сохранить</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Save the current project</source> - <translation>Сохранить текущий проект</translation> - </message> - <message> <location filename="../Project/Project.py" line="3808"/> + <source>Save project</source> + <translation>Сохранить проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4000"/> + <source>&Save</source> + <translation>&Сохранить</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3812"/> + <source>Save the current project</source> + <translation>Сохранить текущий проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3813"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Сохранить</b><p>Сохранение текущего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save &as...</source> <translation>Сохранить &как...</translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> + <location filename="../Project/Project.py" line="3824"/> <source>Save the current project to a new file</source> <translation>Сохранить текущий проект в новый файл</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> + <location filename="../Project/Project.py" line="3826"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Сохранить как</b><p> Сохранение текущего проекта в новый файл.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add files to project</source> - <translation>Добавить файлы в проект</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add &files...</source> - <translation>Добавить &файлы...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3835"/> + <source>Add files to project</source> + <translation>Добавить файлы в проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3835"/> + <source>Add &files...</source> + <translation>Добавить &файлы...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3840"/> <source>Add files to the current project</source> <translation>Добавить файлы в текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> + <location filename="../Project/Project.py" line="3842"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Добавить файлы</b> <p>Открытие диалога добавления файлов в текущий проект. Место добавления определяется расширением файла.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory to project</source> - <translation>Добавить директорию в проект</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory...</source> - <translation>Добавить директорию...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3851"/> + <source>Add directory to project</source> + <translation>Добавить директорию в проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3851"/> + <source>Add directory...</source> + <translation>Добавить директорию...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3856"/> <source>Add a directory to the current project</source> <translation>Добавить директорию в текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> + <location filename="../Project/Project.py" line="3858"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Добавить директорию...</b> <p>Открытие диалога добавления директории к текущему проекту.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> + <location filename="../Project/Project.py" line="3866"/> <source>Add translation to project</source> <translation>Добавить перевод в проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add &translation...</source> - <translation>Добавить &перевод...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3866"/> + <source>Add &translation...</source> + <translation>Добавить &перевод...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source>Add a translation to the current project</source> <translation>Добавить перевод в текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3868"/> + <location filename="../Project/Project.py" line="3873"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Добавить перевод...</b><p>Открытие диалога добавления перевода в текущий проект.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Search new files</source> <translation>Поиск новых файлов</translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Searc&h new files...</source> <translation>Поис&к новых файлов...</translation> </message> <message> - <location filename="../Project/Project.py" line="3880"/> + <location filename="../Project/Project.py" line="3885"/> <source>Search new files in the project directory.</source> <translation>Поиск новых файлов в директории проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> + <location filename="../Project/Project.py" line="3911"/> <source>Project properties</source> <translation>Свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> - <source>&Properties...</source> - <translation>&Свойства...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3911"/> + <source>&Properties...</source> + <translation>&Свойства...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3916"/> <source>Show the project properties</source> <translation>Показать свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3917"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Свойства...</b><p>Отображение диалога для редактирования свойств проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> + <location filename="../Project/Project.py" line="3924"/> <source>User project properties</source> <translation>Пользовательские настройки проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> - <source>&User Properties...</source> - <translation>&Пользовательские свойства...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3924"/> + <source>&User Properties...</source> + <translation>&Пользовательские свойства...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3929"/> <source>Show the user specific project properties</source> <translation>Показать пользовательские свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="3926"/> + <location filename="../Project/Project.py" line="3931"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Пользовательские свойства...</b><p>Отображает диалог редактирования пользовательских свойств проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations</source> <translation>Ассоциации типа файлов</translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations...</source> <translation>Ассоциации типа файлов...</translation> </message> <message> - <location filename="../Project/Project.py" line="3938"/> + <location filename="../Project/Project.py" line="3943"/> <source>Show the project filetype associations</source> <translation>Показать ассоциации типов файлов для проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations</source> <translation>Ассоциации для лексеров</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations...</source> <translation>Ассоциации для лексеров...</translation> </message> <message> - <location filename="../Project/Project.py" line="3956"/> + <location filename="../Project/Project.py" line="3961"/> <source>Show the project lexer associations (overriding defaults)</source> <translation>Показать ассоциации для лексеров</translation> </message> <message> - <location filename="../Project/Project.py" line="3958"/> + <location filename="../Project/Project.py" line="3963"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Ассоциации для лексеров...</b><p>Показать ассоциации лексеров для проекта. Эти ассоциации переопределяют глобальные ассоциации лексеров. Лексеры используются для подсвечивания текста в редакторе.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger Properties</source> - <translation>Свойства отладчика</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger &Properties...</source> - <translation>&Свойства отладчика...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3974"/> - <source>Show the debugger properties</source> - <translation>Показать свойства отладчика</translation> - </message> - <message> <location filename="../Project/Project.py" line="3975"/> + <source>Debugger Properties</source> + <translation>Свойства отладчика</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3975"/> + <source>Debugger &Properties...</source> + <translation>&Свойства отладчика...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3979"/> + <source>Show the debugger properties</source> + <translation>Показать свойства отладчика</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3980"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Свойства отладчика...</b> <p>Отображение диалога редактирования свойств отладчика, специфичных для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> + <location filename="../Project/Project.py" line="3988"/> <source>Load</source> <translation>Загрузить</translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> - <source>&Load</source> - <translation>&Загрузить</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3987"/> - <source>Load the debugger properties</source> - <translation>Загрузить свойства отладчика</translation> - </message> - <message> <location filename="../Project/Project.py" line="3988"/> + <source>&Load</source> + <translation>&Загрузить</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3992"/> + <source>Load the debugger properties</source> + <translation>Загрузить свойства отладчика</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3993"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Загрузить свойства отладчика</b> <p>Загрузить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3995"/> - <source>Save</source> - <translation>Сохранить</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3999"/> - <source>Save the debugger properties</source> - <translation>Сохранить свойства отладчика</translation> - </message> - <message> <location filename="../Project/Project.py" line="4000"/> + <source>Save</source> + <translation>Сохранить</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4004"/> + <source>Save the debugger properties</source> + <translation>Сохранить свойства отладчика</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4005"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Сохранить свойства отладчика</b><p>Сохранить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4007"/> + <location filename="../Project/Project.py" line="4012"/> <source>Delete</source> <translation>Удалить</translation> </message> <message> - <location filename="../Project/Project.py" line="4007"/> - <source>&Delete</source> - <translation>&Удалить</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4011"/> - <source>Delete the debugger properties</source> - <translation>Удалить свойства отладчика</translation> - </message> - <message> <location filename="../Project/Project.py" line="4012"/> + <source>&Delete</source> + <translation>&Удалить</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4016"/> + <source>Delete the debugger properties</source> + <translation>Удалить свойства отладчика</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4017"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Удалить свойства отладчика</b><p>Удалить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> + <location filename="../Project/Project.py" line="4025"/> <source>Reset</source> <translation>Сбросить</translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> - <source>&Reset</source> - <translation>&Сбросить</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4024"/> - <source>Reset the debugger properties</source> - <translation>Сбросить свойства отладчика</translation> - </message> - <message> <location filename="../Project/Project.py" line="4025"/> + <source>&Reset</source> + <translation>&Сбросить</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4029"/> + <source>Reset the debugger properties</source> + <translation>Сбросить свойства отладчика</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4030"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Сбросить свойства отладчика</b><p>Сбросить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4034"/> - <source>Load session</source> - <translation>Загрузить сессию</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4038"/> - <source>Load the projects session file.</source> - <translation>Загрузить файл с сессией проекта.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4039"/> + <source>Load session</source> + <translation>Загрузить сессию</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4043"/> + <source>Load the projects session file.</source> + <translation>Загрузить файл с сессией проекта.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4044"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Загрузить сессию</b> <p>Загрузить файл с сессией проекта. Сессия содержит следующие данные:<br> @@ -51567,17 +51567,17 @@ </p></translation> </message> <message> - <location filename="../Project/Project.py" line="4052"/> + <location filename="../Project/Project.py" line="4057"/> <source>Save session</source> <translation>Сохранить сессию</translation> </message> <message> - <location filename="../Project/Project.py" line="4056"/> + <location filename="../Project/Project.py" line="4061"/> <source>Save the projects session file.</source> <translation>Сохранить файл с сессией проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="4057"/> + <location filename="../Project/Project.py" line="4062"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Сохранить сессию</b> <p>Сохранить файл с сессией проекта. Сессия содержит следующие данные:<br> @@ -51589,252 +51589,252 @@ </p></translation> </message> <message> - <location filename="../Project/Project.py" line="4070"/> + <location filename="../Project/Project.py" line="4075"/> <source>Delete session</source> <translation>Удалить сессию</translation> </message> <message> - <location filename="../Project/Project.py" line="4074"/> + <location filename="../Project/Project.py" line="4079"/> <source>Delete the projects session file.</source> <translation>Удалить файл с сессией проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="4075"/> + <location filename="../Project/Project.py" line="4080"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Удалить сессию</b><p>Удалить файл с сессией проекта</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>Code Metrics</source> <translation>Статистика кода</translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>&Code Metrics...</source> <translation>&Статистика кода...</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4093"/> <source>Show some code metrics for the project.</source> <translation>Отображение статистики кода проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="4090"/> + <location filename="../Project/Project.py" line="4095"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Статистика кода...</b><p>Отображение статистики кода проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Python Code Coverage</source> <translation>Охват кода Python</translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Code Co&verage...</source> <translation>&Заключения по коду...</translation> </message> <message> - <location filename="../Project/Project.py" line="4102"/> + <location filename="../Project/Project.py" line="4107"/> <source>Show code coverage information for the project.</source> <translation>Показать заключение охвата по коду проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="4104"/> + <location filename="../Project/Project.py" line="4109"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Заключение по охвату коду...</b><p>Показать заключение охвата по коду всех файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Profile Data</source> <translation>Данные профайлера</translation> </message> <message> - <location filename="../Project/Project.py" line="4112"/> + <location filename="../Project/Project.py" line="4117"/> <source>&Profile Data...</source> <translation>&Данные профайлера...</translation> </message> <message> - <location filename="../Project/Project.py" line="4116"/> + <location filename="../Project/Project.py" line="4121"/> <source>Show profiling data for the project.</source> <translation>Отображение результатов профилирования проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="4118"/> + <location filename="../Project/Project.py" line="4123"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Данные профайлера...</b><p>Отображение результатов профилирования проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Application Diagram</source> <translation>Диаграмма приложения</translation> </message> <message> - <location filename="../Project/Project.py" line="4127"/> + <location filename="../Project/Project.py" line="4132"/> <source>&Application Diagram...</source> <translation>&Диаграмма приложения...</translation> </message> <message> - <location filename="../Project/Project.py" line="4131"/> + <location filename="../Project/Project.py" line="4136"/> <source>Show a diagram of the project.</source> <translation>Показать диаграмму проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="4133"/> + <location filename="../Project/Project.py" line="4138"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Диаграмма приложения...</b><p>Отображает диаграмму проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source>Create Package List</source> <translation>Создать список пакета</translation> </message> <message> - <location filename="../Project/Project.py" line="4156"/> + <location filename="../Project/Project.py" line="4161"/> <source>Create &Package List</source> <translation>&Создать список пакета</translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source>Create Plugin Archive</source> <translation>Создать архив плагина</translation> </message> <message> - <location filename="../Project/Project.py" line="4172"/> + <location filename="../Project/Project.py" line="4177"/> <source>Create Plugin &Archives</source> <translation>Создать архивы &плагина</translation> </message> <message> - <location filename="../Project/Project.py" line="4257"/> + <location filename="../Project/Project.py" line="4262"/> <source>&Project</source> <translation>&Проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4258"/> - <source>Open &Recent Projects</source> - <translation>Открыть &недавние проекты</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4259"/> - <source>&Version Control</source> - <translation>Контроль &версий</translation> - </message> - <message> <location filename="../Project/Project.py" line="4263"/> - <source>Chec&k</source> - <translation>&Проверки</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4265"/> - <source>Sho&w</source> - <translation>По&казать</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4266"/> - <source>&Diagrams</source> - <translation>&Диаграммы</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4267"/> - <source>Session</source> - <translation>Сессия</translation> + <source>Open &Recent Projects</source> + <translation>Открыть &недавние проекты</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4264"/> + <source>&Version Control</source> + <translation>Контроль &версий</translation> </message> <message> <location filename="../Project/Project.py" line="4268"/> - <source>Source &Documentation</source> - <translation>&Документация исходников</translation> + <source>Chec&k</source> + <translation>&Проверки</translation> </message> <message> <location filename="../Project/Project.py" line="4270"/> - <source>Debugger</source> - <translation>Отладка</translation> + <source>Sho&w</source> + <translation>По&казать</translation> </message> <message> <location filename="../Project/Project.py" line="4271"/> + <source>&Diagrams</source> + <translation>&Диаграммы</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4272"/> + <source>Session</source> + <translation>Сессия</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4273"/> + <source>Source &Documentation</source> + <translation>&Документация исходников</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4275"/> + <source>Debugger</source> + <translation>Отладка</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4276"/> <source>Pac&kagers</source> <translation>У&паковщики</translation> </message> <message> - <location filename="../Project/Project.py" line="4390"/> + <location filename="../Project/Project.py" line="4395"/> <source>Project</source> <translation>Проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4456"/> + <location filename="../Project/Project.py" line="4461"/> <source>&Clear</source> <translation>&Очистить</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>Search New Files</source> <translation>Поиск новых файлов</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>There were no new files found to be added.</source> <translation>Не найдено файлов для добавления.</translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source>Version Control System</source> <translation>Система контроля версий</translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Контроль версий отключен.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4893"/> + <location filename="../Project/Project.py" line="4898"/> <source>Coverage Data</source> <translation>Данные охвата</translation> </message> <message> - <location filename="../Project/Project.py" line="4943"/> + <location filename="../Project/Project.py" line="4948"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Code Coverage</source> <translation>Охват кода</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Please select a coverage file</source> <translation>Пожалуйста, выберите файл для информации охвата</translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Please select a profile file</source> <translation>Пожалуйста, выберите файл профиля</translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Include module names?</source> <translation>Включать имена модулей?</translation> </message> <message> - <location filename="../Project/Project.py" line="5165"/> + <location filename="../Project/Project.py" line="5170"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Файл <b>PKGLIST</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Невозможно создать файл <b>PKGLIST</b>.</p><p>Причина: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5233"/> + <location filename="../Project/Project.py" line="5238"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Для текущего проекта не определён главный сценарий. Отмена...</translation> </message> <message> - <location filename="../Project/Project.py" line="5375"/> + <location filename="../Project/Project.py" line="5380"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Невозможно сохранить файл <b>{0}</b> в архиве. Игнорируем его.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5449"/> + <location filename="../Project/Project.py" line="5454"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл плагина <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> @@ -51844,32 +51844,32 @@ <translation>Файлы Python2 (*.py2);;Файлы Python2 GUI (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source>Create main script</source> <translation>Создать главный сценарий</translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>Невозможно создать главный файл проекта<b>{0}</b>.<br>Причина: {1}.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>Load Diagram</source> <translation>Загрузить диаграмму</translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>&Load Diagram...</source> <translation>&Загрузить диаграмму...</translation> </message> <message> - <location filename="../Project/Project.py" line="4145"/> + <location filename="../Project/Project.py" line="4150"/> <source>Load a diagram from file.</source> <translation>Загрузить диаграмму из файла.</translation> </message> <message> - <location filename="../Project/Project.py" line="4147"/> + <location filename="../Project/Project.py" line="4152"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Загрузить диаграмму...</b><p>Загрузить диаграмму из файла.</p></translation> </message> @@ -51899,37 +51899,37 @@ <translation>Консоль PyQt5</translation> </message> <message> - <location filename="../Project/Project.py" line="4753"/> + <location filename="../Project/Project.py" line="4758"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Возврат отвергнут.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл плагина <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4161"/> + <location filename="../Project/Project.py" line="4166"/> <source>Create an initial PKGLIST file for an eric6 plugin.</source> <translation>Создать первичный файл PKGLIST для плагина Eric6.</translation> </message> <message> - <location filename="../Project/Project.py" line="4163"/> + <location filename="../Project/Project.py" line="4168"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation><b>Создать список пакета</b><p>Создаёт начальный список файлов для включения в архив плагина Eric6. Список создаётся из файла проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4177"/> + <location filename="../Project/Project.py" line="4182"/> <source>Create eric6 plugin archive files.</source> <translation>Создание архивных файлов плагина eric6.</translation> </message> <message> - <location filename="../Project/Project.py" line="4179"/> + <location filename="../Project/Project.py" line="4184"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation><b>Создать архивы плагина</b><p>Создание архивных файлов плагина eric6, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в в файле со списком пакета, создается из имени главного скрипта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5340"/> + <location filename="../Project/Project.py" line="5345"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Невозможно создать архив плагина <b>{0}</b> Eric6.</p><p>Причина: {1}</p></translation> </message> @@ -51949,213 +51949,213 @@ <translation>Плагин Eric6</translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source>Create project management directory</source> <translation>Создать служебную директорию проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation><p>Директория проекта <b>{0}</b> не доступна для записи.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="3897"/> + <location filename="../Project/Project.py" line="3902"/> <source>Search for a file in the project list of files.</source> <translation>Поиск файла в списке файлов проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3904"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation><b>Поиск файла проекта</b><p>Поиск файла в списке файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File</source> <translation>Поиск файла проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File...</source> <translation>Поиск файла проекта...</translation> </message> <message> - <location filename="../Project/Project.py" line="5269"/> + <location filename="../Project/Project.py" line="5274"/> <source>Create Plugin Archives</source> <translation>Создать архивы плагина</translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> + <location filename="../Project/Project.py" line="4194"/> <source>Create Plugin Archives (Snapshot)</source> <translation>Создать архивы плагина (Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (&Snapshot)</source> - <translation>Создать архивы плагина (&Snapshot)</translation> - </message> - <message> <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation>Создать архивы плагина (&Snapshot)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4199"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation>Создание архивных файлов плагина eric6 (snapshot releases).</translation> </message> <message> - <location filename="../Project/Project.py" line="4196"/> + <location filename="../Project/Project.py" line="4201"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation><b>Создать архивы плагина (Snapshot)</b><p>Создание архивных файлов плагина eric6, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в в файле со списком пакета, создается из имени главного сценария. Версия главного скрипта изменяется в соответствии релизом snapshot.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5247"/> + <location filename="../Project/Project.py" line="5252"/> <source>Select package lists:</source> <translation>Выбор списков пакета:</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Creating plugin archives...</source> <translation>Создание архивов плагина...</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Abort</source> <translation>Прервать</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>%v/%m Archives</source> <translation>%v из %m архивов</translation> </message> <message> - <location filename="../Project/Project.py" line="5282"/> + <location filename="../Project/Project.py" line="5287"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5394"/> + <location filename="../Project/Project.py" line="5399"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation><p>Файлы архива плагина eric6 были созданы с ошибками.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5397"/> + <location filename="../Project/Project.py" line="5402"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation><p>Файлы архива плагина eric6 созданы успешно.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5258"/> + <location filename="../Project/Project.py" line="5263"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation><p>Файлы со списком пакета (PKGLIST*) не доступны или не выбраны. Отмена...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5312"/> + <location filename="../Project/Project.py" line="5317"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation><p>Файл <b>{0}</b> пока не готов.</p><p>Пожалуйста переработайте его и удалите строки '; initial_list' из его заголовка.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3882"/> + <location filename="../Project/Project.py" line="3887"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation><b>Поиск новых файлов...</b><p> Поиск новых файлов (источники, * .ui, * .idl, * .proto) в директории проекта и зарегистрированных поддиректориях..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3940"/> + <location filename="../Project/Project.py" line="3945"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Ассоциации типов файлов...</b><p>Отображается диалоговое окно для редактирования ассоциаций типов файлов проекта. Эти ассоциации определяют тип (источник, форму, интерфейс, протокол или другие) с шаблоном имени файла. Они используются при добавлении файла в проект и при поиске новых файлов.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>Невозможно удалить файла перевода <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>Невозможно удалить выбранный файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>Невозможно удалить выбранную директорию <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source>Create Makefile</source> <translation>Создать Makefile</translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>Файл makefile <b>{0}</b> невозможно создать.<br/>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>Execute Make</source> <translation>Выполнить Make</translation> </message> <message> - <location filename="../Project/Project.py" line="4210"/> + <location filename="../Project/Project.py" line="4215"/> <source>&Execute Make</source> <translation>&Выполнить Make</translation> </message> <message> - <location filename="../Project/Project.py" line="4214"/> + <location filename="../Project/Project.py" line="4219"/> <source>Perform a 'make' run.</source> <translation>Выполнить прогон 'make'.</translation> </message> <message> - <location filename="../Project/Project.py" line="4216"/> + <location filename="../Project/Project.py" line="4221"/> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation><b>Выполнить Make</b><p>Выполнение прогона 'make' для пересборки настроеной цели.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5654"/> + <location filename="../Project/Project.py" line="5659"/> <source>Test for Changes</source> <translation>Проверить изменения</translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4229"/> <source>&Test for Changes</source> <translation>&Проверить изменения</translation> </message> <message> - <location filename="../Project/Project.py" line="4228"/> + <location filename="../Project/Project.py" line="4233"/> <source>Question 'make', if a rebuild is needed.</source> <translation>Запрос 'make', если необходима пересборка.</translation> </message> <message> - <location filename="../Project/Project.py" line="4230"/> + <location filename="../Project/Project.py" line="4235"/> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation><b>Проверка изменений</b><p>Запрос 'make', если требуется пересборка настроенной цели.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4272"/> + <location filename="../Project/Project.py" line="4277"/> <source>Make</source> <translation>Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5602"/> + <location filename="../Project/Project.py" line="5607"/> <source>The make process did not start.</source> <translation>Make-процесс не был запущен.</translation> </message> <message> - <location filename="../Project/Project.py" line="5647"/> + <location filename="../Project/Project.py" line="5652"/> <source>The make process crashed.</source> <translation>Make-процесс разрушен.</translation> </message> <message> - <location filename="../Project/Project.py" line="5657"/> - <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> - <translation><p>Существуют изменения, которые требуют конфигурации make-цели <b>{0}</b> для ее пересборки.</p></translation> - </message> - <message> <location filename="../Project/Project.py" line="5662"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation><p>Существуют изменения, которые требуют конфигурации make-цели <b>{0}</b> для ее пересборки.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5667"/> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation><p>Существуют изменения, которые требуют make-цель по умолчанию для ее пересборки.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>The makefile contains errors.</source> <translation>Makefile содержит ошибки.</translation> </message> @@ -52415,7 +52415,7 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="947"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1011"/> <source>Forms</source> <translation>Формы</translation> </message> @@ -52465,182 +52465,182 @@ <translation>Диалог с кнопками (справа)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="149"/> + <location filename="../Project/ProjectFormsBrowser.py" line="158"/> <source>Compile form</source> <translation>Компилировать форму</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="327"/> + <location filename="../Project/ProjectFormsBrowser.py" line="352"/> <source>Compile all forms</source> <translation>Компилировать все формы</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="160"/> + <location filename="../Project/ProjectFormsBrowser.py" line="169"/> <source>Generate Dialog Code...</source> <translation>Генерация кода диалога...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="238"/> + <location filename="../Project/ProjectFormsBrowser.py" line="255"/> <source>Open in Qt-Designer</source> <translation>Открыть в Qt-Designer</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="240"/> - <source>Open in Editor</source> - <translation>Открыть в редакторе</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="144"/> - <source>Preview form</source> - <translation>Предпросмотр формы</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="243"/> - <source>Preview translations</source> - <translation>Предпросмотр переводов</translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="257"/> + <source>Open in Editor</source> + <translation>Открыть в редакторе</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="153"/> + <source>Preview form</source> + <translation>Предпросмотр формы</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="260"/> + <source>Preview translations</source> + <translation>Предпросмотр переводов</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="274"/> <source>Open</source> <translation>Открыть</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="175"/> + <location filename="../Project/ProjectFormsBrowser.py" line="184"/> <source>Rename file</source> <translation>Переименовать файл</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="288"/> - <source>Remove from project</source> - <translation>Удалить из проекта</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="291"/> - <source>Delete</source> - <translation>Удалить</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="300"/> - <source>New form...</source> - <translation>Новая форма...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="333"/> - <source>Add forms...</source> - <translation>Добавить формы...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="335"/> - <source>Add forms directory...</source> - <translation>Добавить директорию с формами...</translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="309"/> + <source>Remove from project</source> + <translation>Удалить из проекта</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="312"/> + <source>Delete</source> + <translation>Удалить</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="321"/> + <source>New form...</source> + <translation>Новая форма...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="358"/> + <source>Add forms...</source> + <translation>Добавить формы...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="360"/> + <source>Add forms directory...</source> + <translation>Добавить директорию с формами...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="330"/> <source>Copy Path to Clipboard</source> <translation>Копировать путь в буфер обмена</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="338"/> + <location filename="../Project/ProjectFormsBrowser.py" line="363"/> <source>Expand all directories</source> <translation>Открыть все директории</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="340"/> + <location filename="../Project/ProjectFormsBrowser.py" line="365"/> <source>Collapse all directories</source> <translation>Закрыть все директории</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="343"/> + <location filename="../Project/ProjectFormsBrowser.py" line="368"/> <source>Configure...</source> <translation>Настроить...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="247"/> + <location filename="../Project/ProjectFormsBrowser.py" line="264"/> <source>Compile forms</source> <translation>Компилировать формы</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source>New Form</source> <translation>Новая форма</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="549"/> + <location filename="../Project/ProjectFormsBrowser.py" line="574"/> <source>Select a form type:</source> <translation>Выберите тип формы:</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="563"/> + <location filename="../Project/ProjectFormsBrowser.py" line="588"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>Файлы Qt интерфейса пользователя (*.ui);;Все файлы (*)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="582"/> + <location filename="../Project/ProjectFormsBrowser.py" line="607"/> <source>The file already exists! Overwrite it?</source> <translation>Файл уже существует! Перезаписать?</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation><p>Файл с формой <b>{0}</b> не может быть создан. Проблема: {1}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Delete forms</source> <translation>Удалить формы</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Do you really want to delete these forms from the project?</source> <translation>Вы действительно хотите удалить выбранные формы из проекта?</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>Form Compilation</source> <translation>Компиляция форм</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="698"/> + <location filename="../Project/ProjectFormsBrowser.py" line="776"/> <source>The compilation of the form file was successful.</source> <translation>Компиляция формы прошла успешно.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="713"/> + <location filename="../Project/ProjectFormsBrowser.py" line="791"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation><p>Компиляция формы не удалась.</p><p>Причина: {0}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>The compilation of the form file failed.</source> <translation>Компиляция формы не удалась.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Process Generation Error</source> <translation>Ошибка при запуске процесса</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>Невозможно запустить {0}.<br>Убедитесь, что он находится в путях поиска.</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="905"/> + <location filename="../Project/ProjectFormsBrowser.py" line="969"/> <source>Compiling forms...</source> <translation>Компилирую формы...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Abort</source> <translation>Прервать</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Determining changed forms...</source> <translation>Определяю изменённые формы...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="972"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1036"/> <source>Compiling changed forms...</source> <translation>Компилирую изменённые формы...</translation> </message> @@ -52695,10 +52695,20 @@ <translation>QStackedWidget</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>%v/%m Forms</source> <translation>%v/%m форм</translation> </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>Configure uic Compiler</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>No project specific uic compiler flags are supported for PySide or PySide2.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectInterfacesBrowser</name> @@ -74272,6 +74282,44 @@ </message> </context> <context> + <name>UicCompilerOptionsDialog</name> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="14"/> + <source>uic Compiler Options</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="23"/> + <source>'import' Package</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="29"/> + <source>Enter the package name</source> + <translation type="unfinished">Введите имя пакета</translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="36"/> + <source><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="49"/> + <source>Resources Suffix</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="55"/> + <source>Enter the suffix of compiled resource files (default: _rc)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="62"/> + <source><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>UnittestDialog</name> <message> <location filename="../PyUnit/UnittestDialog.py" line="405"/> @@ -84221,22 +84269,22 @@ <translation>Нет предложений</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1871"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> <source>Web Archive (*.mhtml *.mht)</source> <translation>Web архив (*.mhtml *.mht)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1872"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1874"/> <source>HTML File (*.html *.htm)</source> <translation>Файлы HTML (*.html *.htm)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1875"/> <source>HTML File with all resources (*.html *.htm)</source> <translation>Файлы HTML со всеми ресурсами (*.html *.htm)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1897"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1899"/> <source>Save Web Page</source> <translation>Сохранить Web страницу</translation> </message> @@ -84246,22 +84294,22 @@ <translation>Пустая страница</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source>Quota Request</source> <translation>Запрос квоты</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <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> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source>Protocol Handler Request</source> <translation>Запрос обработчика протокола</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source><p> Allow the website at <b>{0}</b> to open all <b>{1}</b> links?</p></source> <translation><p> Разрешить вебсайту <b>{0}</b> открыть всеl <b>{1}</b> ссылки?</p></translation> </message>
--- a/i18n/eric6_tr.ts Wed Nov 21 19:26:59 2018 +0100 +++ b/i18n/eric6_tr.ts Sat Nov 24 15:37:04 2018 +0100 @@ -5535,37 +5535,37 @@ <translation><b>{0}</b> dosyası mevcut ama hiçbir sınıf barındırmıyor.</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source>uic error</source> <translation>uic hatası</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p><b>{0}</b>.</p><p>{1} formlarını yüklerken hata meydana geldi</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source>Code Generation</source> <translation>Kod üretici</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="618"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Kod şablon dosyası "{0}" açılamıyor.</p><p>Sebep: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="654"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Kaynak dosyası açılamıyor "{0}".</p><p>.Sebep: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Kaynak dosyası "{0}"yazılamıyor.</p><p>Sebep: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="208"/> <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> <translation type="unfinished"></translation> </message> @@ -51890,312 +51890,312 @@ <translation>Kaydedilmiş Proje Türü</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source>Read project file</source> <translation>Proje dosyasını oku</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Proje dosyası <b>{0}</b> okunamdı.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source>Save project file</source> <translation>Proje dosyasını kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source>Read user project properties</source> <translation>Kullanıcı projesinin özelliklerini oku</translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source>Save user project properties</source> <translation>Kullanıcı projesinin özelliklerini kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source>Read project session</source> <translation>Proje oturumunu oku</translation> </message> <message> - <location filename="../Project/Project.py" line="1232"/> + <location filename="../Project/Project.py" line="1237"/> <source>Please save the project first.</source> <translation>Lütfen ilkolarak projeyi kaydedin.</translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source>Save project session</source> <translation>Proje oturumunu kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source>Delete project session</source> <translation>Proje oturumunu sil</translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source>Read tasks</source> <translation>Görevler Okunuyor</translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source>Save tasks</source> <translation>Görevleri kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source>Read debugger properties</source> <translation>Hata ayıklayıcı özelliklerini oku</translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source>Save debugger properties</source> <translation>Hata ayıklayıcı özelliklerini kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source>Delete debugger properties</source> <translation>Hata ayıklayıcı özelliklerini sil</translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>Add Language</source> <translation>Dil Ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>You have to specify a translation pattern first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source>Delete translation</source> <translation>Çeviriyi silin</translation> </message> <message> - <location filename="../Project/Project.py" line="1659"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add file</source> <translation>Dosya ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="1721"/> + <location filename="../Project/Project.py" line="1726"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1646"/> + <location filename="../Project/Project.py" line="1651"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1789"/> + <location filename="../Project/Project.py" line="1794"/> <source>The target directory must not be empty.</source> <translation>Hedef dizin boş olamaz.</translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>Add directory</source> <translation>Dizin Ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="1690"/> + <location filename="../Project/Project.py" line="1695"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1703"/> + <location filename="../Project/Project.py" line="1708"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>The source directory must not be empty.</source> <translation>Kaynak dizin boş olamaz.</translation> </message> <message> - <location filename="../Project/Project.py" line="1937"/> + <location filename="../Project/Project.py" line="1942"/> <source>Rename file</source> <translation>Dosya adını değiştir</translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source>Rename File</source> <translation>Dosya adını Değiştir</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p><b>{0}</b> dosyası halen mevcut. Üzerine yazılsın mı?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source>Delete file</source> <translation>Dosya sil</translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source>Delete directory</source> <translation>Dizini sil</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source>Create project directory</source> <translation>Proje dizinin oluştur</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>Proje dizini <b>{0}</b> oluşturulamıyor.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>New Project</source> <translation>Yeni Proje</translation> </message> <message> - <location filename="../Project/Project.py" line="2436"/> + <location filename="../Project/Project.py" line="2441"/> <source>Add existing files to the project?</source> <translation>Var olan dosyalar projeye eklensin mi?</translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>Select Version Control System</source> <translation>Sürüm Kontrol Sistemini Seç</translation> </message> <message> - <location filename="../Project/Project.py" line="2555"/> + <location filename="../Project/Project.py" line="2560"/> <source>Would you like to edit the VCS command options?</source> <translation>VCS komut seçeneklerini düzenlemek istiyor musunuz?</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>New project</source> <translation>Yeni Proje</translation> </message> <message> - <location filename="../Project/Project.py" line="2503"/> + <location filename="../Project/Project.py" line="2508"/> <source>Shall the project file be added to the repository?</source> <translation>Proje dosyaları kaynak havuzuna aktarılacak mı?</translation> </message> <message> - <location filename="../Project/Project.py" line="2534"/> + <location filename="../Project/Project.py" line="2539"/> <source>None</source> <translation>Yok</translation> </message> <message> - <location filename="../Project/Project.py" line="2527"/> + <location filename="../Project/Project.py" line="2532"/> <source>Select version control system for the project</source> <translation>proje için sürüm kontrol sistemini seçin</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Translation Pattern</source> <translation>Çeviri Kalıbı</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Çeviri dosylarınınyol kalıbını giriniz (kullanılan '% dil %'dil kodu):</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> + <location filename="../Project/Project.py" line="3783"/> <source>Open project</source> <translation>Projeyi aç</translation> </message> <message> - <location filename="../Project/Project.py" line="3057"/> + <location filename="../Project/Project.py" line="3062"/> <source>Project Files (*.e4p)</source> <translation>Proje Dosyaları (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save project as</source> <translation>projeyi farklı adda kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source>Save File</source> <translation>Dosyayı Kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>Close Project</source> <translation>Projeyi Kapat</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>The current project has unsaved changes.</source> <translation>Geçerli projede kaydedilmemiş dosyalar var.</translation> </message> <message> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>Syntax errors detected</source> <translation>Sözdizimi Hataları tespit edildi</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>The project contains %n file(s) with syntax errors.</source> <translation type="unfinished"> <numerusform></numerusform> @@ -52203,612 +52203,612 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>&New...</source> <translation>Ye&ni...</translation> </message> <message> - <location filename="../Project/Project.py" line="3769"/> + <location filename="../Project/Project.py" line="3774"/> <source>Generate a new project</source> <translation>Yeni bir proje üret</translation> </message> <message> - <location filename="../Project/Project.py" line="3770"/> + <location filename="../Project/Project.py" line="3775"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Yeni...</b><p>Bu yeni bir proje için bilgilerin girileceği bir diyalog açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>&Open...</source> - <translation>&Aç...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3783"/> + <source>&Open...</source> + <translation>&Aç...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3788"/> <source>Open an existing project</source> <translation>Var olan bir projeyi aç</translation> </message> <message> - <location filename="../Project/Project.py" line="3784"/> + <location filename="../Project/Project.py" line="3789"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Aç...</b><p>Bu varolan bir projeyi açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> - <source>Close project</source> - <translation>Projeyi kapat</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3791"/> - <source>&Close</source> - <translation>&Kapat</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3795"/> - <source>Close the current project</source> - <translation>Geçerli projeyi kapat</translation> - </message> - <message> <location filename="../Project/Project.py" line="3796"/> + <source>Close project</source> + <translation>Projeyi kapat</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> + <source>&Close</source> + <translation>&Kapat</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3800"/> + <source>Close the current project</source> + <translation>Geçerli projeyi kapat</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3801"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Kapat</b><p>Bu geçerli projeyi kapatır.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> - <source>Save project</source> - <translation>Projeyi kaydet</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3995"/> - <source>&Save</source> - <translation>&Kaydet</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Save the current project</source> - <translation>Geçerli projeyi kapat</translation> - </message> - <message> <location filename="../Project/Project.py" line="3808"/> + <source>Save project</source> + <translation>Projeyi kaydet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4000"/> + <source>&Save</source> + <translation>&Kaydet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3812"/> + <source>Save the current project</source> + <translation>Geçerli projeyi kapat</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3813"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Kaydet</b><p>Bu geçerli projeyi kaydeder.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save &as...</source> <translation>Farklı k&aydet...</translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> + <location filename="../Project/Project.py" line="3824"/> <source>Save the current project to a new file</source> <translation>Geçerli projeyi yeni bir dosya olarak kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> + <location filename="../Project/Project.py" line="3826"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Farklı kaydet</b><p>Bu geçerli projeyi yeni bir dosya olarak kaydeder.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add files to project</source> - <translation>Projeye dosyalar ekle</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add &files...</source> - <translation>Dosyaları &ekle...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3835"/> + <source>Add files to project</source> + <translation>Projeye dosyalar ekle</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3835"/> + <source>Add &files...</source> + <translation>Dosyaları &ekle...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3840"/> <source>Add files to the current project</source> <translation>Geçerli projeye dosyalar ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> + <location filename="../Project/Project.py" line="3842"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Dosya ekle...</b><p>Bu geçerli projeye bir dosya eklemek için bir diyalog açar. Alana belirlenmiş uzantıda bir dosya eklenir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory to project</source> - <translation>Projeye dizin ekle</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory...</source> - <translation>Dizin ekle...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3851"/> + <source>Add directory to project</source> + <translation>Projeye dizin ekle</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3851"/> + <source>Add directory...</source> + <translation>Dizin ekle...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3856"/> <source>Add a directory to the current project</source> <translation>Geçerli projeye bir dizin ekleyiniz</translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> + <location filename="../Project/Project.py" line="3858"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Dizin Ekle...</b><p>Bu geçerli projeye bir dizin eklemek için bir diyalog açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> + <location filename="../Project/Project.py" line="3866"/> <source>Add translation to project</source> <translation>Projeye çeviri ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add &translation...</source> - <translation>Çeviri &ekle...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3866"/> + <source>Add &translation...</source> + <translation>Çeviri &ekle...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source>Add a translation to the current project</source> <translation>Geçerli projeye çeviri ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="3868"/> + <location filename="../Project/Project.py" line="3873"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Çeviri ekle...</b><p>Bu geçerli projeye bir çeviri eklemek için bir diyalog açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Search new files</source> <translation>Yeni dosyaları ara</translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Searc&h new files...</source> <translation>Yeni dosyaları a&ra...</translation> </message> <message> - <location filename="../Project/Project.py" line="3880"/> + <location filename="../Project/Project.py" line="3885"/> <source>Search new files in the project directory.</source> <translation>Proje dizininde yeni dosyaları ara.</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> - <source>Project properties</source> - <translation>Proje özellikleri</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3906"/> - <source>&Properties...</source> - <translation>&Özellikler...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3911"/> + <source>Project properties</source> + <translation>Proje özellikleri</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3911"/> + <source>&Properties...</source> + <translation>&Özellikler...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3916"/> <source>Show the project properties</source> <translation>Proje özelliklerini göster</translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3917"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> + <location filename="../Project/Project.py" line="3924"/> <source>User project properties</source> <translation>Kullanıcı projesi özellikleri</translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> - <source>&User Properties...</source> - <translation>K&ullanıcı Özellikleri...</translation> - </message> - <message> <location filename="../Project/Project.py" line="3924"/> + <source>&User Properties...</source> + <translation>K&ullanıcı Özellikleri...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3929"/> <source>Show the user specific project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3926"/> + <location filename="../Project/Project.py" line="3931"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations</source> <translation>Dosyatipi Birleştirme</translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations...</source> <translation>Dosyatipi Birleştirme...</translation> </message> <message> - <location filename="../Project/Project.py" line="3938"/> + <location filename="../Project/Project.py" line="3943"/> <source>Show the project filetype associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3956"/> + <location filename="../Project/Project.py" line="3961"/> <source>Show the project lexer associations (overriding defaults)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3958"/> + <location filename="../Project/Project.py" line="3963"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger Properties</source> - <translation>Hata Ayıklayıcı Özellikleri</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger &Properties...</source> - <translation>Hata Ayıklayıcı &Özellikleri...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3974"/> - <source>Show the debugger properties</source> - <translation>Hata ayıklayıcı özelliklerini göster</translation> - </message> - <message> <location filename="../Project/Project.py" line="3975"/> + <source>Debugger Properties</source> + <translation>Hata Ayıklayıcı Özellikleri</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3975"/> + <source>Debugger &Properties...</source> + <translation>Hata Ayıklayıcı &Özellikleri...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3979"/> + <source>Show the debugger properties</source> + <translation>Hata ayıklayıcı özelliklerini göster</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3980"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> - <source>Load</source> - <translation>Yükle</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3983"/> - <source>&Load</source> - <translation>Yük&le</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3987"/> - <source>Load the debugger properties</source> - <translation>Hata ayıklayıcı özelliklerini yükle</translation> - </message> - <message> <location filename="../Project/Project.py" line="3988"/> + <source>Load</source> + <translation>Yükle</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3988"/> + <source>&Load</source> + <translation>Yük&le</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3992"/> + <source>Load the debugger properties</source> + <translation>Hata ayıklayıcı özelliklerini yükle</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3993"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3995"/> - <source>Save</source> - <translation>Kaydet</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3999"/> - <source>Save the debugger properties</source> - <translation>Hata ayıklayıcı özelliklerini kaydet</translation> - </message> - <message> <location filename="../Project/Project.py" line="4000"/> + <source>Save</source> + <translation>Kaydet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4004"/> + <source>Save the debugger properties</source> + <translation>Hata ayıklayıcı özelliklerini kaydet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4005"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4007"/> - <source>Delete</source> - <translation>Sil</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4007"/> - <source>&Delete</source> - <translation>&Sil</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4011"/> - <source>Delete the debugger properties</source> - <translation>Hata ayıklayıcı özelliklerini sil</translation> - </message> - <message> <location filename="../Project/Project.py" line="4012"/> + <source>Delete</source> + <translation>Sil</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4012"/> + <source>&Delete</source> + <translation>&Sil</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4016"/> + <source>Delete the debugger properties</source> + <translation>Hata ayıklayıcı özelliklerini sil</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4017"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> + <location filename="../Project/Project.py" line="4025"/> <source>Reset</source> <translation>Başadön</translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> - <source>&Reset</source> - <translation>Başad&ön</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4024"/> - <source>Reset the debugger properties</source> - <translation>Hata ayıklayıcı özelliklerini başa döndür</translation> - </message> - <message> <location filename="../Project/Project.py" line="4025"/> + <source>&Reset</source> + <translation>Başad&ön</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4029"/> + <source>Reset the debugger properties</source> + <translation>Hata ayıklayıcı özelliklerini başa döndür</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4030"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4034"/> - <source>Load session</source> - <translation>Oturum yükleniyor</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4038"/> - <source>Load the projects session file.</source> - <translation>Projelerin oturm dosyasını yükle.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4039"/> + <source>Load session</source> + <translation>Oturum yükleniyor</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4043"/> + <source>Load the projects session file.</source> + <translation>Projelerin oturm dosyasını yükle.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4044"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4052"/> - <source>Save session</source> - <translation>Oturumu kaydet</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4056"/> - <source>Save the projects session file.</source> - <translation>Proje oturum dosyasını kaydet.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4057"/> + <source>Save session</source> + <translation>Oturumu kaydet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4061"/> + <source>Save the projects session file.</source> + <translation>Proje oturum dosyasını kaydet.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4062"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4070"/> - <source>Delete session</source> - <translation>Oturumu sil</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4074"/> - <source>Delete the projects session file.</source> - <translation>Proje oturum dosyasını sil.</translation> - </message> - <message> <location filename="../Project/Project.py" line="4075"/> + <source>Delete session</source> + <translation>Oturumu sil</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4079"/> + <source>Delete the projects session file.</source> + <translation>Proje oturum dosyasını sil.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4080"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Oturumu Sil</b><p>Bu proje dosya oturumunu siler</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>Code Metrics</source> <translation>Metrik Kod</translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>&Code Metrics...</source> <translation>Me&trik Kod...</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4093"/> <source>Show some code metrics for the project.</source> <translation>Proje için bazı metrik kodları göster.</translation> </message> <message> - <location filename="../Project/Project.py" line="4090"/> + <location filename="../Project/Project.py" line="4095"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Metrik Kodlar...</b><p>Bu proje içindeki tüm Python dosyalarının bazı metrik kodlarını gösterir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Python Code Coverage</source> <translation>Python Kod Koruyucu</translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Code Co&verage...</source> <translation>Kod Koru&yucu...</translation> </message> <message> - <location filename="../Project/Project.py" line="4102"/> + <location filename="../Project/Project.py" line="4107"/> <source>Show code coverage information for the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4104"/> + <location filename="../Project/Project.py" line="4109"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Profile Data</source> <translation>Veri Kesiti</translation> </message> <message> - <location filename="../Project/Project.py" line="4112"/> + <location filename="../Project/Project.py" line="4117"/> <source>&Profile Data...</source> <translation>&Veri kesiti...</translation> </message> <message> - <location filename="../Project/Project.py" line="4116"/> + <location filename="../Project/Project.py" line="4121"/> <source>Show profiling data for the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4118"/> + <location filename="../Project/Project.py" line="4123"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Application Diagram</source> <translation>Uygulama Şeması</translation> </message> <message> - <location filename="../Project/Project.py" line="4127"/> + <location filename="../Project/Project.py" line="4132"/> <source>&Application Diagram...</source> <translation>Uygulama Şem&ası...</translation> </message> <message> - <location filename="../Project/Project.py" line="4131"/> + <location filename="../Project/Project.py" line="4136"/> <source>Show a diagram of the project.</source> <translation>Projenin bir şemasını göster.</translation> </message> <message> - <location filename="../Project/Project.py" line="4133"/> + <location filename="../Project/Project.py" line="4138"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Uygulama Şeması...</b><p>Bu projenin bir şemasını gösterir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source>Create Package List</source> <translation>Paket Listesini Oluştur</translation> </message> <message> - <location filename="../Project/Project.py" line="4156"/> + <location filename="../Project/Project.py" line="4161"/> <source>Create &Package List</source> <translation type="unfinished">Eklenti &Arşivi Oluştur</translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source>Create Plugin Archive</source> <translation>Eklenti Arşivi Oluştur</translation> </message> <message> - <location filename="../Project/Project.py" line="4172"/> + <location filename="../Project/Project.py" line="4177"/> <source>Create Plugin &Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4257"/> + <location filename="../Project/Project.py" line="4262"/> <source>&Project</source> <translation>&Proje</translation> </message> <message> - <location filename="../Project/Project.py" line="4258"/> - <source>Open &Recent Projects</source> - <translation>Geçmiş P&rojeleri Aç</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4259"/> - <source>&Version Control</source> - <translation>S&ürüm Kontrol</translation> - </message> - <message> <location filename="../Project/Project.py" line="4263"/> - <source>Chec&k</source> - <translation>&Kontrol</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4265"/> - <source>Sho&w</source> - <translation>G&öster</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4266"/> - <source>&Diagrams</source> - <translation>Şemalar &D</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4267"/> - <source>Session</source> - <translation>Oturum</translation> + <source>Open &Recent Projects</source> + <translation>Geçmiş P&rojeleri Aç</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4264"/> + <source>&Version Control</source> + <translation>S&ürüm Kontrol</translation> </message> <message> <location filename="../Project/Project.py" line="4268"/> - <source>Source &Documentation</source> - <translation>Kaynak Belgeleme &D</translation> + <source>Chec&k</source> + <translation>&Kontrol</translation> </message> <message> <location filename="../Project/Project.py" line="4270"/> - <source>Debugger</source> - <translation>Hata Ayıklayıcı</translation> + <source>Sho&w</source> + <translation>G&öster</translation> </message> <message> <location filename="../Project/Project.py" line="4271"/> + <source>&Diagrams</source> + <translation>Şemalar &D</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4272"/> + <source>Session</source> + <translation>Oturum</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4273"/> + <source>Source &Documentation</source> + <translation>Kaynak Belgeleme &D</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4275"/> + <source>Debugger</source> + <translation>Hata Ayıklayıcı</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4276"/> <source>Pac&kagers</source> <translation>Pa&ketleyici</translation> </message> <message> - <location filename="../Project/Project.py" line="4390"/> + <location filename="../Project/Project.py" line="4395"/> <source>Project</source> <translation>Proje</translation> </message> <message> - <location filename="../Project/Project.py" line="4456"/> + <location filename="../Project/Project.py" line="4461"/> <source>&Clear</source> <translation>T&emizle</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>Search New Files</source> <translation>Yeni Dosyaları Ara</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>There were no new files found to be added.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source>Version Control System</source> <translation>Sürüm Kontrol Sistemi</translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4893"/> + <location filename="../Project/Project.py" line="4898"/> <source>Coverage Data</source> <translation>Veri Kapsamı</translation> </message> <message> - <location filename="../Project/Project.py" line="4943"/> + <location filename="../Project/Project.py" line="4948"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Code Coverage</source> <translation>Kod Koruyucu</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Please select a coverage file</source> <translation>Lütfen bir koruyucu dosya seçiniz</translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Please select a profile file</source> <translation>Lütfen kesit dosyasını seçiniz</translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Include module names?</source> <translation>Modül isimleri dahil edilsin mi?</translation> </message> <message> - <location filename="../Project/Project.py" line="5165"/> + <location filename="../Project/Project.py" line="5170"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5233"/> + <location filename="../Project/Project.py" line="5238"/> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5375"/> + <location filename="../Project/Project.py" line="5380"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5449"/> + <location filename="../Project/Project.py" line="5454"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -52818,32 +52818,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4145"/> + <location filename="../Project/Project.py" line="4150"/> <source>Load a diagram from file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4147"/> + <location filename="../Project/Project.py" line="4152"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> @@ -52873,27 +52873,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4753"/> + <location filename="../Project/Project.py" line="4758"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4161"/> + <location filename="../Project/Project.py" line="4166"/> <source>Create an initial PKGLIST file for an eric6 plugin.</source> <translation type="unfinished">Eric5 eklenti arşiv dosyası oluştur. {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4163"/> + <location filename="../Project/Project.py" line="4168"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5340"/> + <location filename="../Project/Project.py" line="5345"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -52913,93 +52913,93 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3897"/> + <location filename="../Project/Project.py" line="3902"/> <source>Search for a file in the project list of files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3904"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5269"/> + <location filename="../Project/Project.py" line="5274"/> <source>Create Plugin Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4177"/> + <location filename="../Project/Project.py" line="4182"/> <source>Create eric6 plugin archive files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4179"/> + <location filename="../Project/Project.py" line="4184"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (&Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4199"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4196"/> + <location filename="../Project/Project.py" line="4201"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5247"/> + <location filename="../Project/Project.py" line="5252"/> <source>Select package lists:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Creating plugin archives...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Abort</source> <translation type="unfinished">Vazgeç</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>%v/%m Archives</source> <translation type="unfinished"></translation> </message> @@ -53009,132 +53009,132 @@ <translation type="obsolete">Kapsam</translation> </message> <message> - <location filename="../Project/Project.py" line="5282"/> + <location filename="../Project/Project.py" line="5287"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5394"/> + <location filename="../Project/Project.py" line="5399"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5397"/> + <location filename="../Project/Project.py" line="5402"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5258"/> + <location filename="../Project/Project.py" line="5263"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5312"/> + <location filename="../Project/Project.py" line="5317"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3882"/> + <location filename="../Project/Project.py" line="3887"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3940"/> + <location filename="../Project/Project.py" line="3945"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source>Create Makefile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4210"/> + <location filename="../Project/Project.py" line="4215"/> <source>&Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4214"/> + <location filename="../Project/Project.py" line="4219"/> <source>Perform a 'make' run.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4216"/> + <location filename="../Project/Project.py" line="4221"/> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5654"/> + <location filename="../Project/Project.py" line="5659"/> <source>Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4229"/> <source>&Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4228"/> + <location filename="../Project/Project.py" line="4233"/> <source>Question 'make', if a rebuild is needed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4230"/> + <location filename="../Project/Project.py" line="4235"/> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4272"/> + <location filename="../Project/Project.py" line="4277"/> <source>Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5602"/> + <location filename="../Project/Project.py" line="5607"/> <source>The make process did not start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5647"/> + <location filename="../Project/Project.py" line="5652"/> <source>The make process crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5657"/> - <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="5662"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5667"/> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>The makefile contains errors.</source> <translation type="unfinished"></translation> </message> @@ -53394,7 +53394,7 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="947"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1011"/> <source>Forms</source> <translation>Formlar</translation> </message> @@ -53444,182 +53444,182 @@ <translation>Düğme Diyalog (Sağda)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="149"/> + <location filename="../Project/ProjectFormsBrowser.py" line="158"/> <source>Compile form</source> <translation>Formu derle</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="327"/> + <location filename="../Project/ProjectFormsBrowser.py" line="352"/> <source>Compile all forms</source> <translation>Tüm formları derle</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="160"/> + <location filename="../Project/ProjectFormsBrowser.py" line="169"/> <source>Generate Dialog Code...</source> <translation>Diyalog kodunu Üret...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="238"/> + <location filename="../Project/ProjectFormsBrowser.py" line="255"/> <source>Open in Qt-Designer</source> <translation>Qt-Designer'da Aç</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="240"/> - <source>Open in Editor</source> - <translation>Düzenleyicide Aç</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="144"/> - <source>Preview form</source> - <translation>Form öngörünümü</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="243"/> - <source>Preview translations</source> - <translation>Çeviri öngörünümü</translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="257"/> + <source>Open in Editor</source> + <translation>Düzenleyicide Aç</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="153"/> + <source>Preview form</source> + <translation>Form öngörünümü</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="260"/> + <source>Preview translations</source> + <translation>Çeviri öngörünümü</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="274"/> <source>Open</source> <translation>Aç</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="175"/> + <location filename="../Project/ProjectFormsBrowser.py" line="184"/> <source>Rename file</source> <translation>Dosya adını değiştir</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="288"/> - <source>Remove from project</source> - <translation>Projeden çıkar</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="291"/> - <source>Delete</source> - <translation>Sil</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="300"/> - <source>New form...</source> - <translation>Yeni Kalıp...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="333"/> - <source>Add forms...</source> - <translation>Form ekli...</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="335"/> - <source>Add forms directory...</source> - <translation>Form dizini ekle...</translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="309"/> + <source>Remove from project</source> + <translation>Projeden çıkar</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="312"/> + <source>Delete</source> + <translation>Sil</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="321"/> + <source>New form...</source> + <translation>Yeni Kalıp...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="358"/> + <source>Add forms...</source> + <translation>Form ekli...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="360"/> + <source>Add forms directory...</source> + <translation>Form dizini ekle...</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="330"/> <source>Copy Path to Clipboard</source> <translation>Yolu Panoya kopyala</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="338"/> + <location filename="../Project/ProjectFormsBrowser.py" line="363"/> <source>Expand all directories</source> <translation>Tüm dizinleri genişlet</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="340"/> + <location filename="../Project/ProjectFormsBrowser.py" line="365"/> <source>Collapse all directories</source> <translation>Tüm dizinleri daralt</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="343"/> + <location filename="../Project/ProjectFormsBrowser.py" line="368"/> <source>Configure...</source> <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="247"/> + <location filename="../Project/ProjectFormsBrowser.py" line="264"/> <source>Compile forms</source> <translation>Formları derle</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source>New Form</source> <translation>Yeni Form</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="549"/> + <location filename="../Project/ProjectFormsBrowser.py" line="574"/> <source>Select a form type:</source> <translation>Form tipini seç:</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="563"/> + <location filename="../Project/ProjectFormsBrowser.py" line="588"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>Qt Kullanıcı-Arayüz Dosyaları (*.ui);;Tüm Dosyalar (*)</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="582"/> + <location filename="../Project/ProjectFormsBrowser.py" line="607"/> <source>The file already exists! Overwrite it?</source> <translation>Bu dosya halihazırda var! Üzerine yazılsın mı?</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Delete forms</source> <translation>Formları sil</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> <source>Do you really want to delete these forms from the project?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>Form Compilation</source> <translation>Form Derleme</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="698"/> + <location filename="../Project/ProjectFormsBrowser.py" line="776"/> <source>The compilation of the form file was successful.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="713"/> + <location filename="../Project/ProjectFormsBrowser.py" line="791"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> <source>The compilation of the form file failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Process Generation Error</source> <translation>İşlem Üretecinde Hata</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="905"/> + <location filename="../Project/ProjectFormsBrowser.py" line="969"/> <source>Compiling forms...</source> <translation>Formlar derleniyor...</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Abort</source> <translation>Vazgeç</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>Determining changed forms...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="972"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1036"/> <source>Compiling changed forms...</source> <translation>Değişen formlar derleniyor...</translation> </message> @@ -53674,10 +53674,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>%v/%m Forms</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>Configure uic Compiler</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>No project specific uic compiler flags are supported for PySide or PySide2.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectInterfacesBrowser</name> @@ -75317,6 +75327,44 @@ </message> </context> <context> + <name>UicCompilerOptionsDialog</name> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="14"/> + <source>uic Compiler Options</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="23"/> + <source>'import' Package</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="29"/> + <source>Enter the package name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="36"/> + <source><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="49"/> + <source>Resources Suffix</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="55"/> + <source>Enter the suffix of compiled resource files (default: _rc)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="62"/> + <source><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>UnittestDialog</name> <message> <location filename="../PyUnit/UnittestDialog.py" line="405"/> @@ -85181,22 +85229,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1871"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> <source>Web Archive (*.mhtml *.mht)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1872"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1874"/> <source>HTML File (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1875"/> <source>HTML File with all resources (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1897"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1899"/> <source>Save Web Page</source> <translation type="unfinished"></translation> </message> @@ -85206,22 +85254,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source>Quota Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source>Protocol Handler Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source><p> Allow the website at <b>{0}</b> to open all <b>{1}</b> links?</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_zh_CN.ts Wed Nov 21 19:26:59 2018 +0100 +++ b/i18n/eric6_zh_CN.ts Sat Nov 24 15:37:04 2018 +0100 @@ -5381,12 +5381,12 @@ <translation>创建对话框代码</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source>uic error</source> <translation>uic 错误</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source>Code Generation</source> <translation>代码生成</translation> </message> @@ -5396,27 +5396,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="618"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="654"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="208"/> <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> <translation type="unfinished"></translation> </message> @@ -50705,814 +50705,814 @@ <translation>注册项目类型</translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source>Read project file</source> <translation>读取项目文件</translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source>Save project file</source> <translation>保存项目文件</translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source>Read user project properties</source> <translation>读取用户项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source>Save user project properties</source> <translation>保存用户项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source>Read project session</source> <translation>读取项目会话</translation> </message> <message> - <location filename="../Project/Project.py" line="1232"/> + <location filename="../Project/Project.py" line="1237"/> <source>Please save the project first.</source> <translation>请先保存项目。</translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source>Save project session</source> <translation>保存项目会话</translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source>Delete project session</source> <translation>删除项目会话</translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source>Read tasks</source> <translation>读取任务</translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source>Save tasks</source> <translation>保存任务</translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source>Read debugger properties</source> <translation>读取调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source>Save debugger properties</source> <translation>保存调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source>Delete debugger properties</source> <translation>删除调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>Add Language</source> <translation>添加语言</translation> </message> <message> - <location filename="../Project/Project.py" line="1371"/> + <location filename="../Project/Project.py" line="1376"/> <source>You have to specify a translation pattern first.</source> <translation>必须先指定一个翻译样式。</translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source>Delete translation</source> <translation>删除翻译</translation> </message> <message> - <location filename="../Project/Project.py" line="1659"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add file</source> <translation>添加文件</translation> </message> <message> - <location filename="../Project/Project.py" line="1789"/> + <location filename="../Project/Project.py" line="1794"/> <source>The target directory must not be empty.</source> <translation>目标文件夹不能为空。</translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>Add directory</source> <translation>添加文件夹</translation> </message> <message> - <location filename="../Project/Project.py" line="1690"/> + <location filename="../Project/Project.py" line="1695"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>源文件夹不包含任何属于所选类别的文件。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1800"/> + <location filename="../Project/Project.py" line="1805"/> <source>The source directory must not be empty.</source> <translation>源文件夹不能为空。</translation> </message> <message> - <location filename="../Project/Project.py" line="1937"/> + <location filename="../Project/Project.py" line="1942"/> <source>Rename file</source> <translation>重命名文件</translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source>Rename File</source> <translation>重命名文件</translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source>Delete file</source> <translation>删除文件</translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source>Delete directory</source> <translation>删除文件夹</translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source>Create project directory</source> <translation>创建项目文件夹</translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>New Project</source> <translation>新建项目</translation> </message> <message> - <location filename="../Project/Project.py" line="2436"/> + <location filename="../Project/Project.py" line="2441"/> <source>Add existing files to the project?</source> <translation>是否将已有文件添加到项目中?</translation> </message> <message> - <location filename="../Project/Project.py" line="2912"/> + <location filename="../Project/Project.py" line="2917"/> <source>Select Version Control System</source> <translation>选择版本控制系统</translation> </message> <message> - <location filename="../Project/Project.py" line="2555"/> + <location filename="../Project/Project.py" line="2560"/> <source>Would you like to edit the VCS command options?</source> <translation>是否编辑版本控制系统命令选项?</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>New project</source> <translation>新建项目</translation> </message> <message> - <location filename="../Project/Project.py" line="2503"/> + <location filename="../Project/Project.py" line="2508"/> <source>Shall the project file be added to the repository?</source> <translation>是否将项目文件添加到仓库?</translation> </message> <message> - <location filename="../Project/Project.py" line="2534"/> + <location filename="../Project/Project.py" line="2539"/> <source>None</source> <translation>无</translation> </message> <message> - <location filename="../Project/Project.py" line="2527"/> + <location filename="../Project/Project.py" line="2532"/> <source>Select version control system for the project</source> <translation>为项目选择版本控制系统</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Translation Pattern</source> <translation>翻译样式</translation> </message> <message> - <location filename="../Project/Project.py" line="2635"/> + <location filename="../Project/Project.py" line="2640"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>为翻译文件输入路径样式(在语言代码的相应位置使用“'%language%”):</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> + <location filename="../Project/Project.py" line="3783"/> <source>Open project</source> <translation>打开项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3057"/> + <location filename="../Project/Project.py" line="3062"/> <source>Project Files (*.e4p)</source> <translation>项目文件 (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save project as</source> <translation>项目另存为</translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source>Save File</source> <translation>保存文件</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>Close Project</source> <translation>关闭项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3108"/> + <location filename="../Project/Project.py" line="3113"/> <source>The current project has unsaved changes.</source> <translation>当前项目的更改未保存。</translation> </message> <message> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>Syntax errors detected</source> <translation>检测到语法错误</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3283"/> + <location filename="../Project/Project.py" line="3288"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>项目包含 %n 文件有语法错误。</numerusform> </translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> + <location filename="../Project/Project.py" line="3769"/> <source>&New...</source> <translation>新建(&N)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3769"/> + <location filename="../Project/Project.py" line="3774"/> <source>Generate a new project</source> <translation>生成新项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3770"/> + <location filename="../Project/Project.py" line="3775"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>新建…</b><p>打开一个对话框为新项目输入信息。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>&Open...</source> - <translation>打开(&O)…</translation> - </message> - <message> <location filename="../Project/Project.py" line="3783"/> + <source>&Open...</source> + <translation>打开(&O)…</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3788"/> <source>Open an existing project</source> <translation>打开一个已有项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3784"/> + <location filename="../Project/Project.py" line="3789"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>打开…</b><p>打开一个已有项目。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> - <source>Close project</source> - <translation>关闭项目</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3791"/> - <source>&Close</source> - <translation>关闭(&C)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3795"/> - <source>Close the current project</source> - <translation>关闭当前项目</translation> - </message> - <message> <location filename="../Project/Project.py" line="3796"/> + <source>Close project</source> + <translation>关闭项目</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> + <source>&Close</source> + <translation>关闭(&C)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3800"/> + <source>Close the current project</source> + <translation>关闭当前项目</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3801"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>关闭</b><p>关闭当前项目。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> - <source>Save project</source> - <translation>保存项目</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3995"/> - <source>&Save</source> - <translation>保存(&S)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Save the current project</source> - <translation>保存当前项目</translation> - </message> - <message> <location filename="../Project/Project.py" line="3808"/> + <source>Save project</source> + <translation>保存项目</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4000"/> + <source>&Save</source> + <translation>保存(&S)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3812"/> + <source>Save the current project</source> + <translation>保存当前项目</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3813"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>保存</b><p>保存当前项目</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3820"/> <source>Save &as...</source> <translation>另存为(&A)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> + <location filename="../Project/Project.py" line="3824"/> <source>Save the current project to a new file</source> <translation>将当前项目另存为一个新文件</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> + <location filename="../Project/Project.py" line="3826"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>另存为</b><p>将当前项目另存为一个新文件。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add files to project</source> - <translation>将文件添加到项目中</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3830"/> - <source>Add &files...</source> - <translation>添加文件(&F)…</translation> - </message> - <message> <location filename="../Project/Project.py" line="3835"/> + <source>Add files to project</source> + <translation>将文件添加到项目中</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3835"/> + <source>Add &files...</source> + <translation>添加文件(&F)…</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3840"/> <source>Add files to the current project</source> <translation>将文件添加到当前项目中</translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> + <location filename="../Project/Project.py" line="3842"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>添加文件…</b><p>打开一个对话框为当前项目添加文件。添加的位置由文件扩展名决定。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory to project</source> - <translation>将文件夹添加到项目中</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Add directory...</source> - <translation>添加文件夹…</translation> - </message> - <message> <location filename="../Project/Project.py" line="3851"/> + <source>Add directory to project</source> + <translation>将文件夹添加到项目中</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3851"/> + <source>Add directory...</source> + <translation>添加文件夹…</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3856"/> <source>Add a directory to the current project</source> <translation>为当前工程添加文件夹</translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> + <location filename="../Project/Project.py" line="3858"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>添加文件夹…</b><p>打开一个对话框将文件夹添加到当前项目中。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> + <location filename="../Project/Project.py" line="3866"/> <source>Add translation to project</source> <translation>将翻译添加到项目中</translation> </message> <message> - <location filename="../Project/Project.py" line="3861"/> - <source>Add &translation...</source> - <translation>添加翻译(&T)…</translation> - </message> - <message> <location filename="../Project/Project.py" line="3866"/> + <source>Add &translation...</source> + <translation>添加翻译(&T)…</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source>Add a translation to the current project</source> <translation>将翻译添加到当前项目中</translation> </message> <message> - <location filename="../Project/Project.py" line="3868"/> + <location filename="../Project/Project.py" line="3873"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>添加翻译…</b><p>打开一个对话框将翻译添加到当前项目中。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Search new files</source> <translation>搜索新文件</translation> </message> <message> - <location filename="../Project/Project.py" line="3876"/> + <location filename="../Project/Project.py" line="3881"/> <source>Searc&h new files...</source> <translation>搜索新文件(&H)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3880"/> + <location filename="../Project/Project.py" line="3885"/> <source>Search new files in the project directory.</source> <translation>在项目文件夹中搜索新文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> - <source>Project properties</source> - <translation>项目属性</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3906"/> - <source>&Properties...</source> - <translation>属性(&P)…</translation> - </message> - <message> <location filename="../Project/Project.py" line="3911"/> + <source>Project properties</source> + <translation>项目属性</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3911"/> + <source>&Properties...</source> + <translation>属性(&P)…</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3916"/> <source>Show the project properties</source> <translation>显示项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3917"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>属性…</b><p>显示一个对话框可编辑项目属性。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> + <location filename="../Project/Project.py" line="3924"/> <source>User project properties</source> <translation>用户项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3919"/> - <source>&User Properties...</source> - <translation>用户属性(&U)…</translation> - </message> - <message> <location filename="../Project/Project.py" line="3924"/> + <source>&User Properties...</source> + <translation>用户属性(&U)…</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3929"/> <source>Show the user specific project properties</source> <translation>显示用户指定的项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3926"/> + <location filename="../Project/Project.py" line="3931"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>用户属性…</b><p>显示一个对话框可编辑用户指定的项目属性。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations</source> <translation>文件类型关联</translation> </message> <message> - <location filename="../Project/Project.py" line="3934"/> + <location filename="../Project/Project.py" line="3939"/> <source>Filetype Associations...</source> <translation>文件类型关联…</translation> </message> <message> - <location filename="../Project/Project.py" line="3938"/> + <location filename="../Project/Project.py" line="3943"/> <source>Show the project filetype associations</source> <translation>显示项目文件类型关联</translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> + <location filename="../Project/Project.py" line="3975"/> <source>Debugger Properties</source> <translation>调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3970"/> - <source>Debugger &Properties...</source> - <translation>调试器属性(&P)…</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3974"/> - <source>Show the debugger properties</source> - <translation>显示调试器属性</translation> - </message> - <message> <location filename="../Project/Project.py" line="3975"/> + <source>Debugger &Properties...</source> + <translation>调试器属性(&P)…</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3979"/> + <source>Show the debugger properties</source> + <translation>显示调试器属性</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3980"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>调试器属性…</b><p>显示一个对话框以编辑项目指定的调试器设定。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> + <location filename="../Project/Project.py" line="3988"/> <source>Load</source> <translation>载入</translation> </message> <message> - <location filename="../Project/Project.py" line="3983"/> - <source>&Load</source> - <translation>载入(&L)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3987"/> - <source>Load the debugger properties</source> - <translation>载入调试器属性</translation> - </message> - <message> <location filename="../Project/Project.py" line="3988"/> + <source>&Load</source> + <translation>载入(&L)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3992"/> + <source>Load the debugger properties</source> + <translation>载入调试器属性</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3993"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>载入调试器属性</b><p>载入项目指定的调试器设定。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3995"/> - <source>Save</source> - <translation>保存</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3999"/> - <source>Save the debugger properties</source> - <translation>保存调试器属性</translation> - </message> - <message> <location filename="../Project/Project.py" line="4000"/> + <source>Save</source> + <translation>保存</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4004"/> + <source>Save the debugger properties</source> + <translation>保存调试器属性</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4005"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>保存调试器属性</b><p>保存项目指定的调试器设置。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4007"/> + <location filename="../Project/Project.py" line="4012"/> <source>Delete</source> <translation>删除</translation> </message> <message> - <location filename="../Project/Project.py" line="4007"/> - <source>&Delete</source> - <translation>删除(&D)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4011"/> - <source>Delete the debugger properties</source> - <translation>删除调试器属性</translation> - </message> - <message> <location filename="../Project/Project.py" line="4012"/> + <source>&Delete</source> + <translation>删除(&D)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4016"/> + <source>Delete the debugger properties</source> + <translation>删除调试器属性</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4017"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>删除调试器属性</b><p>删除包含项目指定调试器设置的文件。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> + <location filename="../Project/Project.py" line="4025"/> <source>Reset</source> <translation>重置</translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> - <source>&Reset</source> - <translation>重置(&R)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4024"/> - <source>Reset the debugger properties</source> - <translation>重围调试器属性</translation> - </message> - <message> <location filename="../Project/Project.py" line="4025"/> + <source>&Reset</source> + <translation>重置(&R)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4029"/> + <source>Reset the debugger properties</source> + <translation>重围调试器属性</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4030"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>重置调试器属性</b><p>重置项目指定的调试器设置。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4034"/> - <source>Load session</source> - <translation>载入会话</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4038"/> - <source>Load the projects session file.</source> - <translation>载入项目会话文件。</translation> - </message> - <message> <location filename="../Project/Project.py" line="4039"/> + <source>Load session</source> + <translation>载入会话</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4043"/> + <source>Load the projects session file.</source> + <translation>载入项目会话文件。</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4044"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>载入会话</b><p>载入项目会话文件。会话包括如下数据。<br>- 所有打开的源文件<br>- 所有断点<br>- 命令行参数<br>- 工作文件夹<br>- 异常报告标志</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4052"/> - <source>Save session</source> - <translation>保存会话</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4056"/> - <source>Save the projects session file.</source> - <translation>保存项目会话文件。</translation> - </message> - <message> <location filename="../Project/Project.py" line="4057"/> + <source>Save session</source> + <translation>保存会话</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4061"/> + <source>Save the projects session file.</source> + <translation>保存项目会话文件。</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4062"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>保存会话</b><p>保存项目会话文件。会话包括如下数据。<br>- 所有打开的源文件<br>- 所有断点<br>- 命令行参数<br>- 工作文件夹<br>- 异常报告标志</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4070"/> - <source>Delete session</source> - <translation>删除会话</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4074"/> - <source>Delete the projects session file.</source> - <translation>删除项目会话文件。</translation> - </message> - <message> <location filename="../Project/Project.py" line="4075"/> + <source>Delete session</source> + <translation>删除会话</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4079"/> + <source>Delete the projects session file.</source> + <translation>删除项目会话文件。</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4080"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>删除会话</b><p>删除项目会话文件</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>Code Metrics</source> <translation>代码度量</translation> </message> <message> - <location filename="../Project/Project.py" line="4084"/> + <location filename="../Project/Project.py" line="4089"/> <source>&Code Metrics...</source> <translation>代码度量(&C)…</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4093"/> <source>Show some code metrics for the project.</source> <translation>显示项目的部分代码度量。</translation> </message> <message> - <location filename="../Project/Project.py" line="4090"/> + <location filename="../Project/Project.py" line="4095"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>代码度量…</b><p>显示项目中所有 Python 文件的部分代码度量。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Python Code Coverage</source> <translation>Python 代码覆盖率</translation> </message> <message> - <location filename="../Project/Project.py" line="4098"/> + <location filename="../Project/Project.py" line="4103"/> <source>Code Co&verage...</source> <translation>代码覆盖率(&v)…</translation> </message> <message> - <location filename="../Project/Project.py" line="4102"/> + <location filename="../Project/Project.py" line="4107"/> <source>Show code coverage information for the project.</source> <translation>显示项目的代码覆盖率信息。</translation> </message> <message> - <location filename="../Project/Project.py" line="4104"/> + <location filename="../Project/Project.py" line="4109"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>代码覆盖率…</b><p>显示项目中所有 Python 文件的代码覆盖率。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Profile Data</source> <translation>剖析数据</translation> </message> <message> - <location filename="../Project/Project.py" line="4112"/> + <location filename="../Project/Project.py" line="4117"/> <source>&Profile Data...</source> <translation>剖析数据(&P)…</translation> </message> <message> - <location filename="../Project/Project.py" line="4116"/> + <location filename="../Project/Project.py" line="4121"/> <source>Show profiling data for the project.</source> <translation>显示项目的剖析数据。</translation> </message> <message> - <location filename="../Project/Project.py" line="4118"/> + <location filename="../Project/Project.py" line="4123"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>剖析数据…</b><p>显示项目的剖析数据。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Application Diagram</source> <translation>应用程序图</translation> </message> <message> - <location filename="../Project/Project.py" line="4127"/> + <location filename="../Project/Project.py" line="4132"/> <source>&Application Diagram...</source> <translation>应用程序(&A)图…</translation> </message> <message> - <location filename="../Project/Project.py" line="4131"/> + <location filename="../Project/Project.py" line="4136"/> <source>Show a diagram of the project.</source> <translation>显示项目图表。</translation> </message> <message> - <location filename="../Project/Project.py" line="4133"/> + <location filename="../Project/Project.py" line="4138"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>应用程序图…</b><p>显示项目的图表。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source>Create Package List</source> <translation>创建程序包列表</translation> </message> <message> - <location filename="../Project/Project.py" line="4156"/> + <location filename="../Project/Project.py" line="4161"/> <source>Create &Package List</source> <translation type="unfinished">创建插件存档(&A)</translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source>Create Plugin Archive</source> <translation>创建插件存档</translation> </message> <message> - <location filename="../Project/Project.py" line="4172"/> + <location filename="../Project/Project.py" line="4177"/> <source>Create Plugin &Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4257"/> + <location filename="../Project/Project.py" line="4262"/> <source>&Project</source> <translation>项目(&P)</translation> </message> <message> - <location filename="../Project/Project.py" line="4258"/> - <source>Open &Recent Projects</source> - <translation>打开最近的项目</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4259"/> - <source>&Version Control</source> - <translation>版本控制(&V)</translation> - </message> - <message> <location filename="../Project/Project.py" line="4263"/> - <source>Chec&k</source> - <translation>检查(&K)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4265"/> - <source>Sho&w</source> - <translation>显示(&W)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4266"/> - <source>&Diagrams</source> - <translation>图表(&D)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4267"/> - <source>Session</source> - <translation>会话</translation> + <source>Open &Recent Projects</source> + <translation>打开最近的项目</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4264"/> + <source>&Version Control</source> + <translation>版本控制(&V)</translation> </message> <message> <location filename="../Project/Project.py" line="4268"/> - <source>Source &Documentation</source> - <translation>源文档(&D)</translation> + <source>Chec&k</source> + <translation>检查(&K)</translation> </message> <message> <location filename="../Project/Project.py" line="4270"/> - <source>Debugger</source> - <translation>调试器</translation> + <source>Sho&w</source> + <translation>显示(&W)</translation> </message> <message> <location filename="../Project/Project.py" line="4271"/> + <source>&Diagrams</source> + <translation>图表(&D)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4272"/> + <source>Session</source> + <translation>会话</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4273"/> + <source>Source &Documentation</source> + <translation>源文档(&D)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4275"/> + <source>Debugger</source> + <translation>调试器</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4276"/> <source>Pac&kagers</source> <translation>打包程序(&K)</translation> </message> <message> - <location filename="../Project/Project.py" line="4390"/> + <location filename="../Project/Project.py" line="4395"/> <source>Project</source> <translation>项目</translation> </message> <message> - <location filename="../Project/Project.py" line="4456"/> + <location filename="../Project/Project.py" line="4461"/> <source>&Clear</source> <translation>清除(&C)</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>Search New Files</source> <translation>搜索新文件</translation> </message> <message> - <location filename="../Project/Project.py" line="4619"/> + <location filename="../Project/Project.py" line="4624"/> <source>There were no new files found to be added.</source> <translation>没有要添加的新文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source>Version Control System</source> <translation>版本控制系统</translation> </message> <message> - <location filename="../Project/Project.py" line="4893"/> + <location filename="../Project/Project.py" line="4898"/> <source>Coverage Data</source> <translation>覆盖率数据</translation> </message> <message> - <location filename="../Project/Project.py" line="4943"/> + <location filename="../Project/Project.py" line="4948"/> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Code Coverage</source> <translation>代码覆盖率</translation> </message> <message> - <location filename="../Project/Project.py" line="4916"/> + <location filename="../Project/Project.py" line="4921"/> <source>Please select a coverage file</source> <translation>请选择一个覆盖率文件</translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4971"/> <source>Please select a profile file</source> <translation>请选择一个剖析文件</translation> </message> <message> - <location filename="../Project/Project.py" line="5020"/> + <location filename="../Project/Project.py" line="5025"/> <source>Include module names?</source> <translation>包含模块名?</translation> </message> <message> - <location filename="../Project/Project.py" line="5165"/> + <location filename="../Project/Project.py" line="5170"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>文件 <b>PKGLIST</b> 已存在。</p><p>是否覆盖?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5233"/> + <location filename="../Project/Project.py" line="5238"/> <source>The project does not have a main script defined. Aborting...</source> <translation>项目未定义主脚本。终止…</translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3952"/> + <location filename="../Project/Project.py" line="3957"/> <source>Lexer Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3956"/> + <location filename="../Project/Project.py" line="3961"/> <source>Show the project lexer associations (overriding defaults)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3958"/> + <location filename="../Project/Project.py" line="3963"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished"></translation> </message> @@ -51532,112 +51532,112 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="789"/> + <location filename="../Project/Project.py" line="794"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="891"/> + <location filename="../Project/Project.py" line="896"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="927"/> + <location filename="../Project/Project.py" line="932"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="951"/> + <location filename="../Project/Project.py" line="956"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1009"/> + <location filename="../Project/Project.py" line="1014"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1045"/> + <location filename="../Project/Project.py" line="1050"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1074"/> + <location filename="../Project/Project.py" line="1079"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1108"/> + <location filename="../Project/Project.py" line="1113"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"><p>任务文件 <b>{0}</b> 无法读取。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1128"/> + <location filename="../Project/Project.py" line="1133"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"><p>任务文件 <b>{0}</b> 无法写入。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1186"/> + <location filename="../Project/Project.py" line="1191"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1220"/> + <location filename="../Project/Project.py" line="1225"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1246"/> + <location filename="../Project/Project.py" line="1251"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1721"/> + <location filename="../Project/Project.py" line="1726"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3072"/> + <location filename="../Project/Project.py" line="3077"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>文件 <b>{0}</b> 已经存在。是否覆盖?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1961"/> + <location filename="../Project/Project.py" line="1966"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2321"/> + <location filename="../Project/Project.py" line="2326"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4765"/> + <location filename="../Project/Project.py" line="4770"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5214"/> + <location filename="../Project/Project.py" line="5219"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5375"/> + <location filename="../Project/Project.py" line="5380"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5449"/> + <location filename="../Project/Project.py" line="5454"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1646"/> + <location filename="../Project/Project.py" line="1651"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1703"/> + <location filename="../Project/Project.py" line="1708"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -51647,32 +51647,32 @@ <translation>Python2 文件 (*.py2);;Python2 GUI 文件 (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2402"/> + <location filename="../Project/Project.py" line="2407"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4141"/> + <location filename="../Project/Project.py" line="4146"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4145"/> + <location filename="../Project/Project.py" line="4150"/> <source>Load a diagram from file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4147"/> + <location filename="../Project/Project.py" line="4152"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> @@ -51702,37 +51702,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4753"/> + <location filename="../Project/Project.py" line="4758"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5491"/> + <location filename="../Project/Project.py" line="5496"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4161"/> + <location filename="../Project/Project.py" line="4166"/> <source>Create an initial PKGLIST file for an eric6 plugin.</source> <translation type="unfinished">创建一个 eric6 插件存档文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="4163"/> + <location filename="../Project/Project.py" line="4168"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"><b>创建插件存档</b><p>通过 PKGLIST 文件给出的文件列表创建 Eric4 插件存档文件。存档名从主脚本名构建。</p> {5 ?} {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4177"/> + <location filename="../Project/Project.py" line="4182"/> <source>Create eric6 plugin archive files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4179"/> + <location filename="../Project/Project.py" line="4184"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5340"/> + <location filename="../Project/Project.py" line="5345"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -51752,213 +51752,213 @@ <translation>Eric6 插件</translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source>Create project management directory</source> <translation>创建项目管理目录</translation> </message> <message> - <location filename="../Project/Project.py" line="2882"/> + <location filename="../Project/Project.py" line="2887"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation><p>项目目录 <b>{0}</b> 不可写。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3897"/> + <location filename="../Project/Project.py" line="3902"/> <source>Search for a file in the project list of files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3904"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3891"/> + <location filename="../Project/Project.py" line="3896"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5269"/> + <location filename="../Project/Project.py" line="5274"/> <source>Create Plugin Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> + <location filename="../Project/Project.py" line="4194"/> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4189"/> - <source>Create Plugin Archives (&Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="4194"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4199"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4196"/> + <location filename="../Project/Project.py" line="4201"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5247"/> + <location filename="../Project/Project.py" line="5252"/> <source>Select package lists:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Creating plugin archives...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>Abort</source> <translation type="unfinished">终止</translation> </message> <message> - <location filename="../Project/Project.py" line="5265"/> + <location filename="../Project/Project.py" line="5270"/> <source>%v/%m Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5282"/> + <location filename="../Project/Project.py" line="5287"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5394"/> + <location filename="../Project/Project.py" line="5399"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5397"/> + <location filename="../Project/Project.py" line="5402"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5258"/> + <location filename="../Project/Project.py" line="5263"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5312"/> + <location filename="../Project/Project.py" line="5317"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3882"/> + <location filename="../Project/Project.py" line="3887"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3940"/> + <location filename="../Project/Project.py" line="3945"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1494"/> + <location filename="../Project/Project.py" line="1499"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2204"/> + <location filename="../Project/Project.py" line="2209"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2234"/> + <location filename="../Project/Project.py" line="2239"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source>Create Makefile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2706"/> + <location filename="../Project/Project.py" line="2711"/> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4210"/> + <location filename="../Project/Project.py" line="4215"/> <source>&Execute Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4214"/> + <location filename="../Project/Project.py" line="4219"/> <source>Perform a 'make' run.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4216"/> + <location filename="../Project/Project.py" line="4221"/> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5654"/> + <location filename="../Project/Project.py" line="5659"/> <source>Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4224"/> + <location filename="../Project/Project.py" line="4229"/> <source>&Test for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4228"/> + <location filename="../Project/Project.py" line="4233"/> <source>Question 'make', if a rebuild is needed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4230"/> + <location filename="../Project/Project.py" line="4235"/> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4272"/> + <location filename="../Project/Project.py" line="4277"/> <source>Make</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5602"/> + <location filename="../Project/Project.py" line="5607"/> <source>The make process did not start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5647"/> + <location filename="../Project/Project.py" line="5652"/> <source>The make process crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5657"/> - <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="5662"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5667"/> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5674"/> + <location filename="../Project/Project.py" line="5679"/> <source>The makefile contains errors.</source> <translation type="unfinished"></translation> </message> @@ -52218,7 +52218,7 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="947"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1011"/> <source>Forms</source> <translation>窗体</translation> </message> @@ -52268,182 +52268,182 @@ <translation>带按钮(底部居中)的对话框</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="149"/> + <location filename="../Project/ProjectFormsBrowser.py" line="158"/> <source>Compile form</source> <translation>编译窗体</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="327"/> + <location filename="../Project/ProjectFormsBrowser.py" line="352"/> <source>Compile all forms</source> <translation>编译所有窗体</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="160"/> + <location filename="../Project/ProjectFormsBrowser.py" line="169"/> <source>Generate Dialog Code...</source> <translation>生成对话框代码…</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="238"/> + <location filename="../Project/ProjectFormsBrowser.py" line="255"/> <source>Open in Qt-Designer</source> <translation>在 Qt 设计师中打开</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="240"/> - <source>Open in Editor</source> - <translation>在编辑器中打开</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="144"/> - <source>Preview form</source> - <translation>预览窗体</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="243"/> - <source>Preview translations</source> - <translation>预览翻译</translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="257"/> + <source>Open in Editor</source> + <translation>在编辑器中打开</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="153"/> + <source>Preview form</source> + <translation>预览窗体</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="260"/> + <source>Preview translations</source> + <translation>预览翻译</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="274"/> <source>Open</source> <translation>打开</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="175"/> + <location filename="../Project/ProjectFormsBrowser.py" line="184"/> <source>Rename file</source> <translation>重命名文件</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="288"/> - <source>Remove from project</source> - <translation>从项目移除</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="291"/> - <source>Delete</source> - <translation>删除</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="300"/> - <source>New form...</source> - <translation>新建窗体…</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="333"/> - <source>Add forms...</source> - <translation>添加窗体…</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="335"/> - <source>Add forms directory...</source> - <translation>添加窗体文件夹…</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="338"/> - <source>Expand all directories</source> - <translation>展开所有文件夹</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="340"/> - <source>Collapse all directories</source> - <translation>折叠所有文件夹</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="343"/> - <source>Configure...</source> - <translation>配置…</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="247"/> - <source>Compile forms</source> - <translation>编译窗体</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> - <source>New Form</source> - <translation>新建窗体</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="549"/> - <source>Select a form type:</source> - <translation>选择窗体类型:</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="563"/> - <source>Qt User-Interface Files (*.ui);;All Files (*)</source> - <translation>Qt 用户界面文件 (*.ui);;所有文件 (*)</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="582"/> - <source>The file already exists! Overwrite it?</source> - <translation>文件已存在!是否覆盖?</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> - <source>Delete forms</source> - <translation>删除窗体</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="621"/> - <source>Do you really want to delete these forms from the project?</source> - <translation>确定要从项目中删除这些窗体?</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> - <source>Form Compilation</source> - <translation>窗体编译</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="698"/> - <source>The compilation of the form file was successful.</source> - <translation>窗体文件编译成功。</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="726"/> - <source>The compilation of the form file failed.</source> - <translation>窗体文件编译失败。</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> - <source>Process Generation Error</source> - <translation>进程生成错误</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="905"/> - <source>Compiling forms...</source> - <translation>正在编译窗体…</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> - <source>Abort</source> - <translation>终止</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> - <source>Determining changed forms...</source> - <translation>正在确定更改的窗体…</translation> - </message> - <message> - <location filename="../Project/ProjectFormsBrowser.py" line="972"/> - <source>Compiling changed forms...</source> - <translation>正在编译更改的窗体…</translation> - </message> - <message> <location filename="../Project/ProjectFormsBrowser.py" line="309"/> + <source>Remove from project</source> + <translation>从项目移除</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="312"/> + <source>Delete</source> + <translation>删除</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="321"/> + <source>New form...</source> + <translation>新建窗体…</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="358"/> + <source>Add forms...</source> + <translation>添加窗体…</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="360"/> + <source>Add forms directory...</source> + <translation>添加窗体文件夹…</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="363"/> + <source>Expand all directories</source> + <translation>展开所有文件夹</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="365"/> + <source>Collapse all directories</source> + <translation>折叠所有文件夹</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="368"/> + <source>Configure...</source> + <translation>配置…</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="264"/> + <source>Compile forms</source> + <translation>编译窗体</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> + <source>New Form</source> + <translation>新建窗体</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="574"/> + <source>Select a form type:</source> + <translation>选择窗体类型:</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="588"/> + <source>Qt User-Interface Files (*.ui);;All Files (*)</source> + <translation>Qt 用户界面文件 (*.ui);;所有文件 (*)</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="607"/> + <source>The file already exists! Overwrite it?</source> + <translation>文件已存在!是否覆盖?</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> + <source>Delete forms</source> + <translation>删除窗体</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="646"/> + <source>Do you really want to delete these forms from the project?</source> + <translation>确定要从项目中删除这些窗体?</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> + <source>Form Compilation</source> + <translation>窗体编译</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="776"/> + <source>The compilation of the form file was successful.</source> + <translation>窗体文件编译成功。</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="804"/> + <source>The compilation of the form file failed.</source> + <translation>窗体文件编译失败。</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> + <source>Process Generation Error</source> + <translation>进程生成错误</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="969"/> + <source>Compiling forms...</source> + <translation>正在编译窗体…</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> + <source>Abort</source> + <translation>终止</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> + <source>Determining changed forms...</source> + <translation>正在确定更改的窗体…</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1036"/> + <source>Compiling changed forms...</source> + <translation>正在编译更改的窗体…</translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="330"/> <source>Copy Path to Clipboard</source> <translation>将路径复制到剪贴板</translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="594"/> + <location filename="../Project/ProjectFormsBrowser.py" line="619"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation><p>新窗体文件 <b>{0}</b> 无法创建。<br>原因:{1}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="713"/> + <location filename="../Project/ProjectFormsBrowser.py" line="791"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation><p>窗体文件编译失败。</p><p>原因:{0}</p></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="813"/> + <location filename="../Project/ProjectFormsBrowser.py" line="877"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished">无法启动 {0}。请保证它处在搜索路径中。</translation> </message> @@ -52498,10 +52498,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectFormsBrowser.py" line="943"/> + <location filename="../Project/ProjectFormsBrowser.py" line="1007"/> <source>%v/%m Forms</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>Configure uic Compiler</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/ProjectFormsBrowser.py" line="1086"/> + <source>No project specific uic compiler flags are supported for PySide or PySide2.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectInterfacesBrowser</name> @@ -73928,6 +73938,44 @@ </message> </context> <context> + <name>UicCompilerOptionsDialog</name> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="14"/> + <source>uic Compiler Options</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="23"/> + <source>'import' Package</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="29"/> + <source>Enter the package name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="36"/> + <source><b>Note</b>: This generates statements like 'from PACKAGE import ...'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="49"/> + <source>Resources Suffix</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="55"/> + <source>Enter the suffix of compiled resource files (default: _rc)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/UicCompilerOptionsDialog.ui" line="62"/> + <source><b>Note</b>: Leave the suffix empty to use the default of '_rc'.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>UnittestDialog</name> <message> <location filename="../PyUnit/UnittestDialog.py" line="405"/> @@ -83767,22 +83815,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1871"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> <source>Web Archive (*.mhtml *.mht)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1872"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1874"/> <source>HTML File (*.html *.htm)</source> <translation type="unfinished">HTML 文件 (*.html *.htm)</translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1873"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1875"/> <source>HTML File with all resources (*.html *.htm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="1897"/> + <location filename="../WebBrowser/WebBrowserView.py" line="1899"/> <source>Save Web Page</source> <translation type="unfinished">保存网页</translation> </message> @@ -83792,22 +83840,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source>Quota Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2250"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2252"/> <source><p> Allow the website at <b>{0}</b> to use <b>{1}</b> of persistent storage?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source>Protocol Handler Request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/WebBrowserView.py" line="2283"/> + <location filename="../WebBrowser/WebBrowserView.py" line="2285"/> <source><p> Allow the website at <b>{0}</b> to open all <b>{1}</b> links?</p></source> <translation type="unfinished"></translation> </message>