Sun, 26 Aug 2018 15:54:51 +0200
PluginWizardDialog: corrected existing templates and added template and button for an exeDisplayData() function returning ready made version info.
--- a/APIs/Python3/eric6.api Sun Aug 26 15:03:20 2018 +0200 +++ b/APIs/Python3/eric6.api Sun Aug 26 15:54:51 2018 +0200 @@ -6959,6 +6959,7 @@ eric6.Plugins.WizardPlugins.EricPluginWizard.Templates.configTemplate1?7 eric6.Plugins.WizardPlugins.EricPluginWizard.Templates.configTemplate2?7 eric6.Plugins.WizardPlugins.EricPluginWizard.Templates.configTemplate3?7 +eric6.Plugins.WizardPlugins.EricPluginWizard.Templates.exeDisplayDataInfoTemplate?7 eric6.Plugins.WizardPlugins.EricPluginWizard.Templates.exeDisplayDataListTemplate?7 eric6.Plugins.WizardPlugins.EricPluginWizard.Templates.exeDisplayDataTemplate?7 eric6.Plugins.WizardPlugins.EricPluginWizard.Templates.mainTemplate?7
--- a/Documentation/Source/eric6.Plugins.WizardPlugins.EricPluginWizard.Templates.html Sun Aug 26 15:03:20 2018 +0200 +++ b/Documentation/Source/eric6.Plugins.WizardPlugins.EricPluginWizard.Templates.html Sun Aug 26 15:54:51 2018 +0200 @@ -25,7 +25,7 @@ </p> <h3>Global Attributes</h3> <table> -<tr><td>apiFilesTemplate</td></tr><tr><td>configTemplate0</td></tr><tr><td>configTemplate1</td></tr><tr><td>configTemplate2</td></tr><tr><td>configTemplate3</td></tr><tr><td>exeDisplayDataListTemplate</td></tr><tr><td>exeDisplayDataTemplate</td></tr><tr><td>mainTemplate</td></tr><tr><td>moduleSetupTemplate</td></tr><tr><td>onDemandTemplate</td></tr><tr><td>previewPixmapTemplate</td></tr> +<tr><td>apiFilesTemplate</td></tr><tr><td>configTemplate0</td></tr><tr><td>configTemplate1</td></tr><tr><td>configTemplate2</td></tr><tr><td>configTemplate3</td></tr><tr><td>exeDisplayDataInfoTemplate</td></tr><tr><td>exeDisplayDataListTemplate</td></tr><tr><td>exeDisplayDataTemplate</td></tr><tr><td>mainTemplate</td></tr><tr><td>moduleSetupTemplate</td></tr><tr><td>onDemandTemplate</td></tr><tr><td>previewPixmapTemplate</td></tr> </table> <h3>Classes</h3> <table>
--- a/Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.py Sun Aug 26 15:03:20 2018 +0200 +++ b/Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.py Sun Aug 26 15:54:51 2018 +0200 @@ -19,7 +19,7 @@ from .Templates import mainTemplate, configTemplate0, configTemplate1, \ configTemplate2, configTemplate3, onDemandTemplate, \ previewPixmapTemplate, moduleSetupTemplate, exeDisplayDataTemplate, \ - exeDisplayDataListTemplate, apiFilesTemplate + exeDisplayDataInfoTemplate, exeDisplayDataListTemplate, apiFilesTemplate class PluginWizardDialog(QDialog, Ui_PluginWizardDialog): @@ -165,12 +165,13 @@ templateData["modulesetup"] = "" templateData["exeData"] = "" - templateData["exeDataList"] = "" if self.exeGroup.isChecked(): if self.exeRadioButton.isChecked(): templateData["exeData"] = exeDisplayDataTemplate + elif self.exeInfoRadioButton.isChecked(): + templateData["exeData"] = exeDisplayDataInfoTemplate elif self.exeListRadioButton.isChecked(): - templateData["exeDataList"] = exeDisplayDataListTemplate + templateData["exeData"] = exeDisplayDataListTemplate if self.apiFilesCheckBox.isChecked(): templateData["apiFiles"] = apiFilesTemplate
--- a/Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui Sun Aug 26 15:03:20 2018 +0200 +++ b/Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui Sun Aug 26 15:54:51 2018 +0200 @@ -16,7 +16,7 @@ <property name="sizeGripEnabled"> <bool>true</bool> </property> - <layout class="QVBoxLayout" name="verticalLayout_2"> + <layout class="QVBoxLayout" name="verticalLayout_5"> <item> <widget class="QTabWidget" name="dataTabWidget"> <property name="currentIndex"> @@ -359,7 +359,7 @@ <attribute name="title"> <string>Various</string> </attribute> - <layout class="QVBoxLayout" name="verticalLayout_5"> + <layout class="QVBoxLayout" name="verticalLayout_4"> <item> <widget class="QCheckBox" name="pixmapCheckBox"> <property name="toolTip"> @@ -391,14 +391,14 @@ <property name="checked"> <bool>false</bool> </property> - <layout class="QVBoxLayout" name="verticalLayout_4"> + <layout class="QVBoxLayout" name="verticalLayout_2"> <item> <widget class="QRadioButton" name="exeRadioButton"> <property name="toolTip"> <string>Select to create an 'exeDisplayData()' function skeleton</string> </property> <property name="text"> - <string>'exeDisplayData()' function</string> + <string>'exeDisplayData()' function returning program data to determine version information</string> </property> <property name="checked"> <bool>true</bool> @@ -406,6 +406,16 @@ </widget> </item> <item> + <widget class="QRadioButton" name="exeInfoRadioButton"> + <property name="toolTip"> + <string>Select to create an 'exeDisplayData()' function skeleton returning version info</string> + </property> + <property name="text"> + <string>'exeDisplayData()' function returning version information</string> + </property> + </widget> + </item> + <item> <widget class="QRadioButton" name="exeListRadioButton"> <property name="toolTip"> <string>Select to create an 'exeDisplayDataList()' function skeleton</string> @@ -508,9 +518,9 @@ <tabstop>moduleSetupCheckBox</tabstop> <tabstop>exeGroup</tabstop> <tabstop>exeRadioButton</tabstop> + <tabstop>exeInfoRadioButton</tabstop> <tabstop>exeListRadioButton</tabstop> <tabstop>apiFilesCheckBox</tabstop> - <tabstop>buttonBox</tabstop> </tabstops> <resources/> <connections>
--- a/Plugins/WizardPlugins/EricPluginWizard/Templates.py Sun Aug 26 15:03:20 2018 +0200 +++ b/Plugins/WizardPlugins/EricPluginWizard/Templates.py Sun Aug 26 15:54:51 2018 +0200 @@ -46,7 +46,6 @@ {modulesetup}\ {exeData}\ -{exeDataList}\ {apiFiles}\ {preview}\ {config1}\ @@ -177,6 +176,7 @@ "versionPosition": -1, "version": "", "versionCleanup": None, + "exeModule": None, } for exePath in ["exe1", "exe2"]: data["exe"] = exePath @@ -205,6 +205,26 @@ "versionPosition": -1, "version": "", "versionCleanup": None, + "exeModule": None, + } + + return data + + +''' + +exeDisplayDataInfoTemplate = '''def exeDisplayData(): + """ + Module function to support the display of some executable info. + + @return dictionary containing the data to be shown + @rtype dict + """ + data = { + "programEntry": False, + "header": "<translated header string>", + "text": "<translated entry string>", + "version": "", } return data
--- a/i18n/eric6_cs.ts Sun Aug 26 15:03:20 2018 +0200 +++ b/i18n/eric6_cs.ts Sun Aug 26 15:54:51 2018 +0200 @@ -3102,29 +3102,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="480"/> + <location filename="../UI/CodeDocumentationViewer.py" line="483"/> <source>No documentation available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="507"/> - <source>Definition: {0}{1} -</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../UI/CodeDocumentationViewer.py" line="510"/> + <source>Definition: {0}{1} +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/CodeDocumentationViewer.py" line="513"/> <source>Definition: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="557"/> + <location filename="../UI/CodeDocumentationViewer.py" line="560"/> <source>No source code documentation provider has been registered. This function has been disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="562"/> + <location filename="../UI/CodeDocumentationViewer.py" line="565"/> <source>This function has been disabled.</source> <translation type="unfinished"></translation> </message> @@ -3146,13 +3146,13 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="518"/> + <location filename="../UI/CodeDocumentationViewer.py" line="521"/> <source>Type: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="526"/> + <location filename="../UI/CodeDocumentationViewer.py" line="529"/> <source>Note: {0} </source> <translation type="unfinished"></translation> @@ -51414,36 +51414,36 @@ </message> <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="401"/> - <source>'exeDisplayData()' function</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>'exeDisplayData()' function returning program data to determine version information</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="421"/> <source>Select to create an 'exeDisplayDataList()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> - <source>'exeDisplayDataList()' function</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="424"/> + <source>'exeDisplayDataList()' function</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="434"/> <source>Select to create an 'apiFiles()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="427"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="437"/> <source>Include 'apiFiles()' function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="453"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="463"/> <source>Press to populate entry fields from project data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="456"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="466"/> <source>Populate from Project</source> <translation type="unfinished"></translation> </message> @@ -63073,7 +63073,7 @@ <translation>Č.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> @@ -63134,23 +63134,23 @@ <translation>{0} na {1}, {2}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="955"/> + <location filename="../QScintilla/Shell.py" line="964"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="963"/> + <location filename="../QScintilla/Shell.py" line="972"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1731"/> + <location filename="../QScintilla/Shell.py" line="1743"/> <source>Shell language "{0}" not supported. </source> <translation>Shell jazyk "{0}" není podporován.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> není soubor.</p></translation> </message> @@ -76225,7 +76225,7 @@ <translation>Zjistit akt&ualizace...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Report Bug</source> <translation>Reportovat Bugy</translation> </message> @@ -76305,7 +76305,7 @@ <translation><b>Unittest Script</b><p>Spustit unittest s aktuálním skriptem.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>Unittest Project</source> <translation>Unittest Projekt</translation> </message> @@ -76475,7 +76475,7 @@ <translation><b>Klávesové zkratky</b><p>Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5921"/> + <location filename="../UI/UserInterface.py" line="5926"/> <source>Export Keyboard Shortcuts</source> <translation>Exportovat klávesové zkratky</translation> </message> @@ -76495,7 +76495,7 @@ <translation><b>Export klávesových zkratek</b><p>Exportují se klávesové zkratky z aplikace.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Import Keyboard Shortcuts</source> <translation>Import klávesových zkratek</translation> </message> @@ -76625,7 +76625,7 @@ <translation>Nastavení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Help</source> <translation>Nápověda</translation> </message> @@ -76635,97 +76635,97 @@ <translation>Profily</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3343"/> + <location filename="../UI/UserInterface.py" line="3348"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Čísla verzí</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6908"/> + <location filename="../UI/UserInterface.py" line="6913"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>Emailová adresa nebo mail server adresa jsou prázdné. Prosím, nastavte váš email v dialogovém okně Nastavení.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3764"/> + <location filename="../UI/UserInterface.py" line="3769"/> <source>Configure Tool Groups ...</source> <translation>Konfigurace Skupin nástrojů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3768"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>Configure current Tool Group ...</source> <translation>Konfigurace aktuální skupiny nástrojů...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3719"/> + <location filename="../UI/UserInterface.py" line="3724"/> <source>&Builtin Tools</source> <translation>&Vestavěné nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>There is no main script defined for the current project. Aborting</source> <translation>V aktuálním projektu není definován hlavní skript. Zrušeno</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Problem</source> <translation>Problém</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source>Process Generation Error</source> <translation>Chyba v procesu generování</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Aktuálně není vybrán žádný prohlížeč. Prosím otevřete Nastavení a nějaký vyberte.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4803"/> + <location filename="../UI/UserInterface.py" line="4808"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Nemohu spustit prohlížeč nápovědy.<br>Ověřte jestli je dostupný jako <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Documentation Missing</source> <translation>Dokumentace chybí</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source>Documentation</source> <translation>Dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5378"/> + <location filename="../UI/UserInterface.py" line="5383"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>Adresář PyQt4 dokumentace není nakonfigurován.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source>Save tasks</source> <translation>Uložit úlohy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source>Read tasks</source> <translation>Načíst úlohy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Error during updates check</source> <translation>Chyba během zjišťování aktualizací</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>Update available</source> <translation>Byla nalezena aktualizace</translation> </message> @@ -76740,17 +76740,17 @@ <translation>Zobrazit externí nás&troje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Could not perform updates check.</source> <translation>Kontrolu updatů nelze provést.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>&Cancel</source> <translation>&Zrušit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>First time usage</source> <translation>Spuštěno poprvé</translation> </message> @@ -76790,7 +76790,7 @@ <translation>&Plugin Infa...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3736"/> + <location filename="../UI/UserInterface.py" line="3741"/> <source>&Plugin Tools</source> <translation>&Plugin nástroje</translation> </message> @@ -76810,12 +76810,12 @@ <translation><b>Odinstalovat plugin...</b><p>Otevře dialog pro odinstalaci pluginu.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3884"/> + <location filename="../UI/UserInterface.py" line="3889"/> <source>&Show all</source> <translation>&Zobrazit vše</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3886"/> + <location filename="../UI/UserInterface.py" line="3891"/> <source>&Hide all</source> <translation>&Skrýt vše</translation> </message> @@ -76845,7 +76845,7 @@ <translation>Zobrazit dostupné verze ke stažení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6899"/> <source><h3>Available versions</h3><table></source> <translation><h3>Dostupné verze</h3><table></translation> </message> @@ -76925,7 +76925,7 @@ <translation>Obnovit manažer nástrojových lišt...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>External Tools</source> <translation>Externí nástroje</translation> </message> @@ -76940,12 +76940,12 @@ <translation>Prohlížeč &multiprojektu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6240"/> + <location filename="../UI/UserInterface.py" line="6245"/> <source>Save session</source> <translation>Uložit relaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source>Read session</source> <translation>Načíst relaci</translation> </message> @@ -77015,12 +77015,12 @@ <translation><b>Přepnout vodorovnou nástrojovou lištu</b><p>Pokud je vodorovná nástrojová lišta skryta, tak se zobrazí. Je-li zobrazena, skryje se.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>Restart application</source> <translation>Restartovat aplikaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>The application needs to be restarted. Do it now?</source> <translation>Aplikace potřebuje restartovat. Má se provést nyní?</translation> </message> @@ -77175,7 +77175,7 @@ <translation>Editor &ikon...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt 3 support</source> <translation>Qt 3 podpora</translation> </message> @@ -77220,106 +77220,106 @@ <translation>Externí nástroje/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Soubor <b>{0}</b> neexistuje nebo má nulovou délku.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4623"/> + <location filename="../UI/UserInterface.py" line="4628"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Designer.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4695"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Linguist.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4741"/> + <location filename="../UI/UserInterface.py" line="4746"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Assistant.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4783"/> + <location filename="../UI/UserInterface.py" line="4788"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit aktuální prohlížeč.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4856"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit UI Previewer.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4906"/> + <location filename="../UI/UserInterface.py" line="4911"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Previewer překladů.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4927"/> + <location filename="../UI/UserInterface.py" line="4932"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nelze spustit SQL Browser.<br>Ujistěte se, že je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5020"/> + <location filename="../UI/UserInterface.py" line="5025"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>V externím nástroji '{0}' ve skupině '{1}' nebyl záznam nástroje nalezen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>No toolgroup entry '{0}' found.</source> <translation>Skupina nástrojů '{0}' nenalezena. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5073"/> <source>Starting process '{0} {1}'. </source> <translation>Spouštím proces '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Nemohu spustit příkaz <b>{0}</b><br>Ověřte jestli je dostupný jako <b>{1}</b>. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5160"/> + <location filename="../UI/UserInterface.py" line="5165"/> <source>Process '{0}' has exited. </source> <translation>Proces '{0}' byl ukončen. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Adresář dokumentace "<b>{0}</b>" nebyl nalezen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru s úlohami <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s úlohami <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6177"/> + <location filename="../UI/UserInterface.py" line="6182"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Zápis do souboru relace session <b>{0}</b> se nezdařil.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor relace session <b>{0}</b> nelze přečíst.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> není soubor.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6692"/> + <location filename="../UI/UserInterface.py" line="6697"/> <source>Trying host {0}</source> <translation>Zkouším host {0}</translation> </message> @@ -77354,7 +77354,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> @@ -77394,27 +77394,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6754"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77500,12 +77500,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4997"/> + <location filename="../UI/UserInterface.py" line="5002"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6964"/> + <location filename="../UI/UserInterface.py" line="6969"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -77880,7 +77880,7 @@ <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5444"/> + <location filename="../UI/UserInterface.py" line="5449"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>Adresář PyQt4 dokumentace není nakonfigurován.</p> {5 ?}</translation> </message> @@ -77890,7 +77890,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -77910,7 +77910,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6687"/> + <location filename="../UI/UserInterface.py" line="6692"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -77980,27 +77980,27 @@ <translation type="unfinished"><b>Eric API dokumentace</b><p>Zobrazit Eric API dokumentaci. Umístění dokumentace je v podadresáři Documentation/Source v instalačním adresáři eric5.</p> {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished">Qt v.3 není podporováno v eric5. {3 ?} {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished">Aktualizace <b>{0}</b> eric5 je připravena na <b>{1}</b>. Chcete ji stáhnout a nainstalovat? {0}?} {6 ?} {1}?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric5 je aktuální {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>You are using the latest version of eric6</source> <translation type="unfinished">Používáte poslední verzi eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">eric5 nebyl ještě nakonfigurován. Bude spuštěn konfigurační dialog. {6 ?}</translation> </message> @@ -78010,17 +78010,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3739"/> + <location filename="../UI/UserInterface.py" line="3744"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811"/> + <location filename="../UI/UserInterface.py" line="3816"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703"/> + <location filename="../UI/UserInterface.py" line="6708"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -78065,7 +78065,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>Load session</source> <translation type="unfinished">Načíst relaci</translation> </message> @@ -78080,17 +78080,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78105,17 +78105,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6828"/> + <location filename="../UI/UserInterface.py" line="6833"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -78170,7 +78170,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_de.ts Sun Aug 26 15:03:20 2018 +0200 +++ b/i18n/eric6_de.ts Sun Aug 26 15:54:51 2018 +0200 @@ -2998,31 +2998,31 @@ <translation>Normaler Text</translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="480"/> + <location filename="../UI/CodeDocumentationViewer.py" line="483"/> <source>No documentation available</source> <translation>Keine Dokumentation verfügbar</translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="507"/> + <location filename="../UI/CodeDocumentationViewer.py" line="510"/> <source>Definition: {0}{1} </source> <translation>Definition: {0}{1} </translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="510"/> + <location filename="../UI/CodeDocumentationViewer.py" line="513"/> <source>Definition: {0} </source> <translation>Definition: {0} </translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="557"/> + <location filename="../UI/CodeDocumentationViewer.py" line="560"/> <source>No source code documentation provider has been registered. This function has been disabled.</source> <translation>Es ist kein Provider für Code Dokumentation registriert. Diese Funktion wurde deaktiviert.</translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="562"/> + <location filename="../UI/CodeDocumentationViewer.py" line="565"/> <source>This function has been disabled.</source> <translation>Diese Funktion wurde deaktiviert.</translation> </message> @@ -3044,14 +3044,14 @@ <translation><p><b>Hinweis:</b> @NOTE@</p></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="518"/> + <location filename="../UI/CodeDocumentationViewer.py" line="521"/> <source>Type: {0} </source> <translation>Typ: {0} </translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="526"/> + <location filename="../UI/CodeDocumentationViewer.py" line="529"/> <source>Note: {0} </source> <translation>Hinweis: {0} @@ -50236,39 +50236,49 @@ </message> <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="401"/> - <source>'exeDisplayData()' function</source> - <translation>'exeDisplayData()' Funktion</translation> - </message> - <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>'exeDisplayData()' function returning program data to determine version information</source> + <translation>'exeDisplayData()' Funktion mit Programmdaten zur Ermittlung von Versionsinformationen</translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="421"/> <source>Select to create an 'exeDisplayDataList()' function skeleton</source> <translation>Auswählen, um ein 'exeDisplayDataList()' Funktionsgerüst zu erzeugen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> - <source>'exeDisplayDataList()' function</source> - <translation>'exeDisplayDataList()' Funktion</translation> - </message> - <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="424"/> + <source>'exeDisplayDataList()' function</source> + <translation>'exeDisplayDataList()' Funktion</translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="434"/> <source>Select to create an 'apiFiles()' function skeleton</source> <translation>Auswählen, um ein 'apiFiles()' Funktionsgerüst zu erzeugen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="427"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="437"/> <source>Include 'apiFiles()' function</source> <translation>Erzeuge 'apiFiles()' Funktion</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="453"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="463"/> <source>Press to populate entry fields from project data</source> <translation>Drücken, um Eingabefelder mit Projektdaten zu befüllen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="456"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="466"/> <source>Populate from Project</source> <translation>Von Projekt befüllen</translation> </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>Select to create an 'exeDisplayData()' function skeleton returning version info</source> + <translation>Auswählen, um ein 'exeDisplayData()' Funktionsgerüst mit Versionsinformationen zu erzeugen</translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> + <source>'exeDisplayData()' function returning version information</source> + <translation>'exeDisplayData()' Funktion mit Versionsinformationen</translation> + </message> </context> <context> <name>Preferences</name> @@ -61851,7 +61861,7 @@ <translation>Zurücksetzen und Löschen</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> @@ -61861,7 +61871,7 @@ <translation>Nr.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> @@ -61876,7 +61886,7 @@ <translation>{0} auf {1}, {2}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1731"/> + <location filename="../QScintilla/Shell.py" line="1743"/> <source>Shell language "{0}" not supported. </source> <translation>Die Shell-Sprache „{0}“ wird nicht unterstützt. @@ -61888,12 +61898,12 @@ <translation>Passiver Debugmodus</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="955"/> + <location filename="../QScintilla/Shell.py" line="964"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="963"/> + <location filename="../QScintilla/Shell.py" line="972"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> @@ -74560,7 +74570,7 @@ <translation>Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Help</source> <translation>Hilfe</translation> </message> @@ -74570,7 +74580,7 @@ <translation>&Werkzeugleisten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Problem</source> <translation>Problem</translation> </message> @@ -74590,7 +74600,7 @@ <translation>&Was ist das?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> @@ -74660,7 +74670,7 @@ <translation>E&xtras</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Report Bug</source> <translation>Fehler berichten</translation> </message> @@ -74680,7 +74690,7 @@ <translation><b>Fehler berichten...</b><p>Öffnet einen Dialog zum Senden eines Fehlerberichtes.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5921"/> + <location filename="../UI/UserInterface.py" line="5926"/> <source>Export Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle exportieren</translation> </message> @@ -74700,7 +74710,7 @@ <translation><b>Tastaturkurzbefehle exportieren</b><p>Exportiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Import Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle importieren</translation> </message> @@ -74790,7 +74800,7 @@ <translation><b>Modultest (Skript)</b><p>Modultest für aktuelles Skript ausführen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>Unittest Project</source> <translation>Modultest (Projekt)</translation> </message> @@ -74810,7 +74820,7 @@ <translation>&Modultests</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <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> @@ -74860,7 +74870,7 @@ <translation><b>Dateien Seite an Seite vergleichen</b><p>Öffnet einen Dialog zum Vergleich zweier Dateien und zur Anzeige des Ergebnisse Seite an Seite.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source>Drop Error</source> <translation>Drop-Fehler</translation> </message> @@ -74930,32 +74940,32 @@ <translation><b>Ansichtenprofile</b><p>Ansichtenprofile konfigurieren. Mit diesem Dialog kann die Sichtbarkeit der verschiedenen Fenster für die vorbestimmten Ansichtenprofile eingestellt werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Die Datei <b>{0}</b> existiert nicht oder hat die Größe Null.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4623"/> + <location filename="../UI/UserInterface.py" line="4628"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Designer konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4695"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Linguist konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4741"/> + <location filename="../UI/UserInterface.py" line="4746"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Assistant konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Der Werkzeugeeintrag <b>{0}</b> konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{1}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> @@ -74980,7 +74990,7 @@ <translation><b>UI-Vorschau</b><p>Starte die UI-Vorschau.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4856"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die UI-Vorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> @@ -75005,7 +75015,7 @@ <translation><b>Übersetzungsvorschau</b><p>Dies startet das Programm zur Vorschau von Übersetzungen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4906"/> + <location filename="../UI/UserInterface.py" line="4911"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Übersetzungsvorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> @@ -75045,47 +75055,47 @@ <translation>Aufgabenanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source>Save tasks</source> <translation>Aufgaben speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source>Read tasks</source> <translation>Aufgaben lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Momentan ist kein Betrachter angegeben. Bitte benutzen Sie den Einstellungsdialog, um einen festzulegen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4783"/> + <location filename="../UI/UserInterface.py" line="4788"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der Betrachter konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Documentation Missing</source> <translation>Dokumentation fehlt</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Der Dokumentationsstartpunkt „<b>{0}</b>“ konnte nicht gefunden werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>E-Mail-Adresse oder Mailserver-Adresse sind leer. Bitte konfiguriere die E-Mail-Einstellungen im Einstellungsdialog.</translation> </message> @@ -75180,7 +75190,7 @@ <translation>Öffne die Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4803"/> + <location filename="../UI/UserInterface.py" line="4808"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Die Hilfeanzeige konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>hh</b> verfügbar ist.</p></translation> </message> @@ -75256,61 +75266,61 @@ <translation>Profile</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3719"/> + <location filename="../UI/UserInterface.py" line="3724"/> <source>&Builtin Tools</source> <translation>&Eingebaute Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5073"/> <source>Starting process '{0} {1}'. </source> <translation>Starte Prozess „{0} {1}“. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5160"/> + <location filename="../UI/UserInterface.py" line="5165"/> <source>Process '{0}' has exited. </source> <translation>Prozess „{0}“ ist beendet. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source>Documentation</source> <translation>Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5378"/> + <location filename="../UI/UserInterface.py" line="5383"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>Der PyQt4-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Error during updates check</source> <translation>Fehler während der Aktualisierungsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>Update available</source> <translation>Aktualisierung verfügbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3343"/> + <location filename="../UI/UserInterface.py" line="3348"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Versionsnummern</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6908"/> + <location filename="../UI/UserInterface.py" line="6913"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3764"/> + <location filename="../UI/UserInterface.py" line="3769"/> <source>Configure Tool Groups ...</source> <translation>Konfiguriere Werkzeuggruppen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3768"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>Configure current Tool Group ...</source> <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation> </message> @@ -75325,22 +75335,22 @@ <translation>Zeige externe &Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Could not perform updates check.</source> <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>&Cancel</source> <translation>&Abbrechen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6692"/> + <location filename="../UI/UserInterface.py" line="6697"/> <source>Trying host {0}</source> <translation>Prüfe Host {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>First time usage</source> <translation>Erstmalige Nutzung</translation> </message> @@ -75380,7 +75390,7 @@ <translation>&Plugininformationen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3736"/> + <location filename="../UI/UserInterface.py" line="3741"/> <source>&Plugin Tools</source> <translation>&Pluginwerkzeuge</translation> </message> @@ -75400,12 +75410,12 @@ <translation><b>Plugin deinstallieren...</b><p>Dies öffnet einen Dialog zur Deinstallation eines Plugins.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3884"/> + <location filename="../UI/UserInterface.py" line="3889"/> <source>&Show all</source> <translation>Alle an&zeigen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3886"/> + <location filename="../UI/UserInterface.py" line="3891"/> <source>&Hide all</source> <translation>Alle &ausblenden</translation> </message> @@ -75435,7 +75445,7 @@ <translation>Zeige die verfügbaren eric-Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6899"/> <source><h3>Available versions</h3><table></source> <translation><h3>Verfügbare Versionen</h3><table></translation> </message> @@ -75520,17 +75530,17 @@ <translation>Externe Werkzeuge/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>External Tools</source> <translation>Externe Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5020"/> + <location filename="../UI/UserInterface.py" line="5025"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Kein Eintrag für das externe Werkzeug „{0}“ in der Gruppe „{1}“ gefunden.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>No toolgroup entry '{0}' found.</source> <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation> </message> @@ -75545,22 +75555,22 @@ <translation>&Mehrfachprojektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6240"/> + <location filename="../UI/UserInterface.py" line="6245"/> <source>Save session</source> <translation>Sitzung speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6177"/> + <location filename="../UI/UserInterface.py" line="6182"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source>Read session</source> <translation>Sitzung lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> @@ -75630,12 +75640,12 @@ <translation><b>Schalte das Fenster der Horizontalen Werkzeugbox um</b><p>Falls das Fenster der Horizontalen Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>Restart application</source> <translation>Anwendung neu starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>The application needs to be restarted. Do it now?</source> <translation>Die Anwendung muss neu gestartet werden. Jetzt durchführen?</translation> </message> @@ -75780,7 +75790,7 @@ <translation><b>SQL-Browser</b><p>Erforsche eine SQL-Datenbank.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4927"/> + <location filename="../UI/UserInterface.py" line="4932"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der SQL-Browser konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> @@ -75795,7 +75805,7 @@ <translation>&Icon-Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt 3 support</source> <translation>Qt3-Unterstützung</translation> </message> @@ -75845,7 +75855,7 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Tastaturkurzbefehlsdatei (*.e4k)</translation> </message> @@ -75885,27 +75895,27 @@ <translation><b>Python 2-Dokumentation</b><p>Zeigt die Python 2-Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 2-Dokumentation gesucht wird, unter Windows das Verzeichnis <i>doc</i> unter dem Verzeichnis, in dem der konfigurierte Python 2-Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html/python-docs-html</i>. Um dies zu überschreiben, können Sie die Umgebungsvariable PYTHON2DOCDIR setzen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>Error getting versions information</source> <translation>Fehler beim Herunterladen der Versionsinformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6754"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>Die Versionsinformationen konnten nicht heruntergeladen werden. Bitte gehen Sie online und versuchen Sie es erneut.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Open Browser</source> <translation>Browser starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Could not start a web browser</source> <translation>Der Systemwebbrowser konnte nicht gestartet werden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>Die Versionsinformationen konnten seit 7 Tagen nicht heruntergeladen werden. Bitte gehen Sie online und versuchen Sie es erneut.</translation> </message> @@ -75991,12 +76001,12 @@ <translation><b>Bildschirmfoto</b><p>Dies öffnet einen Dialog, um ein Bildschirmfoto aufzunehmen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4997"/> + <location filename="../UI/UserInterface.py" line="5002"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Bildschirmfotoanwendung konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6964"/> + <location filename="../UI/UserInterface.py" line="6969"/> <source>Select Workspace Directory</source> <translation>Wähle Arbeitsverzeichnis</translation> </message> @@ -76371,7 +76381,7 @@ <translation>Öffne die PyQt5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5444"/> + <location filename="../UI/UserInterface.py" line="5449"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><p>Der PyQt5-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> @@ -76381,7 +76391,7 @@ <translation><b>Python 3-Dokumentation</b><p>Zeigt die Python 3-Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 3-Dokumentation gesucht wird, unter Windows das Verzeichnis <i>doc</i> unter dem Verzeichnis, in dem der Python 3-Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html</i>. Um dies zu überschreiben, können Sie die Umgebungsvariable PYTHON3DOCDIR setzen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> @@ -76401,7 +76411,7 @@ <translation><b>Zeige Fehlerbericht...</b><p>Dies öffnet einen Dialog zur Anzeige des aktuellsten Fehlerberichtes.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6687"/> + <location filename="../UI/UserInterface.py" line="6692"/> <source>Version Check</source> <translation>Versionsprüfung</translation> </message> @@ -76472,27 +76482,27 @@ <translation><b>Eric-API-Dokumentation</b><p>Zeige die Eric-API-Dokumentation an. Der Pfad für die Dokumentation ist das Unterverzeichnis Documentation/Source im eric6-Installationverzeichnis.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt v.3 wird von eric6 nicht unterstützt.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>Eine Aktualisierung auf <b>{0}</b> von Eric6 ist unter <b>{1}</b> verfügbar. Wollen Sie sie laden?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>Eric6 is up to date</source> <translation>Eric6 ist aktuell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>You are using the latest version of eric6</source> <translation>Sie verwenden die aktuellste Version von eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>eric6 wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation> </message> @@ -76502,17 +76512,17 @@ <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3739"/> + <location filename="../UI/UserInterface.py" line="3744"/> <source>&User Tools</source> <translation>&Benutzerwerkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811"/> + <location filename="../UI/UserInterface.py" line="3816"/> <source>No User Tools Configured</source> <translation>Keine Benutzerwerkzeuge konfiguriert</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703"/> + <location filename="../UI/UserInterface.py" line="6708"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>Die Versionsinformationen konnten nicht heruntergeladen werden, da sie <b>nicht verbunden</b> sind. Bitte gehen Sie online und versuchen Sie es erneut.</translation> </message> @@ -76557,7 +76567,7 @@ <translation><b>Sitzung speichern...</b><p>Dies speichert die aktuelle Sitzung in eine Datei. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>Load session</source> <translation>Sitzung laden</translation> </message> @@ -76572,17 +76582,17 @@ <translation><b>Sitzung laden...</b><p>Dies lädt eine zuvor gesicherte Sitzung. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>eric6 Session Files (*.e5s)</source> <translation>eric6 Sitzungsdateien (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>Crash Session found!</source> <translation>Absturzsitzung gefunden!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Eine Sitzungsdatei einer abgestürzten Sitzung wurde gefunden. Soll diese Sitzung wiederhergestellt werden?</translation> </message> @@ -76597,17 +76607,17 @@ <translation>Initialisiere Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>Update Check</source> <translation>Aktualisierungsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation>Eric wurde direkt von vom Quelltext installiert. Eine Aktualitätsprüfung ist daher nicht möglich.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6828"/> + <location filename="../UI/UserInterface.py" line="6833"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation>Sie verwenden ein Snapshot-Release von eri6. Eine neueres, stabiles Release könnte verfügbar sein.</translation> </message> @@ -76662,7 +76672,7 @@ <translation><b>PySide2-Dokumentation</b><p>Zeige die PySide2-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><p>Der PySide{0}-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message>
--- a/i18n/eric6_empty.ts Sun Aug 26 15:03:20 2018 +0200 +++ b/i18n/eric6_empty.ts Sun Aug 26 15:54:51 2018 +0200 @@ -2965,29 +2965,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="480"/> + <location filename="../UI/CodeDocumentationViewer.py" line="483"/> <source>No documentation available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="507"/> - <source>Definition: {0}{1} -</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../UI/CodeDocumentationViewer.py" line="510"/> + <source>Definition: {0}{1} +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/CodeDocumentationViewer.py" line="513"/> <source>Definition: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="557"/> + <location filename="../UI/CodeDocumentationViewer.py" line="560"/> <source>No source code documentation provider has been registered. This function has been disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="562"/> + <location filename="../UI/CodeDocumentationViewer.py" line="565"/> <source>This function has been disabled.</source> <translation type="unfinished"></translation> </message> @@ -3009,13 +3009,13 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="518"/> + <location filename="../UI/CodeDocumentationViewer.py" line="521"/> <source>Type: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="526"/> + <location filename="../UI/CodeDocumentationViewer.py" line="529"/> <source>Note: {0} </source> <translation type="unfinished"></translation> @@ -49983,39 +49983,49 @@ </message> <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="401"/> - <source>'exeDisplayData()' function</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>'exeDisplayData()' function returning program data to determine version information</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="421"/> <source>Select to create an 'exeDisplayDataList()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> - <source>'exeDisplayDataList()' function</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="424"/> + <source>'exeDisplayDataList()' function</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="434"/> <source>Select to create an 'apiFiles()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="427"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="437"/> <source>Include 'apiFiles()' function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="453"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="463"/> <source>Press to populate entry fields from project data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="456"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="466"/> <source>Populate from Project</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>Select to create an 'exeDisplayData()' function skeleton returning version info</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> + <source>'exeDisplayData()' function returning version information</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Preferences</name> @@ -61461,28 +61471,28 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="955"/> + <location filename="../QScintilla/Shell.py" line="964"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="963"/> + <location filename="../QScintilla/Shell.py" line="972"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1731"/> + <location filename="../QScintilla/Shell.py" line="1743"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> @@ -74582,7 +74592,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Report Bug</source> <translation type="unfinished"></translation> </message> @@ -74702,7 +74712,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>Unittest Project</source> <translation type="unfinished"></translation> </message> @@ -75107,7 +75117,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5921"/> + <location filename="../UI/UserInterface.py" line="5926"/> <source>Export Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -75127,7 +75137,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Import Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -75507,7 +75517,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Help</source> <translation type="unfinished"></translation> </message> @@ -75562,359 +75572,359 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3343"/> + <location filename="../UI/UserInterface.py" line="3348"/> <source><h3>Version Numbers</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6908"/> + <location filename="../UI/UserInterface.py" line="6913"/> <source></table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>Restart application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>The application needs to be restarted. Do it now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3719"/> + <location filename="../UI/UserInterface.py" line="3724"/> <source>&Builtin Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3736"/> + <location filename="../UI/UserInterface.py" line="3741"/> <source>&Plugin Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3739"/> + <location filename="../UI/UserInterface.py" line="3744"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3764"/> + <location filename="../UI/UserInterface.py" line="3769"/> <source>Configure Tool Groups ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3768"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>Configure current Tool Group ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811"/> + <location filename="../UI/UserInterface.py" line="3816"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3884"/> + <location filename="../UI/UserInterface.py" line="3889"/> <source>&Show all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3886"/> + <location filename="../UI/UserInterface.py" line="3891"/> <source>&Hide all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Problem</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4623"/> + <location filename="../UI/UserInterface.py" line="4628"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4695"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4741"/> + <location filename="../UI/UserInterface.py" line="4746"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4783"/> + <location filename="../UI/UserInterface.py" line="4788"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4803"/> + <location filename="../UI/UserInterface.py" line="4808"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4856"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4906"/> + <location filename="../UI/UserInterface.py" line="4911"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4927"/> + <location filename="../UI/UserInterface.py" line="4932"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4997"/> + <location filename="../UI/UserInterface.py" line="5002"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>External Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5020"/> + <location filename="../UI/UserInterface.py" line="5025"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5073"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5160"/> + <location filename="../UI/UserInterface.py" line="5165"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Documentation Missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source>Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5378"/> + <location filename="../UI/UserInterface.py" line="5383"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5444"/> + <location filename="../UI/UserInterface.py" line="5449"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6240"/> + <location filename="../UI/UserInterface.py" line="6245"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6177"/> + <location filename="../UI/UserInterface.py" line="6182"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source>Read session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>&Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6687"/> - <source>Version Check</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="6692"/> + <source>Version Check</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6697"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703"/> + <location filename="../UI/UserInterface.py" line="6708"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6754"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Error during updates check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Could not perform updates check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6899"/> <source><h3>Available versions</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>First time usage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6964"/> + <location filename="../UI/UserInterface.py" line="6969"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -75929,7 +75939,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>Load session</source> <translation type="unfinished"></translation> </message> @@ -75944,17 +75954,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -75969,17 +75979,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6828"/> + <location filename="../UI/UserInterface.py" line="6833"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -76034,7 +76044,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_en.ts Sun Aug 26 15:03:20 2018 +0200 +++ b/i18n/eric6_en.ts Sun Aug 26 15:54:51 2018 +0200 @@ -2965,29 +2965,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="480"/> + <location filename="../UI/CodeDocumentationViewer.py" line="483"/> <source>No documentation available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="507"/> - <source>Definition: {0}{1} -</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../UI/CodeDocumentationViewer.py" line="510"/> + <source>Definition: {0}{1} +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/CodeDocumentationViewer.py" line="513"/> <source>Definition: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="557"/> + <location filename="../UI/CodeDocumentationViewer.py" line="560"/> <source>No source code documentation provider has been registered. This function has been disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="562"/> + <location filename="../UI/CodeDocumentationViewer.py" line="565"/> <source>This function has been disabled.</source> <translation type="unfinished"></translation> </message> @@ -3009,13 +3009,13 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="518"/> + <location filename="../UI/CodeDocumentationViewer.py" line="521"/> <source>Type: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="526"/> + <location filename="../UI/CodeDocumentationViewer.py" line="529"/> <source>Note: {0} </source> <translation type="unfinished"></translation> @@ -50030,39 +50030,49 @@ </message> <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="401"/> - <source>'exeDisplayData()' function</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>'exeDisplayData()' function returning program data to determine version information</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="421"/> <source>Select to create an 'exeDisplayDataList()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> - <source>'exeDisplayDataList()' function</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="424"/> + <source>'exeDisplayDataList()' function</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="434"/> <source>Select to create an 'apiFiles()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="427"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="437"/> <source>Include 'apiFiles()' function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="453"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="463"/> <source>Press to populate entry fields from project data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="456"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="466"/> <source>Populate from Project</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>Select to create an 'exeDisplayData()' function skeleton returning version info</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> + <source>'exeDisplayData()' function returning version information</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Preferences</name> @@ -61472,28 +61482,28 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="955"/> + <location filename="../QScintilla/Shell.py" line="964"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="963"/> + <location filename="../QScintilla/Shell.py" line="972"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1731"/> + <location filename="../QScintilla/Shell.py" line="1743"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> @@ -74306,7 +74316,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Report Bug</source> <translation type="unfinished"></translation> </message> @@ -74406,7 +74416,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>Unittest Project</source> <translation type="unfinished"></translation> </message> @@ -74691,7 +74701,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5921"/> + <location filename="../UI/UserInterface.py" line="5926"/> <source>Export Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -74711,7 +74721,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Import Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -74956,7 +74966,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Help</source> <translation type="unfinished"></translation> </message> @@ -75006,269 +75016,269 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3343"/> + <location filename="../UI/UserInterface.py" line="3348"/> <source><h3>Version Numbers</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6908"/> + <location filename="../UI/UserInterface.py" line="6913"/> <source></table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>Restart application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>The application needs to be restarted. Do it now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3764"/> + <location filename="../UI/UserInterface.py" line="3769"/> <source>Configure Tool Groups ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3768"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>Configure current Tool Group ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3719"/> + <location filename="../UI/UserInterface.py" line="3724"/> <source>&Builtin Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3736"/> + <location filename="../UI/UserInterface.py" line="3741"/> <source>&Plugin Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3884"/> + <location filename="../UI/UserInterface.py" line="3889"/> <source>&Show all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3886"/> + <location filename="../UI/UserInterface.py" line="3891"/> <source>&Hide all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Problem</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4623"/> + <location filename="../UI/UserInterface.py" line="4628"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4695"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4741"/> + <location filename="../UI/UserInterface.py" line="4746"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4783"/> + <location filename="../UI/UserInterface.py" line="4788"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4803"/> + <location filename="../UI/UserInterface.py" line="4808"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4856"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4906"/> + <location filename="../UI/UserInterface.py" line="4911"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4927"/> + <location filename="../UI/UserInterface.py" line="4932"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>External Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5020"/> + <location filename="../UI/UserInterface.py" line="5025"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5073"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5160"/> + <location filename="../UI/UserInterface.py" line="5165"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Documentation Missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source>Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5378"/> + <location filename="../UI/UserInterface.py" line="5383"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6240"/> + <location filename="../UI/UserInterface.py" line="6245"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6177"/> + <location filename="../UI/UserInterface.py" line="6182"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source>Read session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>&Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6692"/> + <location filename="../UI/UserInterface.py" line="6697"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Error during updates check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Could not perform updates check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6899"/> <source><h3>Available versions</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>First time usage</source> <translation type="unfinished"></translation> </message> @@ -75308,27 +75318,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6754"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -75414,12 +75424,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4997"/> + <location filename="../UI/UserInterface.py" line="5002"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6964"/> + <location filename="../UI/UserInterface.py" line="6969"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -75794,7 +75804,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5444"/> + <location filename="../UI/UserInterface.py" line="5449"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -75804,7 +75814,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -75824,7 +75834,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6687"/> + <location filename="../UI/UserInterface.py" line="6692"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -75894,27 +75904,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished"></translation> </message> @@ -75924,17 +75934,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3739"/> + <location filename="../UI/UserInterface.py" line="3744"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811"/> + <location filename="../UI/UserInterface.py" line="3816"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703"/> + <location filename="../UI/UserInterface.py" line="6708"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -75979,7 +75989,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>Load session</source> <translation type="unfinished"></translation> </message> @@ -75994,17 +76004,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -76019,17 +76029,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6828"/> + <location filename="../UI/UserInterface.py" line="6833"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -76084,7 +76094,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_es.ts Sun Aug 26 15:03:20 2018 +0200 +++ b/i18n/eric6_es.ts Sun Aug 26 15:54:51 2018 +0200 @@ -2995,31 +2995,31 @@ <translation>Texto Plano</translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="480"/> + <location filename="../UI/CodeDocumentationViewer.py" line="483"/> <source>No documentation available</source> <translation>No hay documentación disponible</translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="507"/> + <location filename="../UI/CodeDocumentationViewer.py" line="510"/> <source>Definition: {0}{1} </source> <translation>Definición: {0}{1} </translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="510"/> + <location filename="../UI/CodeDocumentationViewer.py" line="513"/> <source>Definition: {0} </source> <translation>Definición: {0} </translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="557"/> + <location filename="../UI/CodeDocumentationViewer.py" line="560"/> <source>No source code documentation provider has been registered. This function has been disabled.</source> <translation>No hay registrado ningún proveedor de documentación de código. Esta función se ha deshabilitado.</translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="562"/> + <location filename="../UI/CodeDocumentationViewer.py" line="565"/> <source>This function has been disabled.</source> <translation>Esta función se ha deshabilitado.</translation> </message> @@ -3041,14 +3041,14 @@ <translation><p><b>Nota:</b> @NOTE@</p></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="518"/> + <location filename="../UI/CodeDocumentationViewer.py" line="521"/> <source>Type: {0} </source> <translation>Tipo: {0} </translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="526"/> + <location filename="../UI/CodeDocumentationViewer.py" line="529"/> <source>Note: {0} </source> <translation>Nota: {0} @@ -50247,39 +50247,49 @@ </message> <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="401"/> - <source>'exeDisplayData()' function</source> - <translation>Función 'exeDisplayData()'</translation> - </message> - <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>'exeDisplayData()' function returning program data to determine version information</source> + <translation type="unfinished">Función 'exeDisplayData()'</translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="421"/> <source>Select to create an 'exeDisplayDataList()' function skeleton</source> <translation>Seleccionar para crear un esqueleto de función 'exeDisplayDataList()'</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> - <source>'exeDisplayDataList()' function</source> - <translation>Función 'exeDisplayDataList()'</translation> - </message> - <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="424"/> + <source>'exeDisplayDataList()' function</source> + <translation>Función 'exeDisplayDataList()'</translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="434"/> <source>Select to create an 'apiFiles()' function skeleton</source> <translation>Seleccionar para crear un esqueleto de función 'apiFiles()'</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="427"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="437"/> <source>Include 'apiFiles()' function</source> <translation>Incluir función 'apiFiles()'</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="453"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="463"/> <source>Press to populate entry fields from project data</source> <translation>Pulsar para poblar los campos de entrada a partir de datos del proyecto</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="456"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="466"/> <source>Populate from Project</source> <translation>Poblar a partir del proyecto</translation> </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>Select to create an 'exeDisplayData()' function skeleton returning version info</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> + <source>'exeDisplayData()' function returning version information</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Preferences</name> @@ -61843,7 +61853,7 @@ <translation>No.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source>Drop Error</source> <translation>Error al soltar</translation> </message> @@ -61895,24 +61905,24 @@ <translation>{0} en {1}, {2}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="955"/> + <location filename="../QScintilla/Shell.py" line="964"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="963"/> + <location filename="../QScintilla/Shell.py" line="972"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1731"/> + <location filename="../QScintilla/Shell.py" line="1743"/> <source>Shell language "{0}" not supported. </source> <translation>Lenguaje de Shell "{0}" no soportado. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> no es un archivo.</p></translation> </message> @@ -74713,7 +74723,7 @@ <translation>Mostrar las versiones disponibles para descarga</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Report Bug</source> <translation>Enviar informe de bugs</translation> </message> @@ -74793,7 +74803,7 @@ <translation><b>Test Unitario de Script</b><p>Ejecuta un test unitario con el script actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>Unittest Project</source> <translation>Test Unitario de Proyecto</translation> </message> @@ -74973,7 +74983,7 @@ <translation><b>Atajos de Teclado</b><p>Establezca los atajos de teclado para la aplicación con sus valores preferidos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5921"/> + <location filename="../UI/UserInterface.py" line="5926"/> <source>Export Keyboard Shortcuts</source> <translation>Exportar Atajos de Teclado</translation> </message> @@ -74993,7 +75003,7 @@ <translation><b>Exportar Atajos de Teclado</b><p>Exporte los atajos de teclado de la aplicación.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Import Keyboard Shortcuts</source> <translation>Importar Atajos de Teclado</translation> </message> @@ -75183,7 +75193,7 @@ <translation>Ajustes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Help</source> <translation>Ayuda</translation> </message> @@ -75198,132 +75208,132 @@ <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3343"/> + <location filename="../UI/UserInterface.py" line="3348"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Números de Versiones</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6908"/> + <location filename="../UI/UserInterface.py" line="6913"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>La dirección de correo electrónico o la dirección del servidor de correo están en blanco. Por favor configure las opciones de Correo Electrónico en el diálogo de Preferencias.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3764"/> + <location filename="../UI/UserInterface.py" line="3769"/> <source>Configure Tool Groups ...</source> <translation>Configurar Grupos de Herramientas ...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3768"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>Configure current Tool Group ...</source> <translation>Configurar Grupo de Herramientas actual ...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3719"/> + <location filename="../UI/UserInterface.py" line="3724"/> <source>&Builtin Tools</source> <translation>Herramientas de serie (&builtin)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3736"/> + <location filename="../UI/UserInterface.py" line="3741"/> <source>&Plugin Tools</source> <translation>Herramientas de Extensión (&Plugin)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3884"/> + <location filename="../UI/UserInterface.py" line="3889"/> <source>&Show all</source> <translation>&Ver todo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3886"/> + <location filename="../UI/UserInterface.py" line="3891"/> <source>&Hide all</source> <translation>&Ocultar todo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>There is no main script defined for the current project. Aborting</source> <translation>No hay script principal definido para el proyecto actual. Abortando</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source>Process Generation Error</source> <translation>Error de Generación de Proceso</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>No hay visor personalizado seleccionado actualmente. Por favor, especifique uno en el diálogo de preferencias.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4803"/> + <location filename="../UI/UserInterface.py" line="4808"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>No se ha podido ejecutar el visor de ayuda.<br>Asegúrese de que esta disponible como <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Documentation Missing</source> <translation>Falta documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source>Documentation</source> <translation>Documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5378"/> + <location filename="../UI/UserInterface.py" line="5383"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PyQt4 no ha sido configurado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source>Save tasks</source> <translation>Guardar tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source>Read tasks</source> <translation>Leer tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source>Drop Error</source> <translation>Error de volcado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Error during updates check</source> <translation>Error durante la verificación de actualización</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>&Cancel</source> <translation>&Cancelar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>Update available</source> <translation>Actualizaciones disponibles</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Could not perform updates check.</source> <translation>No se puede llevar a cabo la verificación de actualizaciones.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6899"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versiones disponibles</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>First time usage</source> <translation>Usado por primera vez</translation> </message> @@ -75383,7 +75393,7 @@ <translation>Restaurando Gestor de Barras de Herramientas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>External Tools</source> <translation>Herramientas Externas</translation> </message> @@ -75398,12 +75408,12 @@ <translation>Visor de &Multiproyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6240"/> + <location filename="../UI/UserInterface.py" line="6245"/> <source>Save session</source> <translation>Guardar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source>Read session</source> <translation>Cargar sesión</translation> </message> @@ -75478,12 +75488,12 @@ <translation><b>Conmutar la ventana de Caja de Herramientas Horizontal</b><p>Si la ventana de Caja de Herramientas Horizontal está escondida, se muestra. Si está siendo mostrada, se cierra.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>Restart application</source> <translation>Reiniciar aplicación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>The application needs to be restarted. Do it now?</source> <translation>La aplicación necesita ser reiniciada. ¿Desea hacerlo ahora?</translation> </message> @@ -75633,7 +75643,7 @@ <translation>Editor de &Iconos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt 3 support</source> <translation>Soporte para Qt 3</translation> </message> @@ -75673,106 +75683,106 @@ <translation>Herramientas Externas/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>El archivo <b>{0}</b> no existe o tiene longitud nula. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4623"/> + <location filename="../UI/UserInterface.py" line="4628"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Designer.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4695"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Linguist.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4741"/> + <location filename="../UI/UserInterface.py" line="4746"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Assistant.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4783"/> + <location filename="../UI/UserInterface.py" line="4788"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el visor personalizado.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4856"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el Previsualizador de UI.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4906"/> + <location filename="../UI/UserInterface.py" line="4911"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el Previsualizador de Traducciones.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4927"/> + <location filename="../UI/UserInterface.py" line="4932"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido iniciar el navegador SQL.<br>Asegúrese de que está disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5020"/> + <location filename="../UI/UserInterface.py" line="5025"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>No se ha encontrado la entrada para la herramienta externa '{0}' en el grupo de herramientas '{1}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>No toolgroup entry '{0}' found.</source> <translation>No se ha encontrado la entrada para el grupo de herramientas '{0}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5073"/> <source>Starting process '{0} {1}'. </source> <translation>Comenzando proceso '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>No se ha podido ejecutar la entrada de herramienta <b>{0}</b>.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5160"/> + <location filename="../UI/UserInterface.py" line="5165"/> <source>Process '{0}' has exited. </source> <translation>El proceso '{0}' ha finalizado. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><P>El punto de entrada de documentación "<b>{0}</b>" no ha podido encontrarse.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de tareas <b>{0}</b> no pudo ser guardado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de tareas <b>{0}</b> no puede leerse.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6177"/> + <location filename="../UI/UserInterface.py" line="6182"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de sesión <b>{0}</b> no ha podido guardarse.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de sesión <b></b> no ha podido ser leído.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> no es un archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6692"/> + <location filename="../UI/UserInterface.py" line="6697"/> <source>Trying host {0}</source> <translation>Probando host {0}</translation> </message> @@ -75807,7 +75817,7 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Archivo de atajos de teclado (*.e4k)</translation> </message> @@ -75847,27 +75857,27 @@ <translation><b>Documentación de Python 2</b><p>Mostrar la documentación de Python 2. Si no se ha configurado un directorio con esta documentación, la ubicación de la documentación de Python 2 se asumirá en el directorio de documentación bajo la ubicación del ejecutable configurado de Python 2 en Windows, y en <i>/usr/share/doc/packages/python/html/python-docs-html</i> para Unix. Establezca el valor de la variable de entorno PYTHON2DOCDIR para sobreescribir estas opciones. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>Error getting versions information</source> <translation>Error al obtener información de versiones</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6754"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>La información de versiones no se ha podido descargar. Póngase online por favor e inténtelo de nuevo.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Could not start a web browser</source> <translation>No se ha podido iniciar el navegador web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>La información de versiones no se ha podido descargar en los últimos 7 días. Póngase por favor online e inténtelo de nuevo.</translation> </message> @@ -75953,12 +75963,12 @@ <translation><b>Captura de Pantalla</b><p>Abre un diálogo para tomar capturas de pantalla de una región de la pantalla.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4997"/> + <location filename="../UI/UserInterface.py" line="5002"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar la herramienta de Captura de Pantalla.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6964"/> + <location filename="../UI/UserInterface.py" line="6969"/> <source>Select Workspace Directory</source> <translation>Seleccionar Directorio para el Espacio de Trabajo</translation> </message> @@ -76333,7 +76343,7 @@ <translation>Abrir Documentación de PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5444"/> + <location filename="../UI/UserInterface.py" line="5449"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PyQt5 no ha sido configurado.</p></translation> </message> @@ -76343,7 +76353,7 @@ <translation><b>Documentación de Python 3</b><p>Mostrar la documentación de Python 3. Si no se ha configurado un directorio con lesta documentación, la ubicación de la documentación de Python 3 se asumirá en el directorio de documentación bajo la ubicación del ejecutable de Python 3 en Windows, y en <i>/usr/share/doc/packages/python/html</i> para Unix. Establezca el valor de la variable de entorno PYTHON3DOCDIR para sobreescribir estas opciones. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> @@ -76363,7 +76373,7 @@ <translation><b>Mostrar registro de errores...</b><p>Abre un diálogo mostrando el registro más reciente de errores.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6687"/> + <location filename="../UI/UserInterface.py" line="6692"/> <source>Version Check</source> <translation>Verificación de Versión</translation> </message> @@ -76433,27 +76443,27 @@ <translation><b>Documentación de API de Eric</b><p>Muestra la documentación de API de Eric. La ubicación de la documentación es el subdirectorio Documentation/Source del directorio de instalación de eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt v.3 no está soportado por eric6.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>La actualización para <b>{0}</b> de eric6 está disponible en <b>{1}</b>. ¿Le gustaría obtenerla?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>Eric6 is up to date</source> <translation>Eric6 está actualizado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>You are using the latest version of eric6</source> <translation>Está utilizando la última versión de eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>Eric6 todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation> </message> @@ -76463,17 +76473,17 @@ <translation>Generando Barras de Herramientas para Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3739"/> + <location filename="../UI/UserInterface.py" line="3744"/> <source>&User Tools</source> <translation>Herramientas de &Usuario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811"/> + <location filename="../UI/UserInterface.py" line="3816"/> <source>No User Tools Configured</source> <translation>No se han Configurado Herramientas de Usuario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703"/> + <location filename="../UI/UserInterface.py" line="6708"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>La información de versiones no se puede descargar porque está <b>sin línea</b>. Por favor, póngase en línea e inténtelo de nuevo.</translation> </message> @@ -76518,7 +76528,7 @@ <translation><b>Guardar sesión...</b><p>Guarda la sesión actual a disco. Se muestra un diálogo para seleccionar el nombre de archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>Load session</source> <translation>Cargar sesión</translation> </message> @@ -76533,17 +76543,17 @@ <translation><b>Cargar sesión...</b><p>Carga una sesión guardada en disco anteriormente. Se muestra un diálogo para seleccionar el nombre de archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>eric6 Session Files (*.e5s)</source> <translation>Archivos de Sesión de eric6 (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>Crash Session found!</source> <translation>¡Se ha hallado una sesión perdida!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Se ha encontrado un archivo de sesió para una sesión perdida. ¿Desea restaurar esta sesión?</translation> </message> @@ -76558,17 +76568,17 @@ <translation>Inicializando Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>Update Check</source> <translation>Comprobación Actualización</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation>Ha instalado eric directamente a partir del código fuente. No es posible comprobar la disponibilidad de una actuación.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6828"/> + <location filename="../UI/UserInterface.py" line="6833"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation>Ésta es una snapshot release the eric6. Una release estable más reciente podría estar disponible.</translation> </message> @@ -76623,7 +76633,7 @@ <translation><b>Documentación de PySide2</b><p>Muestra la Documentación de PySide2. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PySide{0} no ha sido configurado.</p></translation> </message>
--- a/i18n/eric6_fr.ts Sun Aug 26 15:03:20 2018 +0200 +++ b/i18n/eric6_fr.ts Sun Aug 26 15:54:51 2018 +0200 @@ -3118,29 +3118,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="480"/> + <location filename="../UI/CodeDocumentationViewer.py" line="483"/> <source>No documentation available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="507"/> - <source>Definition: {0}{1} -</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../UI/CodeDocumentationViewer.py" line="510"/> + <source>Definition: {0}{1} +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/CodeDocumentationViewer.py" line="513"/> <source>Definition: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="557"/> + <location filename="../UI/CodeDocumentationViewer.py" line="560"/> <source>No source code documentation provider has been registered. This function has been disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="562"/> + <location filename="../UI/CodeDocumentationViewer.py" line="565"/> <source>This function has been disabled.</source> <translation type="unfinished"></translation> </message> @@ -3162,13 +3162,13 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="518"/> + <location filename="../UI/CodeDocumentationViewer.py" line="521"/> <source>Type: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="526"/> + <location filename="../UI/CodeDocumentationViewer.py" line="529"/> <source>Note: {0} </source> <translation type="unfinished"></translation> @@ -51112,36 +51112,36 @@ </message> <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="401"/> - <source>'exeDisplayData()' function</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>'exeDisplayData()' function returning program data to determine version information</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="421"/> <source>Select to create an 'exeDisplayDataList()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> - <source>'exeDisplayDataList()' function</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="424"/> + <source>'exeDisplayDataList()' function</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="434"/> <source>Select to create an 'apiFiles()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="427"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="437"/> <source>Include 'apiFiles()' function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="453"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="463"/> <source>Press to populate entry fields from project data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="456"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="466"/> <source>Populate from Project</source> <translation type="unfinished"></translation> </message> @@ -62746,7 +62746,7 @@ <translation>Effacer et réinitialiser</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> @@ -62817,23 +62817,23 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="955"/> + <location filename="../QScintilla/Shell.py" line="964"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="963"/> + <location filename="../QScintilla/Shell.py" line="972"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1731"/> + <location filename="../QScintilla/Shell.py" line="1743"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> @@ -75781,7 +75781,7 @@ <translation><b>Afficher les versions</b><p>Affiche les informations sur les versions.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Report Bug</source> <translation>Rapport de bogue</translation> </message> @@ -75856,7 +75856,7 @@ <translation><b>Raccourcis claviers</b><p>Edite les raccourcis claviers pour l'application.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5921"/> + <location filename="../UI/UserInterface.py" line="5926"/> <source>Export Keyboard Shortcuts</source> <translation>Exporter les raccourcis clavier</translation> </message> @@ -75876,7 +75876,7 @@ <translation><b>Exporter les raccourcis clavier</b><p>Exporte les raccourcis claviers de l'application.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Import Keyboard Shortcuts</source> <translation>Importer des raccourcis clavier</translation> </message> @@ -75921,7 +75921,7 @@ <translation>Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Help</source> <translation>Aide</translation> </message> @@ -75936,12 +75936,12 @@ <translation>&Barres d'Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Problem</source> <translation>Problème</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> @@ -75997,7 +75997,7 @@ <translation><b>Script de tests unitaires</b><p>Lance les tests unitaires sur le script en cours.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>Unittest Project</source> <translation>Projet de tests unitaires</translation> </message> @@ -76052,12 +76052,12 @@ <translation>Tests &unitaires</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> @@ -76192,27 +76192,27 @@ <translation>Visualisueur de tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source>Save tasks</source> <translation>Enregistrement des tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source>Read tasks</source> <translation>Lecture des tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Aucun visualiseur personalisé n'est sélectionné. Prière d'en spécifier un dans les préférences.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Documentation Missing</source> <translation>Documentation Manquante</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>L'adresse mail ou l'adresse du serveur mail est vide. Veuillez configurer vos paramètres mails dans la fenêtre des Préférences.</translation> </message> @@ -76307,7 +76307,7 @@ <translation>Ouvre la documentation sur les APIs Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4803"/> + <location filename="../UI/UserInterface.py" line="4808"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Impossible de démarrer le visualiseur d'aide.<br>Assurez-vous qu'il est bien ici <b>hh</b>.</p></translation> </message> @@ -76383,57 +76383,57 @@ <translation>Profils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3719"/> + <location filename="../UI/UserInterface.py" line="3724"/> <source>&Builtin Tools</source> <translation>Outils &internes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source>Documentation</source> <translation>Documentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5378"/> + <location filename="../UI/UserInterface.py" line="5383"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>L'emplacement de la documentation PyQt4 n'a pas été configuré.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Error during updates check</source> <translation>Erreur durant la recherche de mises à jour</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>Update available</source> <translation>Mise à jour disponible</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3343"/> + <location filename="../UI/UserInterface.py" line="3348"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Numéros de version</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6908"/> + <location filename="../UI/UserInterface.py" line="6913"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Open Browser</source> <translation type="unfinished">Ouverture du navigateur</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Could not start a web browser</source> <translation type="unfinished">Impossible de lancer le navigateur web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3764"/> + <location filename="../UI/UserInterface.py" line="3769"/> <source>Configure Tool Groups ...</source> <translation>Configuration des groupes d'outils...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3768"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>Configure current Tool Group ...</source> <translation>Configuration du groupe d'outils courant...</translation> </message> @@ -76448,17 +76448,17 @@ <translation>Afficher les &outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>&Cancel</source> <translation>&Annuler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Could not perform updates check.</source> <translation>Impossible de vérifier les mises à jour.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>First time usage</source> <translation>Première utilisation</translation> </message> @@ -76498,7 +76498,7 @@ <translation>Infos &Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3736"/> + <location filename="../UI/UserInterface.py" line="3741"/> <source>&Plugin Tools</source> <translation>Outils &plugins</translation> </message> @@ -76528,12 +76528,12 @@ <translation>As&sistants</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3884"/> + <location filename="../UI/UserInterface.py" line="3889"/> <source>&Show all</source> <translation>Tout &afficher</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3886"/> + <location filename="../UI/UserInterface.py" line="3891"/> <source>&Hide all</source> <translation>Tout &masquer</translation> </message> @@ -76553,7 +76553,7 @@ <translation>Affiche les versions disponibles pour le téléchargement</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6899"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versions disponibles</h3><table></translation> </message> @@ -76643,17 +76643,17 @@ <translation>Gestionnaire de &multi-projet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>External Tools</source> <translation>Outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6240"/> + <location filename="../UI/UserInterface.py" line="6245"/> <source>Save session</source> <translation>Enregistrer la session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source>Read session</source> <translation>Chargement de session</translation> </message> @@ -76728,12 +76728,12 @@ <translation><b>Afficher/Masquer la barre d'outils horizontale</b><p>Affiche ou masque la barre d'outils horizontale, selon.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>Restart application</source> <translation>Redémarrage de l'application</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>The application needs to be restarted. Do it now?</source> <translation>L'application a bersoin d'être relancée. Relancer maintenant ?</translation> </message> @@ -76883,7 +76883,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> @@ -76923,104 +76923,104 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4623"/> + <location filename="../UI/UserInterface.py" line="4628"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4695"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4741"/> + <location filename="../UI/UserInterface.py" line="4746"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4783"/> + <location filename="../UI/UserInterface.py" line="4788"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4856"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4906"/> + <location filename="../UI/UserInterface.py" line="4911"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4927"/> + <location filename="../UI/UserInterface.py" line="4932"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5020"/> + <location filename="../UI/UserInterface.py" line="5025"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5073"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5160"/> + <location filename="../UI/UserInterface.py" line="5165"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6177"/> + <location filename="../UI/UserInterface.py" line="6182"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6692"/> + <location filename="../UI/UserInterface.py" line="6697"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> @@ -77055,7 +77055,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> @@ -77095,17 +77095,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6754"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77191,12 +77191,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4997"/> + <location filename="../UI/UserInterface.py" line="5002"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6964"/> + <location filename="../UI/UserInterface.py" line="6969"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -77571,7 +77571,7 @@ <translation type="unfinished">Lance la documentation PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5444"/> + <location filename="../UI/UserInterface.py" line="5449"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>L'emplacement de la documentation PyQt4 n'a pas été configuré.</p> {5 ?}</translation> </message> @@ -77581,7 +77581,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -77601,7 +77601,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6687"/> + <location filename="../UI/UserInterface.py" line="6692"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -77671,27 +77671,27 @@ <translation type="unfinished"><b>Documentation de l'API Eric</b><p>Affiche la do. The location for the documentation is the Documentation/Source subdirectory of the eric4 installation directory.</p> {5 ?} {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric4 est à jour {5 ?} {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">eric4 n'a pas encore été configuré. La fenêtre de configuration va être ouverte. {5 ?} {6 ?}</translation> </message> @@ -77701,17 +77701,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3739"/> + <location filename="../UI/UserInterface.py" line="3744"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811"/> + <location filename="../UI/UserInterface.py" line="3816"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703"/> + <location filename="../UI/UserInterface.py" line="6708"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77756,7 +77756,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>Load session</source> <translation type="unfinished">Charger la session</translation> </message> @@ -77771,17 +77771,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -77796,17 +77796,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6828"/> + <location filename="../UI/UserInterface.py" line="6833"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -77861,7 +77861,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_it.ts Sun Aug 26 15:03:20 2018 +0200 +++ b/i18n/eric6_it.ts Sun Aug 26 15:54:51 2018 +0200 @@ -3031,29 +3031,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="480"/> + <location filename="../UI/CodeDocumentationViewer.py" line="483"/> <source>No documentation available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="507"/> - <source>Definition: {0}{1} -</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../UI/CodeDocumentationViewer.py" line="510"/> + <source>Definition: {0}{1} +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/CodeDocumentationViewer.py" line="513"/> <source>Definition: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="557"/> + <location filename="../UI/CodeDocumentationViewer.py" line="560"/> <source>No source code documentation provider has been registered. This function has been disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="562"/> + <location filename="../UI/CodeDocumentationViewer.py" line="565"/> <source>This function has been disabled.</source> <translation type="unfinished"></translation> </message> @@ -3075,13 +3075,13 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="518"/> + <location filename="../UI/CodeDocumentationViewer.py" line="521"/> <source>Type: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="526"/> + <location filename="../UI/CodeDocumentationViewer.py" line="529"/> <source>Note: {0} </source> <translation type="unfinished"></translation> @@ -50429,36 +50429,36 @@ </message> <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="401"/> - <source>'exeDisplayData()' function</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>'exeDisplayData()' function returning program data to determine version information</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="421"/> <source>Select to create an 'exeDisplayDataList()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> - <source>'exeDisplayDataList()' function</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="424"/> + <source>'exeDisplayDataList()' function</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="434"/> <source>Select to create an 'apiFiles()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="427"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="437"/> <source>Include 'apiFiles()' function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="453"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="463"/> <source>Press to populate entry fields from project data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="456"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="466"/> <source>Populate from Project</source> <translation type="unfinished"></translation> </message> @@ -61968,7 +61968,7 @@ <translation>Resetta e pulisci</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source>Drop Error</source> <translation>Drop Error</translation> </message> @@ -62035,24 +62035,24 @@ <translation></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="955"/> + <location filename="../QScintilla/Shell.py" line="964"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="963"/> + <location filename="../QScintilla/Shell.py" line="972"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1731"/> + <location filename="../QScintilla/Shell.py" line="1743"/> <source>Shell language "{0}" not supported. </source> <translation>Il linguaggio "{0}" della shell non è supportato. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> non è un file.</p></translation> </message> @@ -74681,7 +74681,7 @@ <translation><b>Mostra versioni</b><p>Mostra delle informazioni sulla versione.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Report Bug</source> <translation>Segnala Bug</translation> </message> @@ -74756,7 +74756,7 @@ <translation><b>Scorciatoie da tastiera</b><p>Imposta le scorciatoie da tastiera dell'applicazione con i valori personalizzati.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5921"/> + <location filename="../UI/UserInterface.py" line="5926"/> <source>Export Keyboard Shortcuts</source> <translation>Esporta scorciatoie da tastiera</translation> </message> @@ -74776,7 +74776,7 @@ <translation><b>Esporta scorciatoie da tastiera</b><p>Esporta le scorciatoie da tastiera dell'applicazione.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Import Keyboard Shortcuts</source> <translation>Importa scorciatoie da tastiera</translation> </message> @@ -74816,7 +74816,7 @@ <translation>Strumenti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Help</source> <translation>Aiuto</translation> </message> @@ -74831,12 +74831,12 @@ <translation>&Toolbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source>Process Generation Error</source> <translation>Errore Generazione Processo</translation> </message> @@ -74891,7 +74891,7 @@ <translation><b>Script Unittest</b><p>Esegui unittest con lo script corrente.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>Unittest Project</source> <translation>Progetto Unittest</translation> </message> @@ -74946,12 +74946,12 @@ <translation>&Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Non c'è uno script principale definito per il progetto. Esco</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source>Drop Error</source> <translation>Errore Drop</translation> </message> @@ -75086,27 +75086,27 @@ <translation>Task-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source>Save tasks</source> <translation>Salva task</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source>Read tasks</source> <translation>Leggi task</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Attualmente nessun visualizzatore personalizzato è selezionato. Per favore usa il dialogo delle preferenze per specificarne uno.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Documentation Missing</source> <translation>Documentazione mancante</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>L'indirizzo di posta o il server si posta sono vuoti. Per cortesia configura le opzioni per l'Email nel dialogo delle preferenze.</translation> </message> @@ -75201,7 +75201,7 @@ <translation>Apri documentazione API di Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4803"/> + <location filename="../UI/UserInterface.py" line="4808"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Non posso avviare il visualizzatore di help.<br>Assicurarsi che sia disponibile come <b>hh</b>.</p></translation> </message> @@ -75277,47 +75277,47 @@ <translation>Profili</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3719"/> + <location filename="../UI/UserInterface.py" line="3724"/> <source>&Builtin Tools</source> <translation>Tool &Builtin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source>Documentation</source> <translation>Documentazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5378"/> + <location filename="../UI/UserInterface.py" line="5383"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>L'inizio della documentazione di PyQt4 non è stato configurato.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Error during updates check</source> <translation>Errore nel controllo per gli update</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>Update available</source> <translation>Aggiornamento disponibile</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3343"/> + <location filename="../UI/UserInterface.py" line="3348"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Numeri di versione</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6908"/> + <location filename="../UI/UserInterface.py" line="6913"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3764"/> + <location filename="../UI/UserInterface.py" line="3769"/> <source>Configure Tool Groups ...</source> <translation>Configura Tools Groups...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3768"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>Configure current Tool Group ...</source> <translation>Configura Tools Groups correnti...</translation> </message> @@ -75332,17 +75332,17 @@ <translation>Mostra toll &esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>&Cancel</source> <translation>&Cancella</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Could not perform updates check.</source> <translation>Non posso controllare per gli update.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>First time usage</source> <translation>Primo avvio</translation> </message> @@ -75382,7 +75382,7 @@ <translation>Informazioni su &Plugin...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3736"/> + <location filename="../UI/UserInterface.py" line="3741"/> <source>&Plugin Tools</source> <translation>Informazioni sui &Plugin Tools</translation> </message> @@ -75412,12 +75412,12 @@ <translation>Wi&zards</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3884"/> + <location filename="../UI/UserInterface.py" line="3889"/> <source>&Show all</source> <translation>Mo&stra tutti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3886"/> + <location filename="../UI/UserInterface.py" line="3891"/> <source>&Hide all</source> <translation>Nascondi &tutti</translation> </message> @@ -75437,7 +75437,7 @@ <translation>Mostra le versioni disponibili per il download</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6899"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versioni disponibili</h3><table></translation> </message> @@ -75527,17 +75527,17 @@ <translation>&Multiproject-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>External Tools</source> <translation>Tool esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6240"/> + <location filename="../UI/UserInterface.py" line="6245"/> <source>Save session</source> <translation>Salva sessione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source>Read session</source> <translation>Leggi sessione</translation> </message> @@ -75612,12 +75612,12 @@ <translation><b>Abilita/Disabilita la finestra della toolbox orizzontale</b><p>Se la finestra della toolbox orizzontale è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>Restart application</source> <translation>Riavvia applicazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>The application needs to be restarted. Do it now?</source> <translation>L'applicazione necessita di un riavvio. Farlo ora ?</translation> </message> @@ -75767,7 +75767,7 @@ <translation>Editor di &icone...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt 3 support</source> <translation>Supporto Qt3</translation> </message> @@ -75812,105 +75812,105 @@ <translation>Tool Esterni/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Il file <b>{0}</b> non esiste o ha lunghezza zero.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4623"/> + <location filename="../UI/UserInterface.py" line="4628"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Designer.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4695"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Linguist.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4741"/> + <location filename="../UI/UserInterface.py" line="4746"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Assistant.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4783"/> + <location filename="../UI/UserInterface.py" line="4788"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare il visualizzatore personalizzato.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4856"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare UI Previewer.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4906"/> + <location filename="../UI/UserInterface.py" line="4911"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare l'anteprima delle traduzioni.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4927"/> + <location filename="../UI/UserInterface.py" line="4932"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare SQL Browser.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5020"/> + <location filename="../UI/UserInterface.py" line="5025"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Nessun elemento per il tool esterno '{0}' trovato nel gruppo '{1}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>No toolgroup entry '{0}' found.</source> <translation>Nessun gruppo '{0}' trovato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5073"/> <source>Starting process '{0} {1}'. </source> <translation>Avvio processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Non posso avviare l'elemento degli strumenti <b>{0}</b>.<br>Assicurarsi che sia disponibile come <b>{1}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5160"/> + <location filename="../UI/UserInterface.py" line="5165"/> <source>Process '{0}' has exited. </source> <translation>Il processo '{0}' è terminato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>L'inizio della documentazione "<b>{0}</b>" non viene trovato.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Il file task <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Il file task <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6177"/> + <location filename="../UI/UserInterface.py" line="6182"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Il file sessione <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Il file sessione <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> non è un file.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6692"/> + <location filename="../UI/UserInterface.py" line="6697"/> <source>Trying host {0}</source> <translation>Tento su host {0}</translation> </message> @@ -75945,7 +75945,7 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>File scorciatoi tastiera (*.e4k)</translation> </message> @@ -75985,27 +75985,27 @@ <translation><b>Documentazione Python 2</b><p>Mostra la documentazione Python 2. Se non è configurata una directory per la documentazione, viene assunto che la posizione della documentazione sia nella directory doc nella locazione dell'eseguibile Python 2 su Windows e <i>/usr/share/doc/packages/python/html</i> su Unix. Imposta PYTHONDOCDIR2 nel tuo ambiente per sovrascrivere questi valori.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6754"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -76091,12 +76091,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4997"/> + <location filename="../UI/UserInterface.py" line="5002"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6964"/> + <location filename="../UI/UserInterface.py" line="6969"/> <source>Select Workspace Directory</source> <translation type="unfinished">Seleziona cartella di lavoro</translation> </message> @@ -76471,7 +76471,7 @@ <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5444"/> + <location filename="../UI/UserInterface.py" line="5449"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>L'inizio della documentazione di PyQt4 non è stato configurato.</p> {5 ?}</translation> </message> @@ -76481,7 +76481,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -76501,7 +76501,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6687"/> + <location filename="../UI/UserInterface.py" line="6692"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -76571,27 +76571,27 @@ <translation type="unfinished"><b>Documentazione API Eric</b><p>Mostra la documentazione delle API di Eric. La posizione della documentazione è la subdirectory Documentation/Source della directory in cui è installato eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished">Le Qt v.3 non sono supportate da eric6.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished">L'update alla versione <b>{0}</b> di eric6 è disponibile presso <b>{1}</b>. Vuoi prenderlo?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric6 è aggiornato</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>You are using the latest version of eric6</source> <translation type="unfinished">Stai usando l'ultima versione di eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">eric6 non è ancora stato configurato. Il dialogo di configurazione verrà avviato.</translation> </message> @@ -76601,17 +76601,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3739"/> + <location filename="../UI/UserInterface.py" line="3744"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811"/> + <location filename="../UI/UserInterface.py" line="3816"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703"/> + <location filename="../UI/UserInterface.py" line="6708"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -76656,7 +76656,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>Load session</source> <translation type="unfinished">Carica sessione</translation> </message> @@ -76671,17 +76671,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -76696,17 +76696,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6828"/> + <location filename="../UI/UserInterface.py" line="6833"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -76761,7 +76761,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_pt.ts Sun Aug 26 15:03:20 2018 +0200 +++ b/i18n/eric6_pt.ts Sun Aug 26 15:54:51 2018 +0200 @@ -3132,29 +3132,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="480"/> + <location filename="../UI/CodeDocumentationViewer.py" line="483"/> <source>No documentation available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="507"/> - <source>Definition: {0}{1} -</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../UI/CodeDocumentationViewer.py" line="510"/> + <source>Definition: {0}{1} +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/CodeDocumentationViewer.py" line="513"/> <source>Definition: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="557"/> + <location filename="../UI/CodeDocumentationViewer.py" line="560"/> <source>No source code documentation provider has been registered. This function has been disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="562"/> + <location filename="../UI/CodeDocumentationViewer.py" line="565"/> <source>This function has been disabled.</source> <translation type="unfinished"></translation> </message> @@ -3176,13 +3176,13 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="518"/> + <location filename="../UI/CodeDocumentationViewer.py" line="521"/> <source>Type: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="526"/> + <location filename="../UI/CodeDocumentationViewer.py" line="529"/> <source>Note: {0} </source> <translation type="unfinished"></translation> @@ -51838,36 +51838,36 @@ </message> <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="401"/> - <source>'exeDisplayData()' function</source> - <translation>Função 'exeDisplayData'</translation> - </message> - <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>'exeDisplayData()' function returning program data to determine version information</source> + <translation type="unfinished">Função 'exeDisplayData'</translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="421"/> <source>Select to create an 'exeDisplayDataList()' function skeleton</source> <translation>Selecionar para criar um esqueleto da função 'exeDisplayDataList()'</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> - <source>'exeDisplayDataList()' function</source> - <translation>Função 'exeDisplayDataList()'</translation> - </message> - <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="424"/> + <source>'exeDisplayDataList()' function</source> + <translation>Função 'exeDisplayDataList()'</translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="434"/> <source>Select to create an 'apiFiles()' function skeleton</source> <translation>Selecionar para criar um esqueleto da função 'apiFiles()'</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="427"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="437"/> <source>Include 'apiFiles()' function</source> <translation>Incluir função 'apiFiles()'</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="453"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="463"/> <source>Press to populate entry fields from project data</source> <translation>Pressionar para preencher os campos de entrada com dados do projeto</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="456"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="466"/> <source>Populate from Project</source> <translation>Preencher desde Projeto</translation> </message> @@ -63399,28 +63399,28 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="955"/> + <location filename="../QScintilla/Shell.py" line="964"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="963"/> + <location filename="../QScintilla/Shell.py" line="972"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1731"/> + <location filename="../QScintilla/Shell.py" line="1743"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"><p><b>{0}</b> não é um ficheiro.</p></translation> </message> @@ -76584,7 +76584,7 @@ <translation>Mostrar as versões disponíveis para descarregar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Report Bug</source> <translation>Reportar Falho</translation> </message> @@ -76684,7 +76684,7 @@ <translation><b>Teste Unitário ao Script</b><p>Executar teste unitário com o script atual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>Unittest Project</source> <translation>Teste Unitário ao Projeto</translation> </message> @@ -76969,7 +76969,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5921"/> + <location filename="../UI/UserInterface.py" line="5926"/> <source>Export Keyboard Shortcuts</source> <translation>Exportar Atalhos de Teclado</translation> </message> @@ -76989,7 +76989,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Import Keyboard Shortcuts</source> <translation>Importar Atalhos de Teclado</translation> </message> @@ -77239,7 +77239,7 @@ <translation>Definições</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Help</source> <translation>Ajuda</translation> </message> @@ -77289,270 +77289,270 @@ <translation>Ferramentas Externas/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3343"/> + <location filename="../UI/UserInterface.py" line="3348"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Números de Versão</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6908"/> + <location filename="../UI/UserInterface.py" line="6913"/> <source></table></source> <translation></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>A direção do correio eletrónico ou a direção do servidor de correio está vazia. Por favor configure as Definiçães de Correio Eletrónico na Caixa de Diálogo de Preferências.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>Restart application</source> <translation>Reiniciar a aplicação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>The application needs to be restarted. Do it now?</source> <translation>A aplicação necessita ser reiniciada. Reiniciar agora?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3764"/> + <location filename="../UI/UserInterface.py" line="3769"/> <source>Configure Tool Groups ...</source> <translation>Configurar Grupos de Ferramentas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3768"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>Configure current Tool Group ...</source> <translation>Configurar o atual Grupo de Ferramentas ...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3719"/> + <location filename="../UI/UserInterface.py" line="3724"/> <source>&Builtin Tools</source> <translation>Ferramentas &Internas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3736"/> + <location filename="../UI/UserInterface.py" line="3741"/> <source>&Plugin Tools</source> <translation>Ferramentas dos &Complementos</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3884"/> + <location filename="../UI/UserInterface.py" line="3889"/> <source>&Show all</source> <translation>&Mostrar tudo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3886"/> + <location filename="../UI/UserInterface.py" line="3891"/> <source>&Hide all</source> <translation>&Esconder tudo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>There is no main script defined for the current project. Aborting</source> <translation>O projeto atual não tem um script principal definido. A cancelar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt 3 support</source> <translation>Suporte Qt3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source>Process Generation Error</source> <translation>Erro na Criação de Processo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4623"/> + <location filename="../UI/UserInterface.py" line="4628"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4695"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4741"/> + <location filename="../UI/UserInterface.py" line="4746"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Não há nenhum visor personalizado selecionado. Por favor use a caixa de diálogo das preferências para escolher um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4783"/> + <location filename="../UI/UserInterface.py" line="4788"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4803"/> + <location filename="../UI/UserInterface.py" line="4808"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4856"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4906"/> + <location filename="../UI/UserInterface.py" line="4911"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4927"/> + <location filename="../UI/UserInterface.py" line="4932"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>External Tools</source> <translation>Ferramentas Externas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5020"/> + <location filename="../UI/UserInterface.py" line="5025"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5073"/> <source>Starting process '{0} {1}'. </source> <translation>A iniciar processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5160"/> + <location filename="../UI/UserInterface.py" line="5165"/> <source>Process '{0}' has exited. </source> <translation>Processo '{0}' saiu.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Documentation Missing</source> <translation>Falta a Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source>Documentation</source> <translation>Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5378"/> + <location filename="../UI/UserInterface.py" line="5383"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Ficheiro de atalhos de teclado (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source>Save tasks</source> <translation>Gravar tarefas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source>Read tasks</source> <translation>Ler tarefas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6240"/> + <location filename="../UI/UserInterface.py" line="6245"/> <source>Save session</source> <translation>Guargar sessão</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6177"/> + <location filename="../UI/UserInterface.py" line="6182"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source>Read session</source> <translation>Sessão de leitura</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> não é um ficheiro.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>&Cancel</source> <translation>&Cancelar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6692"/> + <location filename="../UI/UserInterface.py" line="6697"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>Update available</source> <translation>Atualização disponível</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Error during updates check</source> <translation>Erro na verificação de atualizações</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Could not perform updates check.</source> <translation>Não procurar atualizações.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6899"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versões Disponíveis</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>First time usage</source> <translation>Usado a primeira vez</translation> </message> @@ -77592,27 +77592,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>Error getting versions information</source> <translation>Erro na obtenção da informação de versões</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6754"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Could not start a web browser</source> <translation>Não se pôde iniciar um navegador web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77698,12 +77698,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4997"/> + <location filename="../UI/UserInterface.py" line="5002"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6964"/> + <location filename="../UI/UserInterface.py" line="6969"/> <source>Select Workspace Directory</source> <translation>Selecionar o Diretório de Trabalho</translation> </message> @@ -78078,7 +78078,7 @@ <translation>Abrir a Documentação de PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5444"/> + <location filename="../UI/UserInterface.py" line="5449"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -78088,7 +78088,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>%v/%m</source> <translation></translation> </message> @@ -78173,32 +78173,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt v.3 não está suportado por eric6.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6687"/> + <location filename="../UI/UserInterface.py" line="6692"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>Atualização a <b>{0}</b> de eric6 já está disponível em <b>{1}</b>. Quere-a descarregar?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>Eric6 is up to date</source> <translation>Eric6 está atualizado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>You are using the latest version of eric6</source> <translation>Utiliza a última versão do eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>eric6 ainda não foi configurado. A caixa de diálogo de configuração vai iniciar-se.</translation> </message> @@ -78208,17 +78208,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3739"/> + <location filename="../UI/UserInterface.py" line="3744"/> <source>&User Tools</source> <translation>Ferramentas de &Utilizador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811"/> + <location filename="../UI/UserInterface.py" line="3816"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703"/> + <location filename="../UI/UserInterface.py" line="6708"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -78263,7 +78263,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>Load session</source> <translation type="unfinished">Carregar sessão</translation> </message> @@ -78278,17 +78278,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78303,17 +78303,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6828"/> + <location filename="../UI/UserInterface.py" line="6833"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -78368,7 +78368,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_ru.ts Sun Aug 26 15:03:20 2018 +0200 +++ b/i18n/eric6_ru.ts Sun Aug 26 15:54:51 2018 +0200 @@ -2997,31 +2997,31 @@ <translation>Простой текст</translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="480"/> + <location filename="../UI/CodeDocumentationViewer.py" line="483"/> <source>No documentation available</source> <translation>Документация недоступна</translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="507"/> + <location filename="../UI/CodeDocumentationViewer.py" line="510"/> <source>Definition: {0}{1} </source> <translation>Определение: {0} {1} </translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="510"/> + <location filename="../UI/CodeDocumentationViewer.py" line="513"/> <source>Definition: {0} </source> <translation>Определение: {0} </translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="557"/> + <location filename="../UI/CodeDocumentationViewer.py" line="560"/> <source>No source code documentation provider has been registered. This function has been disabled.</source> <translation>Поставщик документации для исходного кода не зарегистрирован. Эта функция отключена.</translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="562"/> + <location filename="../UI/CodeDocumentationViewer.py" line="565"/> <source>This function has been disabled.</source> <translation>Эта функция отключена.</translation> </message> @@ -3043,14 +3043,14 @@ <translation><p><b>Примечание:</b> @NOTE@</p></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="518"/> + <location filename="../UI/CodeDocumentationViewer.py" line="521"/> <source>Type: {0} </source> <translation>Тип: {0} </translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="526"/> + <location filename="../UI/CodeDocumentationViewer.py" line="529"/> <source>Note: {0} </source> <translation>Примечание: {0} @@ -50330,39 +50330,49 @@ </message> <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="401"/> - <source>'exeDisplayData()' function</source> - <translation>функция 'exeDisplayData()'</translation> - </message> - <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>'exeDisplayData()' function returning program data to determine version information</source> + <translation type="unfinished">функция 'exeDisplayData()'</translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="421"/> <source>Select to create an 'exeDisplayDataList()' function skeleton</source> <translation>Разрешить создание шаблона функции 'exeDisplayDataList()'</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> - <source>'exeDisplayDataList()' function</source> - <translation>функция 'exeDisplayDataList()'</translation> - </message> - <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="424"/> + <source>'exeDisplayDataList()' function</source> + <translation>функция 'exeDisplayDataList()'</translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="434"/> <source>Select to create an 'apiFiles()' function skeleton</source> <translation>Разрешить создание шаблона функции 'apiFiles()'</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="427"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="437"/> <source>Include 'apiFiles()' function</source> <translation>Включить функцию 'apiFiles()'</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="453"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="463"/> <source>Press to populate entry fields from project data</source> <translation>Заполнить поля ввода данных из проекта</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="456"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="466"/> <source>Populate from Project</source> <translation>Заполнить из проекта</translation> </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>Select to create an 'exeDisplayData()' function skeleton returning version info</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> + <source>'exeDisplayData()' function returning version information</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Preferences</name> @@ -62068,29 +62078,29 @@ <translation>{0} on {1}, {2}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="955"/> + <location filename="../QScintilla/Shell.py" line="964"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="963"/> + <location filename="../QScintilla/Shell.py" line="972"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1731"/> + <location filename="../QScintilla/Shell.py" line="1743"/> <source>Shell language "{0}" not supported. </source> <translation>Язык оболочки "{0}" не поддерживается. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> не является файлом</p></translation> </message> @@ -75036,7 +75046,7 @@ <translation>Показать версии, доступные для загрузки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Report Bug</source> <translation>Сообщение об ошибке</translation> </message> @@ -75138,7 +75148,7 @@ <translation><b>Сценарий Unittest</b><p>Выполнить Uniitest с текущим сценарием.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>Unittest Project</source> <translation>Unittest на проекте</translation> </message> @@ -75426,7 +75436,7 @@ <translation><b>Горячие клавиши</b><p>Задайте горячие клавиши на свой вкус.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5921"/> + <location filename="../UI/UserInterface.py" line="5926"/> <source>Export Keyboard Shortcuts</source> <translation>Экспортировать горячие клавиши</translation> </message> @@ -75447,7 +75457,7 @@ <p>Экспортировать горячие клавиши приложения.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Import Keyboard Shortcuts</source> <translation>Импортировать горячие клавиши</translation> </message> @@ -75694,7 +75704,7 @@ <translation>Настройки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Help</source> <translation>Справка</translation> </message> @@ -75744,271 +75754,271 @@ <translation>Внешние инструменты/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3343"/> + <location filename="../UI/UserInterface.py" line="3348"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Номера версий</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6908"/> + <location filename="../UI/UserInterface.py" line="6913"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>Почтовый адрес или адрес почтового сервера пуст. <p>Настройте параметры вашей электронной почты в диалоге предпочтений.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>Restart application</source> <translation>Перезапустить приложение</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>The application needs to be restarted. Do it now?</source> <translation>Необходимо перезапустить приложение. Сделать это сейчас?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3764"/> + <location filename="../UI/UserInterface.py" line="3769"/> <source>Configure Tool Groups ...</source> <translation>Настройка группы инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3768"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>Configure current Tool Group ...</source> <translation>Настроить текущую группу инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3719"/> + <location filename="../UI/UserInterface.py" line="3724"/> <source>&Builtin Tools</source> <translation>&Встроенные инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3736"/> + <location filename="../UI/UserInterface.py" line="3741"/> <source>&Plugin Tools</source> <translation>Инструменты - &плагины</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3884"/> + <location filename="../UI/UserInterface.py" line="3889"/> <source>&Show all</source> <translation>Показать &всё</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3886"/> + <location filename="../UI/UserInterface.py" line="3891"/> <source>&Hide all</source> <translation>Ск&рыть всё</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt 3 support</source> <translation>Поддержка Qt 3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Problem</source> <translation>Проблема</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Файл <b>{0}</b> либо не существует, либо нулевой длины.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source>Process Generation Error</source> <translation>Ошибка при запуске процесса</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4623"/> + <location filename="../UI/UserInterface.py" line="4628"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Designer.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4695"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Linguist.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4741"/> + <location filename="../UI/UserInterface.py" line="4746"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Assistant.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>В настоящее время вьюер пользователя не выбран. Используйте диалог с настройками для его выбора.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4783"/> + <location filename="../UI/UserInterface.py" line="4788"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить пользовательский просмотрщик.<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4803"/> + <location filename="../UI/UserInterface.py" line="4808"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Невозможно запустить обозреватель справки.<br>Убедитесь, что он доступен под именем <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4856"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить UI Previewer (предпросмотр интерфейсов).<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4906"/> + <location filename="../UI/UserInterface.py" line="4911"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Translation Previewer (предпросмотр переводов).<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4927"/> + <location filename="../UI/UserInterface.py" line="4932"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить SQL браузер.<br>Убедитесь, что он доступен как <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>External Tools</source> <translation>Внешние инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5020"/> + <location filename="../UI/UserInterface.py" line="5025"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Запись для внешнего инструмента '{0}' не найдена в группе инструментов '{1}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>No toolgroup entry '{0}' found.</source> <translation>Запись для группы инструментов '{0}' не найдена.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5073"/> <source>Starting process '{0} {1}'. </source> <translation>Запускается процесс '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Невозможно запустить инструмент <b>{0}</b>.<br>Убедитесь, что он доступен в <b>{1}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5160"/> + <location filename="../UI/UserInterface.py" line="5165"/> <source>Process '{0}' has exited. </source> <translation>Процесс '{0}' завершен. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Documentation Missing</source> <translation>Документация отсутствует</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Стартовый каталог документации "<b>{0}</b>" не найден.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source>Documentation</source> <translation>Документация</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5378"/> + <location filename="../UI/UserInterface.py" line="5383"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>Стартовый каталог документации PyQt4 не найден.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Файл горячих клавиш (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source>Save tasks</source> <translation>Сохранить задачи</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл с задачами: <b>{0}</b></p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source>Read tasks</source> <translation>Прочитать задачи</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл с задачами: <b>{0}</b></p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6240"/> + <location filename="../UI/UserInterface.py" line="6245"/> <source>Save session</source> <translation>Сохранить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6177"/> + <location filename="../UI/UserInterface.py" line="6182"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Не могу записать файл сессии <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source>Read session</source> <translation>Загрузить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Не могу прочитать файл сессии <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> не является файлом</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>&Cancel</source> <translation>От&мена</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6692"/> + <location filename="../UI/UserInterface.py" line="6697"/> <source>Trying host {0}</source> <translation>Подключение к хосту {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>Update available</source> <translation>Обновления доступны</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Error during updates check</source> <translation>Ошибка при проверке обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Could not perform updates check.</source> <translation>Невозможно запустить проверку обновлений.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6899"/> <source><h3>Available versions</h3><table></source> <translation><h3>Доступные версии</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>First time usage</source> <translation>Первое использование</translation> </message> @@ -76048,27 +76058,27 @@ <translation><b>Документация Python 2</b><p>Показать Python 2 документацию. Если местонахождение документации не было настроено, то искать в директории <i>doc</i> каталога где находится исполняемый файл Python 2 под Windows и в директории <i>/usr/share/doc/packages/python/html/python-docs-html</i> под UNIX. Местонахождение документации можно задать с помощью переменной окружения PYTHON2DOCDIR.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>Error getting versions information</source> <translation>Ошибка при получении информации о версии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6754"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>Невозможно загрузить информацию о версии. Пожалуйста попробуйте ещё раз.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Open Browser</source> <translation>Открыть браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Could not start a web browser</source> <translation>Невозможно запустить web браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>Невозможно загрузить информацию о версии в течении последних 7 дней. Пожалуйста попробуйте ещё раз.</translation> </message> @@ -76154,12 +76164,12 @@ <translation><b>Снимок</b><p>Сделать снимок области экрана.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4997"/> + <location filename="../UI/UserInterface.py" line="5002"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить программу для создания снимка экрана.<br>Убедитесь что она установлена как <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6964"/> + <location filename="../UI/UserInterface.py" line="6969"/> <source>Select Workspace Directory</source> <translation>Выбор директории рабочей области</translation> </message> @@ -76534,7 +76544,7 @@ <translation>Открыть документацию PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5444"/> + <location filename="../UI/UserInterface.py" line="5449"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><p>Стартовый каталог документации PyQt5 не задан.</p></translation> </message> @@ -76544,7 +76554,7 @@ <translation><b>Документация Python 3</b><p>Показать Python 3 документацию. Если местонахождение документации не было настроено, то искать в директории <i>doc</i> каталога где находится исполняемый файл Python 3 под Windows и в директории <i>/usr/share/doc/packages/python/html/python-docs-html</i> под UNIX. Местонахождение документации можно задать с помощью переменной окружения PYTHON3DOCDIR.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> @@ -76564,7 +76574,7 @@ <translation><b>Показать журнал ошибок...</b><p>Показать журнал ошибок.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6687"/> + <location filename="../UI/UserInterface.py" line="6692"/> <source>Version Check</source> <translation>Проверка версии</translation> </message> @@ -76634,27 +76644,27 @@ <translation><b>Документация Eric API</b><p>Показать документацию Eric API. Местонахождение документации - каталог Documentation/Source, расположенный в директории инсталляции Eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Eric6 не поддерживает Qt3.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>На сайте <b>{1}</b> доступно обновление Eric6 до версии <b>{0}</b>. Загрузить?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>Eric6 is up to date</source> <translation>Eric6 не требует обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>You are using the latest version of eric6</source> <translation>Вы используете самую последнюю версию eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>Настройка Eric6 ещё не выполнена. Сейчас будет запущен диалог конфигурации.</translation> </message> @@ -76664,17 +76674,17 @@ <translation>Генерация панели инструментов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3739"/> + <location filename="../UI/UserInterface.py" line="3744"/> <source>&User Tools</source> <translation>&Инструменты пользователя</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811"/> + <location filename="../UI/UserInterface.py" line="3816"/> <source>No User Tools Configured</source> <translation>Инструменты пользователя не сконфигурированы</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703"/> + <location filename="../UI/UserInterface.py" line="6708"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>Невозможно загрузить информацию о версии потому что вы <b>не в сети</b>. Пожалуйста, подключитесь к интернету и повторите попытку.</translation> </message> @@ -76719,7 +76729,7 @@ <translation><b>Сохранить сессию...</b><p>Позволяет сохранить текущую сессию на диск. Открывается диалог для выбора имени файла.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>Load session</source> <translation>Загрузить сессию</translation> </message> @@ -76734,17 +76744,17 @@ <translation><b>Загрузить сессию...</b><p>Позволяет загрузить сессию, ранее сохраненную на диске. Открывается диалог для выбора имени файла.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>eric6 Session Files (*.e5s)</source> <translation>Файлы сессии eric6 (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>Crash Session found!</source> <translation>Обнаружена crash-сессия!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Найден файл crashed-сессии. Восстановить эту сессию?</translation> </message> @@ -76759,18 +76769,18 @@ <translation>Инициализация плагинов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>Update Check</source> <translation>Проверка обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation>Вы установили eric непосредственно из исходного кода. Нет возможности проверить наличие обновлений.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6828"/> + <location filename="../UI/UserInterface.py" line="6833"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation>Вы используете промежуточный релиз eric6. Возможно на сайте доступна и более свежий стабильный релиз.</translation> </message> @@ -76825,7 +76835,7 @@ <translation><b>Документация PySide2</b><p>Отображение документации PySide2. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><p>Просмотр документации PySide{0} не настроен.</p></translation> </message>
--- a/i18n/eric6_tr.ts Sun Aug 26 15:03:20 2018 +0200 +++ b/i18n/eric6_tr.ts Sun Aug 26 15:54:51 2018 +0200 @@ -3101,29 +3101,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="480"/> + <location filename="../UI/CodeDocumentationViewer.py" line="483"/> <source>No documentation available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="507"/> - <source>Definition: {0}{1} -</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../UI/CodeDocumentationViewer.py" line="510"/> + <source>Definition: {0}{1} +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/CodeDocumentationViewer.py" line="513"/> <source>Definition: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="557"/> + <location filename="../UI/CodeDocumentationViewer.py" line="560"/> <source>No source code documentation provider has been registered. This function has been disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="562"/> + <location filename="../UI/CodeDocumentationViewer.py" line="565"/> <source>This function has been disabled.</source> <translation type="unfinished"></translation> </message> @@ -3145,13 +3145,13 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="518"/> + <location filename="../UI/CodeDocumentationViewer.py" line="521"/> <source>Type: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="526"/> + <location filename="../UI/CodeDocumentationViewer.py" line="529"/> <source>Note: {0} </source> <translation type="unfinished"></translation> @@ -51252,36 +51252,36 @@ </message> <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="401"/> - <source>'exeDisplayData()' function</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>'exeDisplayData()' function returning program data to determine version information</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="421"/> <source>Select to create an 'exeDisplayDataList()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> - <source>'exeDisplayDataList()' function</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="424"/> + <source>'exeDisplayDataList()' function</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="434"/> <source>Select to create an 'apiFiles()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="427"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="437"/> <source>Include 'apiFiles()' function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="453"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="463"/> <source>Press to populate entry fields from project data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="456"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="466"/> <source>Populate from Project</source> <translation type="unfinished"></translation> </message> @@ -62808,29 +62808,29 @@ <translation>{0} üzerin {1}, {2}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="955"/> + <location filename="../QScintilla/Shell.py" line="964"/> <source>StdOut: {0}</source> <translation>Stdçıktı:{0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="963"/> + <location filename="../QScintilla/Shell.py" line="972"/> <source>StdErr: {0}</source> <translation>stdhata: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1731"/> + <location filename="../QScintilla/Shell.py" line="1743"/> <source>Shell language "{0}" not supported. </source> <translation>Kabuk dili "{0}" desteklenmiyor. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> bir dosya değil.</p></translation> </message> @@ -75982,7 +75982,7 @@ <translation>İndirmek için mümkün olan sürümü göster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Report Bug</source> <translation>Hata Raporu</translation> </message> @@ -76082,7 +76082,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>Unittest Project</source> <translation>Proje Birimtesti</translation> </message> @@ -76367,7 +76367,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5921"/> + <location filename="../UI/UserInterface.py" line="5926"/> <source>Export Keyboard Shortcuts</source> <translation>Kılavye Kısa Yollarını Dışa Aktar</translation> </message> @@ -76387,7 +76387,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Import Keyboard Shortcuts</source> <translation>Klavye kısayollarını İçe Aktar</translation> </message> @@ -76637,7 +76637,7 @@ <translation>Ayarlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Help</source> <translation>Yardım</translation> </message> @@ -76687,264 +76687,264 @@ <translation>Harici Araçlar/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3343"/> + <location filename="../UI/UserInterface.py" line="3348"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Sürüm Numaraları</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6908"/> + <location filename="../UI/UserInterface.py" line="6913"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>E-posta adresi veya posta sunucu adresi boş. Lütfen e-posta ayarlarını özellikler diyaloğundan giriniz.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>Restart application</source> <translation>Uygulmayı yeniden başlat</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>The application needs to be restarted. Do it now?</source> <translation>Uygulama yeniden başlatılmaya ihtiyaç duyuyor. Şimdi yapılsın mı?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3764"/> + <location filename="../UI/UserInterface.py" line="3769"/> <source>Configure Tool Groups ...</source> <translation>Alet Grupları Ayarlanıyor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3768"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>Configure current Tool Group ...</source> <translation>Geçerli alet grubunu ayarla...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3719"/> + <location filename="../UI/UserInterface.py" line="3724"/> <source>&Builtin Tools</source> <translation>Ya&pılandırma Araçları</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3736"/> + <location filename="../UI/UserInterface.py" line="3741"/> <source>&Plugin Tools</source> <translation>Eklen&ti Araçları</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3884"/> + <location filename="../UI/UserInterface.py" line="3889"/> <source>&Show all</source> <translation>Hepsini Gö&ster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3886"/> + <location filename="../UI/UserInterface.py" line="3891"/> <source>&Hide all</source> <translation>&Hepsini gizle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt 3 support</source> <translation>Qt3 Desteği</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source>Process Generation Error</source> <translation>İşlem Üretecinde Hata</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4623"/> + <location filename="../UI/UserInterface.py" line="4628"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4695"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4741"/> + <location filename="../UI/UserInterface.py" line="4746"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Hali hazırda kullanıcı göstericisi seçilmedi. Lütfen .birini belirlemek için özellikler diyaloğunu kullanının.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4783"/> + <location filename="../UI/UserInterface.py" line="4788"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4803"/> + <location filename="../UI/UserInterface.py" line="4808"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4856"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4906"/> + <location filename="../UI/UserInterface.py" line="4911"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4927"/> + <location filename="../UI/UserInterface.py" line="4932"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>External Tools</source> <translation>Harici Araçlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5020"/> + <location filename="../UI/UserInterface.py" line="5025"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5073"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5160"/> + <location filename="../UI/UserInterface.py" line="5165"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Documentation Missing</source> <translation>Eksik Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source>Documentation</source> <translation>Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5378"/> + <location filename="../UI/UserInterface.py" line="5383"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>PyQt4 Belgelerinin başlama noktası ayarlanmamış.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source>Save tasks</source> <translation>Görevleri kaydet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source>Read tasks</source> <translation>Görevler Okunuyor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6240"/> + <location filename="../UI/UserInterface.py" line="6245"/> <source>Save session</source> <translation>Oturumu kaydet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6177"/> + <location filename="../UI/UserInterface.py" line="6182"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source>Read session</source> <translation>Oturumu oku</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> bir dosya değil.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>&Cancel</source> <translation>&Vazgeç</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6692"/> + <location filename="../UI/UserInterface.py" line="6697"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>Update available</source> <translation>Güncelleme mümkün değil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Error during updates check</source> <translation>Güncellemeleri kontrol esnasında hata</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Could not perform updates check.</source> <translation>Güncellemelere ulaşamıyorum.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6899"/> <source><h3>Available versions</h3><table></source> <translation><h3>Mümkün sürümler</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>First time usage</source> <translation>İlk kullanım</translation> </message> @@ -77004,32 +77004,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6754"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77115,12 +77115,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4997"/> + <location filename="../UI/UserInterface.py" line="5002"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6964"/> + <location filename="../UI/UserInterface.py" line="6969"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -77495,7 +77495,7 @@ <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5444"/> + <location filename="../UI/UserInterface.py" line="5449"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>PyQt4 Belgelerinin başlama noktası ayarlanmamış.</p> {5 ?}</translation> </message> @@ -77505,7 +77505,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -77525,7 +77525,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6687"/> + <location filename="../UI/UserInterface.py" line="6692"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -77595,27 +77595,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished">Qt v.3 eric5 tarafından desteklenmiyor. {3 ?} {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">Eric5 henüz ayarlanmadı. Ayarlar Diyaloğu başlatılıyor. {6 ?}</translation> </message> @@ -77625,17 +77625,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3739"/> + <location filename="../UI/UserInterface.py" line="3744"/> <source>&User Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811"/> + <location filename="../UI/UserInterface.py" line="3816"/> <source>No User Tools Configured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703"/> + <location filename="../UI/UserInterface.py" line="6708"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77680,7 +77680,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>Load session</source> <translation type="unfinished">Oturum yükleniyor</translation> </message> @@ -77695,17 +77695,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -77720,17 +77720,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6828"/> + <location filename="../UI/UserInterface.py" line="6833"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -77785,7 +77785,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_zh_CN.ts Sun Aug 26 15:03:20 2018 +0200 +++ b/i18n/eric6_zh_CN.ts Sun Aug 26 15:54:51 2018 +0200 @@ -3109,29 +3109,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="480"/> + <location filename="../UI/CodeDocumentationViewer.py" line="483"/> <source>No documentation available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="507"/> - <source>Definition: {0}{1} -</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../UI/CodeDocumentationViewer.py" line="510"/> + <source>Definition: {0}{1} +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/CodeDocumentationViewer.py" line="513"/> <source>Definition: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="557"/> + <location filename="../UI/CodeDocumentationViewer.py" line="560"/> <source>No source code documentation provider has been registered. This function has been disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="562"/> + <location filename="../UI/CodeDocumentationViewer.py" line="565"/> <source>This function has been disabled.</source> <translation type="unfinished"></translation> </message> @@ -3153,13 +3153,13 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="518"/> + <location filename="../UI/CodeDocumentationViewer.py" line="521"/> <source>Type: {0} </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/CodeDocumentationViewer.py" line="526"/> + <location filename="../UI/CodeDocumentationViewer.py" line="529"/> <source>Note: {0} </source> <translation type="unfinished"></translation> @@ -51237,36 +51237,36 @@ </message> <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="401"/> - <source>'exeDisplayData()' function</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="411"/> + <source>'exeDisplayData()' function returning program data to determine version information</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="421"/> <source>Select to create an 'exeDisplayDataList()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="414"/> - <source>'exeDisplayDataList()' function</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="424"/> + <source>'exeDisplayDataList()' function</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="434"/> <source>Select to create an 'apiFiles()' function skeleton</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="427"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="437"/> <source>Include 'apiFiles()' function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="453"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="463"/> <source>Press to populate entry fields from project data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="456"/> + <location filename="../Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui" line="466"/> <source>Populate from Project</source> <translation type="unfinished"></translation> </message> @@ -62951,7 +62951,7 @@ <translation>No.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source>Drop Error</source> <translation>降落误差</translation> </message> @@ -62966,23 +62966,23 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="955"/> + <location filename="../QScintilla/Shell.py" line="964"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="963"/> + <location filename="../QScintilla/Shell.py" line="972"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1731"/> + <location filename="../QScintilla/Shell.py" line="1743"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2047"/> + <location filename="../QScintilla/Shell.py" line="2059"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"><p><b>{0}</b> 不是一个文件。</p></translation> </message> @@ -76145,7 +76145,7 @@ <translation>显示可以下载的版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Report Bug</source> <translation>报告错误</translation> </message> @@ -76245,7 +76245,7 @@ <translation><b>脚本单元测试</b><p>对当前脚本运动单元测试。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>Unittest Project</source> <translation>项目单元测试</translation> </message> @@ -76500,7 +76500,7 @@ <translation><b>键盘快捷键</b><p>将程序的键盘快捷键设置成你喜欢的按键。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5921"/> + <location filename="../UI/UserInterface.py" line="5926"/> <source>Export Keyboard Shortcuts</source> <translation>导出键盘快捷键</translation> </message> @@ -76520,7 +76520,7 @@ <translation><b>导出键盘快捷键</b><p>导出程序的键盘快捷键。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Import Keyboard Shortcuts</source> <translation>导入键盘快捷键</translation> </message> @@ -76755,7 +76755,7 @@ <translation>设置</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Help</source> <translation>帮助</translation> </message> @@ -76800,167 +76800,167 @@ <translation><p>状态栏的这一部分显示当前编辑器的光标位置。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3343"/> + <location filename="../UI/UserInterface.py" line="3348"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>版本号</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6908"/> + <location filename="../UI/UserInterface.py" line="6913"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3398"/> + <location filename="../UI/UserInterface.py" line="3403"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>电子邮件地址或邮件服务器地址为空。请在首选项对话框中配置你的电子邮件设置。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>Restart application</source> <translation>重启程序</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3683"/> + <location filename="../UI/UserInterface.py" line="3688"/> <source>The application needs to be restarted. Do it now?</source> <translation>程序需要重启。现在重启?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3764"/> + <location filename="../UI/UserInterface.py" line="3769"/> <source>Configure Tool Groups ...</source> <translation>配置工具组…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3768"/> + <location filename="../UI/UserInterface.py" line="3773"/> <source>Configure current Tool Group ...</source> <translation>配置当前工具组…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3719"/> + <location filename="../UI/UserInterface.py" line="3724"/> <source>&Builtin Tools</source> <translation>内建工具(&B)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3736"/> + <location filename="../UI/UserInterface.py" line="3741"/> <source>&Plugin Tools</source> <translation>插件工具(&P)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3884"/> + <location filename="../UI/UserInterface.py" line="3889"/> <source>&Show all</source> <translation>全部显示(&S)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3886"/> + <location filename="../UI/UserInterface.py" line="3891"/> <source>&Hide all</source> <translation>全部隐藏(&H)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4517"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Problem</source> <translation>问题</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source>Process Generation Error</source> <translation>进程生成错误</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Open Browser</source> <translation>打开浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5717"/> + <location filename="../UI/UserInterface.py" line="5722"/> <source>Could not start a web browser</source> <translation>无法启动网络浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4769"/> + <location filename="../UI/UserInterface.py" line="4774"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>目前没有选择自定义浏览器。请使用首选项对话框指定一个。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4803"/> + <location filename="../UI/UserInterface.py" line="4808"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>无法开启帮助浏览器。<br>确保其有效如 <b>hh</b>。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>External Tools</source> <translation>外部工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source>Documentation Missing</source> <translation>文档缺失</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source>Documentation</source> <translation>文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5378"/> + <location filename="../UI/UserInterface.py" line="5383"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>未配置 PyQt4 文档起点。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source>Save tasks</source> <translation>保存任务</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source>Read tasks</source> <translation>读取任务</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6240"/> + <location filename="../UI/UserInterface.py" line="6245"/> <source>Save session</source> <translation>保存会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source>Read session</source> <translation>读取会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source>Drop Error</source> <translation>降落误差</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Error during updates check</source> <translation>检查更新时出错</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>&Cancel</source> <translation>取消(&C)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>Update available</source> <translation>可用更新</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6870"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Could not perform updates check.</source> <translation>无法完成更新检查。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6899"/> <source><h3>Available versions</h3><table></source> <translation><h3>可用版本</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>First time usage</source> <translation>第一次使用</translation> </message> @@ -77040,7 +77040,7 @@ <translation>图标编辑器(&I)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt 3 support</source> <translation>Qt 3 支持</translation> </message> @@ -77085,106 +77085,106 @@ <translation>外部工具/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4895"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>文件 <b>{0}</b> 不存在或者长度为零。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4623"/> + <location filename="../UI/UserInterface.py" line="4628"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 设计师。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4690"/> + <location filename="../UI/UserInterface.py" line="4695"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 语言家。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4741"/> + <location filename="../UI/UserInterface.py" line="4746"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 助手。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4783"/> + <location filename="../UI/UserInterface.py" line="4788"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动自定义的查看器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4856"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 UI 预览器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4906"/> + <location filename="../UI/UserInterface.py" line="4911"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动翻译预览器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4927"/> + <location filename="../UI/UserInterface.py" line="4932"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 SQL 浏览器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5020"/> + <location filename="../UI/UserInterface.py" line="5025"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5029"/> + <location filename="../UI/UserInterface.py" line="5034"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5073"/> <source>Starting process '{0} {1}'. </source> <translation>正在启动进程“{0} {1}”。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5084"/> + <location filename="../UI/UserInterface.py" line="5089"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5160"/> + <location filename="../UI/UserInterface.py" line="5165"/> <source>Process '{0}' has exited. </source> <translation>进程“{0}”已退出。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5581"/> + <location filename="../UI/UserInterface.py" line="5586"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6114"/> + <location filename="../UI/UserInterface.py" line="6119"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>任务文件 <b>{0}</b> 无法写入。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6143"/> + <location filename="../UI/UserInterface.py" line="6148"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>任务文件 <b>{0}</b> 无法读取。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6177"/> + <location filename="../UI/UserInterface.py" line="6182"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>会话文件 <b>{0}</b> 无法写入。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6224"/> + <location filename="../UI/UserInterface.py" line="6229"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>会话文件 <b>{0}</b> 无法读取。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6504"/> + <location filename="../UI/UserInterface.py" line="6509"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> 不是一个文件。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6692"/> + <location filename="../UI/UserInterface.py" line="6697"/> <source>Trying host {0}</source> <translation>正在尝试主机 {0}</translation> </message> @@ -77219,7 +77219,7 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5950"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>键盘快捷键文件 (*.e4k)</translation> </message> @@ -77259,17 +77259,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>Error getting versions information</source> <translation>获取版本信息出错</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6749"/> + <location filename="../UI/UserInterface.py" line="6754"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>无法获取版本信息。请连线并再试一次。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6756"/> + <location filename="../UI/UserInterface.py" line="6761"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>过去7天均无法获取版本信息。请连线并再试一次。</translation> </message> @@ -77355,12 +77355,12 @@ <translation><b>快照</b><p>打开一个对话框来截取屏幕一个区域的快照。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4997"/> + <location filename="../UI/UserInterface.py" line="5002"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动快照工具。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6964"/> + <location filename="../UI/UserInterface.py" line="6969"/> <source>Select Workspace Directory</source> <translation>选择工作区目录</translation> </message> @@ -77735,7 +77735,7 @@ <translation>打开 PyQt5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5444"/> + <location filename="../UI/UserInterface.py" line="5449"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><p>未配置 PyQt5 文档起始位置。</p></translation> </message> @@ -77770,7 +77770,7 @@ <translation type="obsolete"><b>PySide 文档</b><p>显示 PySide 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6683"/> + <location filename="../UI/UserInterface.py" line="6688"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -77790,7 +77790,7 @@ <translation><b>显示错误日志…</b><p>打开一个对话框显示最近的错误日志。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6687"/> + <location filename="../UI/UserInterface.py" line="6692"/> <source>Version Check</source> <translation>版本检查</translation> </message> @@ -77860,27 +77860,27 @@ <translation><b>Eric API 文档</b><p>显示 Eric API 文档。文档位置为 Eric6 安装文件夹下的文档或源代码子文件夹。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4716"/> + <location filename="../UI/UserInterface.py" line="4721"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt 版本3 不被 eric6 支持。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6850"/> + <location filename="../UI/UserInterface.py" line="6855"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>eric6 的 <b>{0}</b> 更新已经可用,位于 <b>{1}</b>。您是否希望下载它?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>Eric6 is up to date</source> <translation>Eric6 已是最新版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6863"/> + <location filename="../UI/UserInterface.py" line="6868"/> <source>You are using the latest version of eric6</source> <translation>您正在使用 eric6 的最新版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6950"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>尚未配置 eric6。将打开配置对话框。</translation> </message> @@ -77890,17 +77890,17 @@ <translation>生成插件工具栏…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3739"/> + <location filename="../UI/UserInterface.py" line="3744"/> <source>&User Tools</source> <translation>用户工具(&U)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3811"/> + <location filename="../UI/UserInterface.py" line="3816"/> <source>No User Tools Configured</source> <translation>没有配置的用户工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703"/> + <location filename="../UI/UserInterface.py" line="6708"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>因为当前处在 <b>离线</b> 状态,无法获取版本信息。请连线并再试一次。</translation> </message> @@ -77945,7 +77945,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>Load session</source> <translation type="unfinished">载入会话</translation> </message> @@ -77960,17 +77960,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6262"/> + <location filename="../UI/UserInterface.py" line="6267"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6309"/> + <location filename="../UI/UserInterface.py" line="6314"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -77985,17 +77985,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6838"/> + <location filename="../UI/UserInterface.py" line="6843"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6828"/> + <location filename="../UI/UserInterface.py" line="6833"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -78050,7 +78050,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5564"/> + <location filename="../UI/UserInterface.py" line="5569"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>