Sat, 03 Sep 2016 19:20:42 +0200
Added reporting for JSON decoding errors in the debugger interfaces and updated translations.
Debugger/DebuggerInterfacePython2.py | file | annotate | diff | comparison | revisions | |
Debugger/DebuggerInterfacePython3.py | file | annotate | diff | comparison | revisions | |
i18n/eric6_cs.ts | file | annotate | diff | comparison | revisions | |
i18n/eric6_de.qm | file | annotate | diff | comparison | revisions | |
i18n/eric6_de.ts | file | annotate | diff | comparison | revisions | |
i18n/eric6_en.ts | file | annotate | diff | comparison | revisions | |
i18n/eric6_es.ts | file | annotate | diff | comparison | revisions | |
i18n/eric6_fr.ts | file | annotate | diff | comparison | revisions | |
i18n/eric6_it.ts | file | annotate | diff | comparison | revisions | |
i18n/eric6_pt.ts | file | annotate | diff | comparison | revisions | |
i18n/eric6_ru.ts | file | annotate | diff | comparison | revisions | |
i18n/eric6_tr.ts | file | annotate | diff | comparison | revisions | |
i18n/eric6_zh_CN.ts | file | annotate | diff | comparison | revisions |
--- a/Debugger/DebuggerInterfacePython2.py Sat Sep 03 19:00:12 2016 +0200 +++ b/Debugger/DebuggerInterfacePython2.py Sat Sep 03 19:20:42 2016 +0200 @@ -852,8 +852,18 @@ try: commandDict = json.loads(jsonStr.strip()) except json.JSONDecodeError as err: - # TODO: implement real error handling - ##print(str(err)) + E5MessageBox.critical( + None, + self.tr("Debug Protocol Error"), + self.tr("""<p>The response received from the debugger""" + """ backend could not be decoded. Please report""" + """ this issue with the received data to the""" + """ eric bugs email address.</p>""" + """<p>Error: {0}</p>""" + """<p>Data:<br/>{0}</p>""").format( + str(err), Utilities.html_encode(jsonStr.strip())), + E5MessageBox.StandardButtons( + E5MessageBox.Ok)) return method = commandDict["method"]
--- a/Debugger/DebuggerInterfacePython3.py Sat Sep 03 19:00:12 2016 +0200 +++ b/Debugger/DebuggerInterfacePython3.py Sat Sep 03 19:20:42 2016 +0200 @@ -852,8 +852,18 @@ try: commandDict = json.loads(jsonStr.strip()) except json.JSONDecodeError as err: - # TODO: implement real error handling - ##print(str(err)) + E5MessageBox.critical( + None, + self.tr("Debug Protocol Error"), + self.tr("""<p>The response received from the debugger""" + """ backend could not be decoded. Please report""" + """ this issue with the received data to the""" + """ eric bugs email address.</p>""" + """<p>Error: {0}</p>""" + """<p>Data:<br/>{0}</p>""").format( + str(err), Utilities.html_encode(jsonStr.strip())), + E5MessageBox.StandardButtons( + E5MessageBox.Ok)) return method = commandDict["method"]
--- a/i18n/eric6_cs.ts Sat Sep 03 19:00:12 2016 +0200 +++ b/i18n/eric6_cs.ts Sat Sep 03 19:20:42 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation>Přidat záložku</translation> </message> @@ -1777,7 +1777,7 @@ <translation>Editovat &adresu</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation>&Smazat</translation> </message> @@ -2470,12 +2470,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="99"/> <source>From</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="104"/> <source>To</source> <translation type="unfinished"></translation> </message> @@ -2631,7 +2631,7 @@ <translation>Stisknutím zrušit sdílený editor</translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation>Vyčistit</translation> </message> @@ -2929,7 +2929,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation type="unfinished"></translation> </message> @@ -4865,7 +4865,7 @@ <translation type="unfinished">Doména:</translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation type="unfinished"></translation> </message> @@ -5314,7 +5314,7 @@ <translation>Spojení z ilegálního hosta</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1352"/> + <location filename="../Debugger/DebugServer.py" line="1337"/> <source> Not connected </source> @@ -5328,13 +5328,13 @@ <translation><p>Pokus o spojení z ilegálního hosta <b>{0}</b>. Přijmout toto spojení?</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1532"/> + <location filename="../Debugger/DebugServer.py" line="1517"/> <source>Passive debug connection received </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1546"/> + <location filename="../Debugger/DebugServer.py" line="1531"/> <source>Passive debug connection closed </source> <translation type="unfinished"></translation> @@ -5353,571 +5353,571 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1752"/> <source>Run Script</source> <translation>Spustit skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="176"/> + <location filename="../Debugger/DebugUI.py" line="173"/> <source>&Run Script...</source> <translation>Spustit sk&ript...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="181"/> + <location filename="../Debugger/DebugUI.py" line="178"/> <source>Run the current Script</source> <translation>Spustit aktuální skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="182"/> + <location filename="../Debugger/DebugUI.py" line="179"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Spustit skript</b><p>Nastavení parametrů příkazové řádky a spuštění skriptu bez debugeru. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1795"/> + <location filename="../Debugger/DebugUI.py" line="1767"/> <source>Run Project</source> <translation>Spustit projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="191"/> + <location filename="../Debugger/DebugUI.py" line="188"/> <source>Run &Project...</source> <translation>Spustit &projekt...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="196"/> + <location filename="../Debugger/DebugUI.py" line="193"/> <source>Run the current Project</source> <translation>Spustit aktuální projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="197"/> + <location filename="../Debugger/DebugUI.py" line="194"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Spustit projekt</b><p>Nastavení parametrů příkazové řádky a spuštění projektu bez debugeru. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="207"/> + <location filename="../Debugger/DebugUI.py" line="204"/> <source>Coverage run of Script</source> <translation>Spustit skript s kontrolou pokrytí</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="207"/> + <location filename="../Debugger/DebugUI.py" line="204"/> <source>Coverage run of Script...</source> <translation>Spustit skript s kontrolou pokrytí...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="212"/> + <location filename="../Debugger/DebugUI.py" line="209"/> <source>Perform a coverage run of the current Script</source> <translation>Provede se spuštění běhu aktuálního skriptu s kontrolou pokrytí kódu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="214"/> + <location filename="../Debugger/DebugUI.py" line="211"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Spustit skript s kontrolou pokrytí</b><p>Nastavení parametrů příkazové řádky a spuštění projektu pod kontrolou nástroje analýzy pokrytí kódu. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="223"/> + <location filename="../Debugger/DebugUI.py" line="220"/> <source>Coverage run of Project</source> <translation>Spustit projekt s kontrolou pokrytí</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="223"/> + <location filename="../Debugger/DebugUI.py" line="220"/> <source>Coverage run of Project...</source> <translation>Spustit projekt s kontrolou pokrytí...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="228"/> + <location filename="../Debugger/DebugUI.py" line="225"/> <source>Perform a coverage run of the current Project</source> <translation>Provede se spuštění běhu aktuálního projektu s kontrolou pokrytí kódu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="230"/> + <location filename="../Debugger/DebugUI.py" line="227"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Spustit projekt s kontrolou pokrytí</b><p>Nastavení parametrů příkazové řádky a spuštění projektu pod kontrolou nástroje analýzy pokrytí kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="240"/> + <location filename="../Debugger/DebugUI.py" line="237"/> <source>Profile Script</source> <translation>Profilovat skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="240"/> + <location filename="../Debugger/DebugUI.py" line="237"/> <source>Profile Script...</source> <translation>Profilovat skript...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="244"/> + <location filename="../Debugger/DebugUI.py" line="241"/> <source>Profile the current Script</source> <translation>Profilovat aktuální skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="245"/> + <location filename="../Debugger/DebugUI.py" line="242"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Profilovat skript</b><p>Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="253"/> + <location filename="../Debugger/DebugUI.py" line="250"/> <source>Profile Project</source> <translation>Profilovat projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="253"/> + <location filename="../Debugger/DebugUI.py" line="250"/> <source>Profile Project...</source> <translation>Profilovat projekt...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="258"/> + <location filename="../Debugger/DebugUI.py" line="255"/> <source>Profile the current Project</source> <translation>Profilovat aktuální projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="260"/> + <location filename="../Debugger/DebugUI.py" line="257"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Profilovat projekt</b><p>Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1874"/> <source>Debug Script</source> <translation>Debugovat skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="269"/> + <location filename="../Debugger/DebugUI.py" line="266"/> <source>&Debug Script...</source> <translation>&Debugovat skript...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="274"/> + <location filename="../Debugger/DebugUI.py" line="271"/> <source>Debug the current Script</source> <translation>Debugovat aktuální skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="275"/> + <location filename="../Debugger/DebugUI.py" line="272"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Debugovat skript</b><p>Nastavení parametrů příkazové řádky a aktuální řádky jako první python příkaz v aktuálním editačním okně. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1917"/> + <location filename="../Debugger/DebugUI.py" line="1889"/> <source>Debug Project</source> <translation>Debugovat projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="285"/> + <location filename="../Debugger/DebugUI.py" line="282"/> <source>Debug &Project...</source> <translation>Debugovat pro&jekt...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="290"/> + <location filename="../Debugger/DebugUI.py" line="287"/> <source>Debug the current Project</source> <translation>Debugovat aktuální projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="292"/> + <location filename="../Debugger/DebugUI.py" line="289"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Debugovat projekt</b><p>Nastavení parametrů příkazové řádky a nastavení aktuální řádky jako první python příkaz hlavního skriptu v aktuálním projektu. Pokud jsou v projektu neuložené změny, měly by se měly nejdříve uložit.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="306"/> + <location filename="../Debugger/DebugUI.py" line="303"/> <source>Restart the last debugged script</source> <translation>Restartovat posledně debugovaný skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="333"/> + <location filename="../Debugger/DebugUI.py" line="330"/> <source>Continue</source> <translation>Pokračovat</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="333"/> + <location filename="../Debugger/DebugUI.py" line="330"/> <source>&Continue</source> <translation>&Pokračovat</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="338"/> + <location filename="../Debugger/DebugUI.py" line="335"/> <source>Continue running the program from the current line</source> <translation>Pokračovat v běhu programu od aktuální řádky</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="340"/> + <location filename="../Debugger/DebugUI.py" line="337"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Pokračovat</b><p>Pokračovat v běhu programu od aktuální řádky. Program se zastaví na nejbližším breakpointu nebo běží až do konce.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="349"/> + <location filename="../Debugger/DebugUI.py" line="346"/> <source>Continue to Cursor</source> <translation>Pokračovat až na kurzor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="349"/> + <location filename="../Debugger/DebugUI.py" line="346"/> <source>Continue &To Cursor</source> <translation>Pokračova&t až na kurzor</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="351"/> + <source>Continue running the program from the current line to the current cursor position</source> + <translation>Pokračovat v běhu programu od aktuální řádky až na pozici kurzoru</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="354"/> - <source>Continue running the program from the current line to the current cursor position</source> - <translation>Pokračovat v běhu programu od aktuální řádky až na pozici kurzoru</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>Pokračovat až na kurzor</b><p>Běh programu pokračuje až na řádek, na kterém se nachází kurzor.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="365"/> + <location filename="../Debugger/DebugUI.py" line="362"/> <source>Single Step</source> <translation>Krok dovnitř</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="365"/> + <location filename="../Debugger/DebugUI.py" line="362"/> <source>Sin&gle Step</source> <translation>&Krok dovnitř</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="370"/> + <location filename="../Debugger/DebugUI.py" line="367"/> <source>Execute a single Python statement</source> <translation>Vykonat jen jeden python příkaz</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="371"/> + <location filename="../Debugger/DebugUI.py" line="368"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>Krok dovnitř</b><p>Vykoná se jen jeden python příkaz. Pokud je příkaz <tt>import</tt>, konstruktor třídy, metoda nebo funkce, tak debuger vstoupí dovnitř funkce a zastaví se na prvním příkazu v těle funkce.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="381"/> + <location filename="../Debugger/DebugUI.py" line="378"/> <source>Step Over</source> <translation>Krok přes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="381"/> + <location filename="../Debugger/DebugUI.py" line="378"/> <source>Step &Over</source> <translation>Kr&ok přes</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="383"/> + <source>Execute a single Python statement staying in the current frame</source> + <translation>Vykonat jeden python příkaz ale nevstupovat do něj</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="386"/> - <source>Execute a single Python statement staying in the current frame</source> - <translation>Vykonat jeden python příkaz ale nevstupovat do něj</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="389"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation><b>Krok přes</b><p>Vykoná se jeden python příkaz. Pokud je příkaz <tt>import</tt>, konstruktor třídy, metoda nebo funkce, tak debuger nevstupuje dovnitř funkce, ale vykoná ji celou a zastaví se až na následujícím příkazu.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="400"/> + <location filename="../Debugger/DebugUI.py" line="397"/> <source>Step Out</source> <translation>Krok ven</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="400"/> + <location filename="../Debugger/DebugUI.py" line="397"/> <source>Step Ou&t</source> <translation>Krok &ven</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="402"/> + <source>Execute Python statements until leaving the current frame</source> + <translation>Vykonávat python příkazy tak dlouho, dokud nedojde k opuštění těla kódu</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="405"/> - <source>Execute Python statements until leaving the current frame</source> - <translation>Vykonávat python příkazy tak dlouho, dokud nedojde k opuštění těla kódu</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="408"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation><b>Krok ven</b><p>Provádí se python příkazy tak dlouho, dokud nedojde k opuštění těla aktuálního bloku kódu. Pokud je příkaz <tt>import</tt>, konstruktor třídy, metoda nebo funkce, tak debuger provádí příkazy tak dlouho, dokud z daného bloku nevystoupí. Zastaví se až na příkazu následujícím za daným blokem.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="419"/> + <location filename="../Debugger/DebugUI.py" line="416"/> <source>Stop</source> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="419"/> + <location filename="../Debugger/DebugUI.py" line="416"/> <source>&Stop</source> <translation>&Stop</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="424"/> + <location filename="../Debugger/DebugUI.py" line="421"/> <source>Stop debugging</source> <translation>Stop debugování</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="425"/> + <location filename="../Debugger/DebugUI.py" line="422"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Stop</b><p>Stop běhu aktuální debug relace.</p></translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> - <translation>Evaluate</translation> + <translation type="obsolete">Evaluate</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="434"/> <source>E&valuate...</source> - <translation>V&yhodnotit...</translation> + <translation type="obsolete">V&yhodnotit...</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="438"/> <source>Evaluate in current context</source> - <translation>Vyhodnotit aktuální kontext</translation> + <translation type="obsolete">Vyhodnotit aktuální kontext</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> - <translation>Vykonat</translation> + <translation type="obsolete">Vykonat</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="448"/> <source>E&xecute...</source> - <translation>Vykon&at...</translation> + <translation type="obsolete">Vykon&at...</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="452"/> <source>Execute a one line statement in the current context</source> - <translation>Vykonat jednu řádku kódu v aktuálním kontextu</translation> + <translation type="obsolete">Vykonat jednu řádku kódu v aktuálním kontextu</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="454"/> <source><b>Execute</b><p>Execute a one line statement in the current context of the debugged program.</p></source> - <translation><b>Execute</b><p>Vykonat jednu řádku kódu v aktuálním kontextu debugovaného programu.</p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="462"/> + <translation type="obsolete"><b>Execute</b><p>Vykonat jednu řádku kódu v aktuálním kontextu debugovaného programu.</p></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="429"/> <source>Variables Type Filter</source> <translation>Filtr typů proměnných</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="462"/> + <location filename="../Debugger/DebugUI.py" line="429"/> <source>Varia&bles Type Filter...</source> <translation>&Filtr typů proměnných...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="466"/> + <location filename="../Debugger/DebugUI.py" line="433"/> <source>Configure variables type filter</source> <translation>Nastavit filtr typů proměnných</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="468"/> + <location filename="../Debugger/DebugUI.py" line="435"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation><b>Filtr typů proměnných</b><p>Nastavení filtru typů proměnných. Během debugování jsou v okně globálních nebo lokálních proměnných zobrazovány jen ty typy proměnných, které nebyly vybrány.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="478"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source>Exceptions Filter</source> <translation>Filtr výjimek</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="478"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source>&Exceptions Filter...</source> <translation>Filtr výjim&ek...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="482"/> + <location filename="../Debugger/DebugUI.py" line="449"/> <source>Configure exceptions filter</source> <translation>Konfigurace filtru výjimek</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="484"/> + <location filename="../Debugger/DebugUI.py" line="451"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>Filtr výjimek</b><p>Nastavení filtru výjimek. Během debugování jsou zvýrazněny jen ty výjimky, které jsou uvedeny v seznamu.</p><p>Všimněte si, že neošetřené výjimky jsou zvýrazněny nezávisle na seznamu filtru.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="520"/> + <location filename="../Debugger/DebugUI.py" line="487"/> <source>Toggle Breakpoint</source> <translation>Přepnout breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="488"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Přepnout breakpoint</b><p>Zapíná/vypíná breakpoint na aktuální řádce v aktuálním editoru.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="535"/> + <location filename="../Debugger/DebugUI.py" line="502"/> <source>Edit Breakpoint</source> <translation>Editovat breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="529"/> + <location filename="../Debugger/DebugUI.py" line="496"/> <source>Edit Breakpoint...</source> <translation>Editovat breakpoint...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="503"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>Editovat breakpoint</b><p>Otevře dialog s editací vlastností breakpointů. Zpracovává aktuální řádku v aktuálním editoru.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="518"/> <source>Next Breakpoint</source> <translation>Následující breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="552"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>Následující breakpoint</b><p>Jít na následující breakpoint v aktuálním editoru.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="533"/> <source>Previous Breakpoint</source> <translation>Předchozí breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="567"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>Předchozí breakpoint</b><p>Jít na předchozí brakpoint v aktuálním editoru.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="580"/> + <location filename="../Debugger/DebugUI.py" line="547"/> <source>Clear Breakpoints</source> <translation>Zrušit breakpointy</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="541"/> + <source>Ctrl+Shift+C</source> + <comment>Debug|Clear Breakpoints</comment> + <translation></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="548"/> + <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> + <translation><b>Zrušit breakpointy</b><p>Zrušení breakpointů ve všech editorech.</p></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="574"/> - <source>Ctrl+Shift+C</source> - <comment>Debug|Clear Breakpoints</comment> - <translation></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="581"/> - <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> - <translation><b>Zrušit breakpointy</b><p>Zrušení breakpointů ve všech editorech.</p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="608"/> <source>&Debug</source> <translation>&Debugování</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="610"/> + <location filename="../Debugger/DebugUI.py" line="576"/> <source>&Start</source> <translation>&Start</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="612"/> + <location filename="../Debugger/DebugUI.py" line="578"/> <source>&Breakpoints</source> <translation>&Breakpointy</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="657"/> + <location filename="../Debugger/DebugUI.py" line="621"/> <source>Start</source> <translation>Start</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="671"/> + <location filename="../Debugger/DebugUI.py" line="635"/> <source>Debug</source> <translation>Debug</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1088"/> + <location filename="../Debugger/DebugUI.py" line="1061"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Program, který je právě debugován, obsahuje nespecifikovanou syntaktickou chybu.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1125"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Objevila se neošetřená výjimka. Detaily naleznete v shell okně.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1245"/> + <location filename="../Debugger/DebugUI.py" line="1217"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Debugovaný program byl neočekávaně ukončen.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1314"/> + <location filename="../Debugger/DebugUI.py" line="1286"/> <source>Breakpoint Condition Error</source> <translation>Chyba v podmíněném breakpointu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1555"/> + <location filename="../Debugger/DebugUI.py" line="1527"/> <source>Coverage of Project</source> <translation>Pokrytí projektu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1542"/> + <location filename="../Debugger/DebugUI.py" line="1514"/> <source>Coverage of Script</source> <translation>Pokrytí skriptu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1795"/> + <location filename="../Debugger/DebugUI.py" line="1767"/> <source>There is no main script defined for the current project. Aborting</source> <translation>V aktuálním projektu není definován hlavní skript. Zrušeno</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1674"/> + <location filename="../Debugger/DebugUI.py" line="1646"/> <source>Profile of Project</source> <translation>Profilovat projekt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1661"/> + <location filename="../Debugger/DebugUI.py" line="1633"/> <source>Profile of Script</source> <translation>Profilovat skript</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1917"/> + <location filename="../Debugger/DebugUI.py" line="1889"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>V aktuálním projektu není definován hlavní skript. Debugování není možné.</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> - <translation>Zadejte příkaz pro vyhodnocení</translation> + <translation type="obsolete">Zadejte příkaz pro vyhodnocení</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> - <translation>Zadejte příkaz pro vykonání</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="323"/> + <translation type="obsolete">Zadejte příkaz pro vykonání</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="320"/> <source>Stop the running script.</source> <translation>Zastavit běžící skript.</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="439"/> <source><b>Evaluate</b><p>Evaluate an expression in the current context of the debugged program. The result is displayed in the shell window.</p></source> - <translation><b>Vyhodnotit</b><p>Vyhodnotit výraz aktuálního kontextu debugovaného programu. Výsledek je zobrazen v shell okně.</p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1350"/> + <translation type="obsolete"><b>Vyhodnotit</b><p>Vyhodnotit výraz aktuálního kontextu debugovaného programu. Výsledek je zobrazen v shell okně.</p></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1322"/> <source>Watch Expression Error</source> <translation>Chyba sledovacího bodu</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1390"/> + <location filename="../Debugger/DebugUI.py" line="1362"/> <source>Watch expression already exists</source> <translation>Sledovací bod již existuje</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="495"/> + <location filename="../Debugger/DebugUI.py" line="462"/> <source>Ignored Exceptions</source> <translation>Ignorované výjimky</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="495"/> + <location filename="../Debugger/DebugUI.py" line="462"/> <source>&Ignored Exceptions...</source> <translation>&Ignorované výjimky...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="499"/> + <location filename="../Debugger/DebugUI.py" line="466"/> <source>Configure ignored exceptions</source> <translation>Konfigurovat ignorované výjimky</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="501"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>Ignorované výjimky</b><p>Seznam ignorovaných výjimek. Během debugování jsou zvýrazněny jen ty typy výjimek, které nejsou uvedeny v tomto seznamu.</p><p>Všimněte si prosím, že výjimky typu unhalted nelze ignorovat.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="514"/> + <location filename="../Debugger/DebugUI.py" line="481"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="529"/> + <location filename="../Debugger/DebugUI.py" line="496"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation></translation> @@ -5925,95 +5925,119 @@ <message> <location filename="../Debugger/DebugUI.py" line="1036"/> <source><p>The program has terminated with an exit status of {0}.</p></source> - <translation><p>Program byl ukončen s exit statusem {0}.</p></translation> + <translation type="obsolete"><p>Program byl ukončen s exit statusem {0}.</p></translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="1041"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> - <translation><p><b>{0}</b> byl ukončen s exit statusem {1}.</p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1107"/> + <translation type="obsolete"><p><b>{0}</b> byl ukončen s exit statusem {1}.</p></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1080"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation><p>Soubor <b>{0}</b> na řádce <b>{1}</b>, písmeno <b>{2}</b>, obsahuje syntaktickou chybu <b>{3}</b>.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1166"/> + <location filename="../Debugger/DebugUI.py" line="1139"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation><p>Debugovaný program vyvolal výjimku <b>{0}</b><br>"<b>{1}</b>"<br>Soubor: <b>{2}</b>, řádek: <b>{3}</b></p><p>Zastavit zde?</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1181"/> + <location filename="../Debugger/DebugUI.py" line="1154"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>Debugovaný program vyvolal výjimku <b>{0}</b><br>"<b>{1}</b>"</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1314"/> + <location filename="../Debugger/DebugUI.py" line="1286"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>Podmínka breakpointu <b>{0}, {1}</b> obsahuje syntaktickou chybu.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1350"/> + <location filename="../Debugger/DebugUI.py" line="1322"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>Sledovací bod <b>{0}</b> obsahuje syntaktickou chybu.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1380"/> + <location filename="../Debugger/DebugUI.py" line="1352"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>Sledovací bod '<b>{0}</b>' již existuje.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1384"/> + <location filename="../Debugger/DebugUI.py" line="1356"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>Sledovací bod '<b>{0}</b>' pro proměnnou <b>{1}</b> již existuje.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> - <source>The program has terminated with an exit status of {0}. -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1066"/> - <source>"{0}" has terminated with an exit status of {1}. -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1057"/> + <location filename="../Debugger/DebugUI.py" line="1030"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1050"/> - <source>The program has terminated with an exit status of {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1053"/> - <source>"{0}" has terminated with an exit status of {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="302"/> + <location filename="../Debugger/DebugUI.py" line="299"/> <source>Restart</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="305"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="324"/> + <location filename="../Debugger/DebugUI.py" line="321"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1231"/> + <location filename="../Debugger/DebugUI.py" line="1203"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Debugger/DebugUI.py" line="997"/> + <source><p>Message: {0}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1003"/> + <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1008"/> + <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1016"/> + <source>Message: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1023"/> + <source>The program has terminated with an exit status of {0}. +{1}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1026"/> + <source>"{0}" has terminated with an exit status of {1}. +{2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1035"/> + <source>The program has terminated with an exit status of {0}. +{1} +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1039"/> + <source>"{0}" has terminated with an exit status of {1}. +{2} +</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebugViewer</name> @@ -6466,76 +6490,129 @@ <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="356"/> <source>Start Debugger</source> - <translation>Spustit debuger</translation> - </message> - <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="356"/> - <source><p>The debugger backend could not be started.</p></source> - <translation></translation> + <translation type="obsolete">Spustit debuger</translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="797"/> <source>Parent Process</source> - <translation>Rodičovský proces</translation> + <translation type="obsolete">Rodičovský proces</translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="798"/> <source>Child process</source> - <translation>Dětský proces</translation> + <translation type="obsolete">Dětský proces</translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="799"/> <source>Client forking</source> - <translation>Větvení klienta</translation> + <translation type="obsolete">Větvení klienta</translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="799"/> <source>Select the fork branch to follow.</source> - <translation>Pokračovat ve fork větvi.</translation> + <translation type="obsolete">Pokračovat ve fork větvi.</translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="147"/> <source><p>No Python2 interpreter configured.</p></source> - <translation><p>Python2 interpreter není nakonfigurován.</p></translation> + <translation type="obsolete"><p>Python2 interpreter není nakonfigurován.</p></translation> + </message> +</context> +<context> + <name>DebuggerInterfacePython2</name> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="352"/> + <source>Start Debugger</source> + <translation type="unfinished">Spustit debuger</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="143"/> + <source><p>No Python2 interpreter configured.</p></source> + <translation type="unfinished"><p>Python2 interpreter není nakonfigurován.</p></translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="352"/> + <source><p>The debugger backend could not be started.</p></source> + <translation type="unfinished"><p>Debugovací backend nelze spustit.</p></translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="815"/> + <source>Parent Process</source> + <translation type="unfinished">Rodičovský proces</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="816"/> + <source>Child process</source> + <translation type="unfinished">Dětský proces</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="817"/> + <source>Client forking</source> + <translation type="unfinished">Větvení klienta</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="817"/> + <source>Select the fork branch to follow.</source> + <translation type="unfinished">Pokračovat ve fork větvi.</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="862"/> + <source>Debug Protocol Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="862"/> + <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> + <translation type="unfinished"></translation> </message> </context> <context> <name>DebuggerInterfacePython3</name> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="353"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="352"/> <source>Start Debugger</source> <translation>Spustit debuger</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="353"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="352"/> <source><p>The debugger backend could not be started.</p></source> <translation><p>Debugovací backend nelze spustit.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="794"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="815"/> <source>Parent Process</source> <translation>Rodičovský proces</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="795"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="816"/> <source>Child process</source> <translation>Dětský proces</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="796"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="817"/> <source>Client forking</source> <translation>Větvení klienta</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="796"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="817"/> <source>Select the fork branch to follow.</source> <translation>Pokračovat ve fork větvi.</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="144"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="143"/> <source><p>No Python3 interpreter configured.</p></source> <translation type="unfinished"><p>Python2 interpreter není nakonfigurován.</p> {3 ?}</translation> </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="862"/> + <source>Debug Protocol Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="862"/> + <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebuggerInterfaceRuby</name> @@ -7534,7 +7611,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> + <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> @@ -7991,92 +8068,92 @@ <translation type="unfinished">Standardní tlačítka</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> <source>Abort</source> <translation type="unfinished">Přerušit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> <source>Apply</source> <translation type="unfinished">Použít</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> <source>Cancel</source> <translation type="unfinished">Zrušit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> <source>Close</source> <translation type="unfinished">Zavřít</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> <source>Discard</source> <translation type="unfinished">Zahodit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> <source>Ignore</source> <translation type="unfinished">Ignorovat</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> <source>No</source> <translation type="unfinished">Ne</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> <source>No to all</source> <translation type="unfinished">Ne pro všechno</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> <source>Ok</source> <translation type="unfinished">Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> <source>Open</source> <translation type="unfinished">Otevřít</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> <source>Restore defaults</source> <translation type="unfinished">Obnovit defaulty</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> <source>Retry</source> <translation type="unfinished">Vrátit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> <source>Save</source> <translation type="unfinished">Uložit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> <source>Save all</source> <translation type="unfinished">Uložit vše</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> <source>Yes</source> <translation type="unfinished">Ano</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> <source>Yes to all</source> <translation type="unfinished">Ano pro všechno</translation> </message> @@ -10086,7 +10163,7 @@ <translation>Stiskněte pro výběr API souboru ze seznamu instalovaných API</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> <source>Add from installed APIs</source> <translation>Přidat z instalovaných API</translation> </message> @@ -10096,7 +10173,7 @@ <translation>Stiskněte pro kompilování vybrané API definici</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> <source>Compile APIs</source> <translation>Kompilovat API</translation> </message> @@ -10161,7 +10238,7 @@ <translation>Stiskněte pro výběr API souboru ze seznamu API souborů instalovaných z pluginů</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> <source>Add from Plugin APIs</source> <translation>Přidat z API pluginů</translation> </message> @@ -11175,7 +11252,7 @@ <translation>Výběr výplně konce řádku.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> <source>Fill to end of line</source> <translation>Vyplnit do konce řádku</translation> </message> @@ -11220,7 +11297,7 @@ <translation>Vybrat font.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> <source>Font</source> <translation></translation> </message> @@ -12671,7 +12748,7 @@ <translation>Mód:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> <source>Disabled</source> <translation>Vypnuto</translation> </message> @@ -13455,7 +13532,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.py" line="339"/> + <location filename="../UI/EmailDialog.ui" line="13"/> <source>Send bug report</source> <translation>Odeslat hlášení o chybách</translation> </message> @@ -14900,12 +14977,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> <source>Host</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> <source>Permission</source> <translation type="unfinished"></translation> </message> @@ -14920,7 +14997,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> <source>Geolocation</source> <translation type="unfinished"></translation> </message> @@ -16064,7 +16141,7 @@ <translation type="unfinished">Jméno:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> <source><no flash cookie selected></source> <translation type="unfinished"></translation> </message> @@ -16074,7 +16151,7 @@ <translation type="unfinished">Velikost:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> <source>Origin:</source> <translation type="unfinished"></translation> </message> @@ -16109,7 +16186,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> <source>Remove Cookie</source> <translation type="unfinished"></translation> </message> @@ -16535,7 +16612,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> <source>GreaseMonkey Script Installation</source> <translation type="unfinished"></translation> </message> @@ -22232,7 +22309,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> <source>Add Sub-repository</source> <translation type="unfinished"></translation> </message> @@ -23317,7 +23394,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> <source>Resolved</source> <translation type="unfinished"></translation> </message> @@ -23327,7 +23404,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> <source>Unresolved</source> <translation type="unfinished"></translation> </message> @@ -23951,7 +24028,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> <source>Revision</source> <translation type="unfinished">Revize</translation> </message> @@ -24230,7 +24307,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> <source>Mercurial Log</source> <translation></translation> </message> @@ -24260,17 +24337,17 @@ <translation>Vybrat pole pro filtrování</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> <source>Revision</source> <translation>Revize</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> <source>Author</source> <translation>Autor</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> <source>Message</source> <translation>Zpráva</translation> </message> @@ -28137,7 +28214,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> <source>Mercurial Status</source> <translation>Mercurial status</translation> </message> @@ -28278,7 +28355,7 @@ <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> <source>Commit</source> <translation>Zapsat měny</translation> </message> @@ -28398,7 +28475,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> <source>Differences</source> <translation type="unfinished"></translation> </message> @@ -29165,7 +29242,7 @@ <translation>Stisknout pro odebrání vybraných položek</translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> + <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> <source>&Remove</source> <translation>Odeb&rat</translation> </message> @@ -35044,92 +35121,92 @@ <translation>Standardní tlačítka</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> <source>Apply</source> <translation>Použít</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> <source>Abort</source> <translation>Přerušit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> <source>Cancel</source> <translation>Zrušit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> <source>Ignore</source> <translation>Ignorovat</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> <source>Save all</source> <translation>Uložit vše</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> <source>Discard</source> <translation>Zahodit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> <source>Yes to all</source> <translation>Ano pro všechno</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> <source>Open</source> <translation>Otevřít</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> <source>Reset</source> <translation>Reset</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> <source>No</source> <translation>Ne</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> <source>Help</source> <translation>Pomoc</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> <source>No to all</source> <translation>Ne pro všechno</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> <source>Retry</source> <translation>Vrátit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> <source>Restore defaults</source> <translation>Obnovit defaulty</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> <source>Yes</source> <translation>Ano</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> <source>Close</source> <translation>Zavřít</translation> </message> @@ -36879,7 +36956,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> <source>Not Cached Hosts</source> <translation type="unfinished"></translation> </message> @@ -36987,7 +37064,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> <source>Visual Selection</source> <translation type="unfinished"></translation> </message> @@ -37658,7 +37735,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> <source>Saved Passwords</source> <translation>Uložená hesla</translation> </message> @@ -39415,7 +39492,7 @@ <translation>Chcete editovat parametry VCS příkazu?</translation> </message> <message> - <location filename="../Project/Project.py" line="3439"/> + <location filename="../Project/Project.py" line="3441"/> <source>New project</source> <translation>Nový projekt</translation> </message> @@ -39430,7 +39507,7 @@ <translation>Výběr verzovacího systému projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3453"/> + <location filename="../Project/Project.py" line="3455"/> <source>Open project</source> <translation>Otevřít projekt</translation> </message> @@ -39440,7 +39517,7 @@ <translation>Soubory projektu (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3490"/> + <location filename="../Project/Project.py" line="3492"/> <source>Save project as</source> <translation>Uložit projekt jako</translation> </message> @@ -39460,12 +39537,12 @@ <translation>Aktuální projekt obsahuje neuložené změny.</translation> </message> <message> - <location filename="../Project/Project.py" line="3031"/> + <location filename="../Project/Project.py" line="3033"/> <source>Syntax errors detected</source> <translation>Zjištěny syntaktické chyby</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3031"/> + <location filename="../Project/Project.py" line="3033"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Projekt obsahuje %n soubor se syntaktickými chybami.</numerusform> @@ -39474,587 +39551,587 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3439"/> + <location filename="../Project/Project.py" line="3441"/> <source>&New...</source> <translation>&Nový...</translation> </message> <message> - <location filename="../Project/Project.py" line="3444"/> + <location filename="../Project/Project.py" line="3446"/> <source>Generate a new project</source> <translation>Vygenerovat nový projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3445"/> + <location filename="../Project/Project.py" line="3447"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nový...</b><p>Otevře se dialogové okno pro zadání informací o novém projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3453"/> + <location filename="../Project/Project.py" line="3455"/> <source>&Open...</source> <translation>&Otevřít...</translation> </message> <message> - <location filename="../Project/Project.py" line="3458"/> + <location filename="../Project/Project.py" line="3460"/> <source>Open an existing project</source> <translation>Otevřít existující projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3459"/> + <location filename="../Project/Project.py" line="3461"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Otevřít....</b><p>Otevře existující projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3466"/> + <location filename="../Project/Project.py" line="3468"/> <source>Close project</source> <translation>Zavřít projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3466"/> + <location filename="../Project/Project.py" line="3468"/> <source>&Close</source> <translation>&Zavřít</translation> </message> <message> - <location filename="../Project/Project.py" line="3470"/> + <location filename="../Project/Project.py" line="3472"/> <source>Close the current project</source> <translation>Uzavře aktuální projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3471"/> + <location filename="../Project/Project.py" line="3473"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Zavřít</b><p>Aktuální projekt se uzavře.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3478"/> + <location filename="../Project/Project.py" line="3480"/> <source>Save project</source> <translation>Uložit projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3669"/> + <location filename="../Project/Project.py" line="3671"/> <source>&Save</source> <translation>&Uložit</translation> </message> <message> - <location filename="../Project/Project.py" line="3482"/> + <location filename="../Project/Project.py" line="3484"/> <source>Save the current project</source> <translation>Uložit aktuální projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3483"/> + <location filename="../Project/Project.py" line="3485"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Uložit</b><p>Aktuální projekt se uloží.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3490"/> + <location filename="../Project/Project.py" line="3492"/> <source>Save &as...</source> <translation>Uložit j&ako...</translation> </message> <message> - <location filename="../Project/Project.py" line="3494"/> - <source>Save the current project to a new file</source> - <translation>Uloží aktuální projekt do nového souboru</translation> - </message> - <message> <location filename="../Project/Project.py" line="3496"/> + <source>Save the current project to a new file</source> + <translation>Uloží aktuální projekt do nového souboru</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3498"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Uložit jako</b><p>Uloží aktuální projekt do nového souboru.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3505"/> + <location filename="../Project/Project.py" line="3507"/> <source>Add files to project</source> <translation>Přidat soubory do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3505"/> + <location filename="../Project/Project.py" line="3507"/> <source>Add &files...</source> <translation>&Přidat soubory...</translation> </message> <message> - <location filename="../Project/Project.py" line="3510"/> - <source>Add files to the current project</source> - <translation>Přidat soubory do aktuálního projektu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3512"/> + <source>Add files to the current project</source> + <translation>Přidat soubory do aktuálního projektu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3514"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Přidat soubory...</b><p>Otevře dialog pri přidání souborů do aktuálního projektu. Místo pro přidání je definováno extenzí souborů.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3521"/> + <location filename="../Project/Project.py" line="3523"/> <source>Add directory to project</source> <translation>Přidat adresář do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3521"/> + <location filename="../Project/Project.py" line="3523"/> <source>Add directory...</source> <translation>Přidat adresář...</translation> </message> <message> - <location filename="../Project/Project.py" line="3526"/> - <source>Add a directory to the current project</source> - <translation>Přidat adresář do aktuálního projektu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3528"/> + <source>Add a directory to the current project</source> + <translation>Přidat adresář do aktuálního projektu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3530"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Přidat adresář...</b><p>Otevře dialog pro přičtení adresáře do aktuálního projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3536"/> + <location filename="../Project/Project.py" line="3538"/> <source>Add translation to project</source> <translation>Přidat překlad do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3536"/> + <location filename="../Project/Project.py" line="3538"/> <source>Add &translation...</source> <translation>Přida&t překlad...</translation> </message> <message> - <location filename="../Project/Project.py" line="3541"/> - <source>Add a translation to the current project</source> - <translation>Přidat překlad do aktuálního projektu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3543"/> + <source>Add a translation to the current project</source> + <translation>Přidat překlad do aktuálního projektu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3545"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Přidat překlad</b><p>Otevře dialog pro přidání překladu do aktuálního projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3551"/> + <location filename="../Project/Project.py" line="3553"/> <source>Search new files</source> <translation>Hledat nové soubory</translation> </message> <message> - <location filename="../Project/Project.py" line="3551"/> + <location filename="../Project/Project.py" line="3553"/> <source>Searc&h new files...</source> <translation>&Hledat nové soubory...</translation> </message> <message> - <location filename="../Project/Project.py" line="3555"/> - <source>Search new files in the project directory.</source> - <translation>Hledat nové soubory v adresáři projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3557"/> + <source>Search new files in the project directory.</source> + <translation>Hledat nové soubory v adresáři projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3559"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation><b>Hledat nové soubory...</b><p>Hledají se nové soubory (zdrojové, *.ui, *.idl) v adresáři projektu a v registrovaných podadresářích.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3580"/> + <location filename="../Project/Project.py" line="3582"/> <source>Project properties</source> <translation>Nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3580"/> + <location filename="../Project/Project.py" line="3582"/> <source>&Properties...</source> <translation>&Natavení...</translation> </message> <message> - <location filename="../Project/Project.py" line="3585"/> + <location filename="../Project/Project.py" line="3587"/> <source>Show the project properties</source> <translation>Zobrazit nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3586"/> + <location filename="../Project/Project.py" line="3588"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Nastavení...</b><p>Zobrazí dialog s editací nastavení projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3593"/> + <location filename="../Project/Project.py" line="3595"/> <source>User project properties</source> <translation>Uživatelská nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3593"/> + <location filename="../Project/Project.py" line="3595"/> <source>&User Properties...</source> <translation>Uživat&elská nastavení...</translation> </message> <message> - <location filename="../Project/Project.py" line="3598"/> - <source>Show the user specific project properties</source> - <translation>Zobrazit uživatelem definovaná nastavení projektu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3600"/> + <source>Show the user specific project properties</source> + <translation>Zobrazit uživatelem definovaná nastavení projektu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3602"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Uživatelská nastavení...</b><p>Zobrazí dialog s editací uživatelských nastavení projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3608"/> + <location filename="../Project/Project.py" line="3610"/> <source>Filetype Associations</source> <translation>Asociace typů souborů</translation> </message> <message> - <location filename="../Project/Project.py" line="3608"/> + <location filename="../Project/Project.py" line="3610"/> <source>Filetype Associations...</source> <translation>Asociace typů souborů...</translation> </message> <message> - <location filename="../Project/Project.py" line="3612"/> - <source>Show the project filetype associations</source> - <translation>Zobrazit asociace typů souborů</translation> - </message> - <message> <location filename="../Project/Project.py" line="3614"/> + <source>Show the project filetype associations</source> + <translation>Zobrazit asociace typů souborů</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3616"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Asociace typů souborů...</b><p>Zobrazí se dialog s editací asociace typů souborů v projektu. Na základě vzorku souborového jména tyto asociace určují typ souboru (zdrojový kód, formulář, interface nebo jiné). Tyto asociace jsou použity při přidávání souborů do projektu a při vyhledávání.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3644"/> + <location filename="../Project/Project.py" line="3646"/> <source>Debugger Properties</source> <translation>Nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3644"/> + <location filename="../Project/Project.py" line="3646"/> <source>Debugger &Properties...</source> <translation>Nastavení &debuggeru...</translation> </message> <message> - <location filename="../Project/Project.py" line="3648"/> + <location filename="../Project/Project.py" line="3650"/> <source>Show the debugger properties</source> <translation>Zobrazit nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3649"/> + <location filename="../Project/Project.py" line="3651"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Nastavení debugeru...</b><p>Zobrazí dialog s editací nastavení debugeru.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3657"/> + <location filename="../Project/Project.py" line="3659"/> <source>Load</source> <translation>Načíst</translation> </message> <message> - <location filename="../Project/Project.py" line="3657"/> + <location filename="../Project/Project.py" line="3659"/> <source>&Load</source> <translation>&Načíst</translation> </message> <message> - <location filename="../Project/Project.py" line="3661"/> + <location filename="../Project/Project.py" line="3663"/> <source>Load the debugger properties</source> <translation>Načíst nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3662"/> + <location filename="../Project/Project.py" line="3664"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Načíst nastavení debugeru</b><p>Načtou se nastavení debugeru do projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3669"/> + <location filename="../Project/Project.py" line="3671"/> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../Project/Project.py" line="3673"/> + <location filename="../Project/Project.py" line="3675"/> <source>Save the debugger properties</source> <translation>Uložit nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3674"/> + <location filename="../Project/Project.py" line="3676"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Uložit nastavení debugeru</b><p>Uloží nastavení debugeru definovaná v projektu..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3681"/> + <location filename="../Project/Project.py" line="3683"/> <source>Delete</source> <translation>Smazat</translation> </message> <message> - <location filename="../Project/Project.py" line="3681"/> + <location filename="../Project/Project.py" line="3683"/> <source>&Delete</source> <translation>Sma&zat</translation> </message> <message> - <location filename="../Project/Project.py" line="3685"/> + <location filename="../Project/Project.py" line="3687"/> <source>Delete the debugger properties</source> <translation>Smazat nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3686"/> + <location filename="../Project/Project.py" line="3688"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Smazat nastavení debugeru</b><p>Smaže se soubor obsahující nastavení debugeru v daném projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3694"/> + <location filename="../Project/Project.py" line="3696"/> <source>Reset</source> <translation></translation> </message> <message> - <location filename="../Project/Project.py" line="3694"/> + <location filename="../Project/Project.py" line="3696"/> <source>&Reset</source> <translation>&Reset</translation> </message> <message> - <location filename="../Project/Project.py" line="3698"/> + <location filename="../Project/Project.py" line="3700"/> <source>Reset the debugger properties</source> <translation>Reset nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3699"/> + <location filename="../Project/Project.py" line="3701"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Reset nastavení debugeru</b><p>Zresetuje nastavení debugeru v projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3708"/> + <location filename="../Project/Project.py" line="3710"/> <source>Load session</source> <translation>Načíst relaci</translation> </message> <message> - <location filename="../Project/Project.py" line="3712"/> + <location filename="../Project/Project.py" line="3714"/> <source>Load the projects session file.</source> <translation>Načíst soubor s relací projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="3713"/> + <location filename="../Project/Project.py" line="3715"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Načíst relaci</b><p>Načte soubor s relací projektu. Relace obsahuje následující údaje:<br>- všechny otevřené zdrojové soubory<br>- všechny breakpointy<br>- argumenty příkazové řádky <br>- pracovní adresář<br>- příznak výjimky</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3726"/> + <location filename="../Project/Project.py" line="3728"/> <source>Save session</source> <translation>Uložit relaci</translation> </message> <message> - <location filename="../Project/Project.py" line="3730"/> + <location filename="../Project/Project.py" line="3732"/> <source>Save the projects session file.</source> <translation>Uložit soubor s relací projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="3731"/> + <location filename="../Project/Project.py" line="3733"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Uložit relaci</b><p>Uloží soubor s relací projektu. Relace obsahuje následující údaje:<br>- všechny otevřené zdrojové soubory<br>- všechny breakpointy<br>- argumenty příkazové řádky <br>- pracovní adresář<br>- příznak výjimky</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3744"/> + <location filename="../Project/Project.py" line="3746"/> <source>Delete session</source> <translation>Smazat relaci</translation> </message> <message> - <location filename="../Project/Project.py" line="3748"/> + <location filename="../Project/Project.py" line="3750"/> <source>Delete the projects session file.</source> <translation>Smaže soubor s relací projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="3749"/> + <location filename="../Project/Project.py" line="3751"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Smazat relaci</b><p>Smaže soubor s relací projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3758"/> + <location filename="../Project/Project.py" line="3760"/> <source>Code Metrics</source> <translation>Metriky kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="3758"/> + <location filename="../Project/Project.py" line="3760"/> <source>&Code Metrics...</source> <translation>Metriky &kódu...</translation> </message> <message> - <location filename="../Project/Project.py" line="3762"/> - <source>Show some code metrics for the project.</source> - <translation>Zobrazit metriky kódu projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3764"/> + <source>Show some code metrics for the project.</source> + <translation>Zobrazit metriky kódu projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3766"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Metriky kódu...</b><p>Zobrazí se metriky kódu všech python souborů v projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3772"/> + <location filename="../Project/Project.py" line="3774"/> <source>Python Code Coverage</source> <translation>Pokrytí python kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="3772"/> + <location filename="../Project/Project.py" line="3774"/> <source>Code Co&verage...</source> <translation>Pokr&ytí kódu...</translation> </message> <message> - <location filename="../Project/Project.py" line="3776"/> - <source>Show code coverage information for the project.</source> - <translation>Zobrazit informace pokrytí kódu projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3778"/> + <source>Show code coverage information for the project.</source> + <translation>Zobrazit informace pokrytí kódu projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3780"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Pokrytí kódu...</b><p>Zobrazí informace o pokrytí kódu ve všech python souborech projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4562"/> + <location filename="../Project/Project.py" line="4564"/> <source>Profile Data</source> <translation>Profilovat data</translation> </message> <message> - <location filename="../Project/Project.py" line="3786"/> + <location filename="../Project/Project.py" line="3788"/> <source>&Profile Data...</source> <translation>&Profilovat data...</translation> </message> <message> - <location filename="../Project/Project.py" line="3790"/> - <source>Show profiling data for the project.</source> - <translation>Zobrazit profilování dat projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3792"/> + <source>Show profiling data for the project.</source> + <translation>Zobrazit profilování dat projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3794"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profilovat data</b><p>Zobrazí se profilování dat projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4616"/> + <location filename="../Project/Project.py" line="4618"/> <source>Application Diagram</source> <translation>Diagram aplikace</translation> </message> <message> - <location filename="../Project/Project.py" line="3801"/> + <location filename="../Project/Project.py" line="3803"/> <source>&Application Diagram...</source> <translation>Diagram &aplikace...</translation> </message> <message> - <location filename="../Project/Project.py" line="3805"/> - <source>Show a diagram of the project.</source> - <translation>Zobrazit diagram projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3807"/> + <source>Show a diagram of the project.</source> + <translation>Zobrazit diagram projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3809"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagram aplikace...</b><p>Zobrazí diagram projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3898"/> - <source>&Project</source> - <translation>&Projekt</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3899"/> - <source>Open &Recent Projects</source> - <translation>Otevřít poslední p&rojekty</translation> - </message> - <message> <location filename="../Project/Project.py" line="3900"/> + <source>&Project</source> + <translation>&Projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3901"/> + <source>Open &Recent Projects</source> + <translation>Otevřít poslední p&rojekty</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3902"/> <source>&Version Control</source> <translation>Kontrola &verzí</translation> </message> <message> - <location filename="../Project/Project.py" line="3904"/> - <source>Chec&k</source> - <translation>Zkontro&lovat</translation> - </message> - <message> <location filename="../Project/Project.py" line="3906"/> - <source>Sho&w</source> - <translation>Zo&brazit</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3907"/> - <source>&Diagrams</source> - <translation>&Diagramy</translation> + <source>Chec&k</source> + <translation>Zkontro&lovat</translation> </message> <message> <location filename="../Project/Project.py" line="3908"/> - <source>Session</source> - <translation>Relace</translation> + <source>Sho&w</source> + <translation>Zo&brazit</translation> </message> <message> <location filename="../Project/Project.py" line="3909"/> - <source>Source &Documentation</source> - <translation>Zd&rojová dokumentace</translation> + <source>&Diagrams</source> + <translation>&Diagramy</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3910"/> + <source>Session</source> + <translation>Relace</translation> </message> <message> <location filename="../Project/Project.py" line="3911"/> + <source>Source &Documentation</source> + <translation>Zd&rojová dokumentace</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3913"/> <source>Debugger</source> <translation></translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3914"/> <source>Pac&kagers</source> <translation>Balíč&ky</translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> + <location filename="../Project/Project.py" line="4022"/> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4086"/> + <location filename="../Project/Project.py" line="4088"/> <source>&Clear</source> <translation>&Vyčistit</translation> </message> <message> - <location filename="../Project/Project.py" line="4225"/> + <location filename="../Project/Project.py" line="4227"/> <source>Search New Files</source> <translation>Hledat nové soubory</translation> </message> <message> - <location filename="../Project/Project.py" line="4225"/> + <location filename="../Project/Project.py" line="4227"/> <source>There were no new files found to be added.</source> <translation>Nebyly nalezeny žádné soubory, které je možné přidat.</translation> </message> <message> - <location filename="../Project/Project.py" line="4371"/> + <location filename="../Project/Project.py" line="4373"/> <source>Version Control System</source> <translation>Version Control System</translation> </message> <message> - <location filename="../Project/Project.py" line="4489"/> + <location filename="../Project/Project.py" line="4491"/> <source>Coverage Data</source> <translation>Datové pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="4539"/> + <location filename="../Project/Project.py" line="4541"/> <source>There is no main script defined for the current project. Aborting</source> <translation>V aktuálním projektu nebyl určen hlavní skript. Zrušeno</translation> </message> <message> - <location filename="../Project/Project.py" line="4512"/> + <location filename="../Project/Project.py" line="4514"/> <source>Code Coverage</source> <translation>Pokrytí kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="4512"/> + <location filename="../Project/Project.py" line="4514"/> <source>Please select a coverage file</source> <translation>Prosím, vyberte soubor pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="4562"/> + <location filename="../Project/Project.py" line="4564"/> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="../Project/Project.py" line="4616"/> + <location filename="../Project/Project.py" line="4618"/> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> <message> - <location filename="../Project/Project.py" line="4774"/> + <location filename="../Project/Project.py" line="4776"/> <source>Create Package List</source> <translation>Vytvořit seznam balíčků</translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> + <location filename="../Project/Project.py" line="3832"/> <source>Create &Package List</source> <translation>Vytvořit seznam &balíčků</translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4968"/> <source>Create Plugin Archive</source> <translation>Vytvořit Plugin archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> + <location filename="../Project/Project.py" line="3848"/> <source>Create Plugin &Archive</source> <translation>Vytvořit Plugin &archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="4734"/> + <location filename="../Project/Project.py" line="4736"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Soubor <b>PKGLIST</b> již existuje.</p><p>Přepsat jej?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4794"/> + <location filename="../Project/Project.py" line="4796"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation><p>Soubor <b>PKGLIST</b> neexistuje. Zrušeno...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4802"/> + <location filename="../Project/Project.py" line="4804"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Projekt nemá definován hlavní skript. Zrušeno...</translation> </message> @@ -40079,12 +40156,12 @@ <translation>Zaregistrovat typ projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3862"/> + <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (Snapshot)</source> <translation>Vytvořit archiv pluginů (snímek)</translation> </message> <message> - <location filename="../Project/Project.py" line="3862"/> + <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (&Snapshot)</source> <translation>Vytvořit archiv pluginů (&snímek)</translation> </message> @@ -40104,22 +40181,22 @@ <translation>Zadejte vzor cesty pro soubory s překlady (použijte '%language%' na místě s kódem jazyka):</translation> </message> <message> - <location filename="../Project/Project.py" line="3626"/> + <location filename="../Project/Project.py" line="3628"/> <source>Lexer Associations</source> <translation>Spojení lexeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3626"/> + <location filename="../Project/Project.py" line="3628"/> <source>Lexer Associations...</source> <translation>Spojení lexeru...</translation> </message> <message> - <location filename="../Project/Project.py" line="3630"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Zobrazit spojení lexeru projektu (přepíše výchozí)</translation> - </message> - <message> <location filename="../Project/Project.py" line="3632"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Zobrazit spojení lexeru projektu (přepíše výchozí)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3634"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Spojení lexeru...</b><p>Zobrazuje dialog s editací spojení lexeru projektu. Tato spojení přepisují globální lexer spojení. Lexer je použit pro zvýraznění textu v editoru.</p></translation> </message> @@ -40234,27 +40311,27 @@ <translation><p>Adresář projektu <b>{0}</b> nelze vytvořit.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4371"/> + <location filename="../Project/Project.py" line="4373"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Vybrané VCS <b>{0}</b> nebylo nalezeno.<br/>Kontrola verzí vypnuta.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4774"/> + <location filename="../Project/Project.py" line="4776"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Soubor <b>PKGLIST</b> nelze vytvořit.</p><p>Důvod: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4816"/> + <location filename="../Project/Project.py" line="4818"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation><p>Soubor <b>PKGLIST</b> nelze načíst.</p><p>Důvod: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4855"/> + <location filename="../Project/Project.py" line="4857"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nelze uložit do archivu. Ingorováno.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4924"/> + <location filename="../Project/Project.py" line="4926"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Plugin soubor <b>{0}</b> nelze přečíst.</p><p>Důvod: {1}</p></translation> </message> @@ -40284,22 +40361,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3817"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3817"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> - <source>Load a diagram from file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3821"/> + <source>Load a diagram from file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3823"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> @@ -40329,52 +40406,52 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4359"/> + <location filename="../Project/Project.py" line="4361"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4968"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3835"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation type="unfinished">Vytvořit počáteční soubor PKGLIST pro eric5 plugin. {6 ?}</translation> - </message> - <message> <location filename="../Project/Project.py" line="3837"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation type="unfinished">Vytvořit počáteční soubor PKGLIST pro eric5 plugin. {6 ?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3839"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"><b>Vytvořit seznam balíčků</b><p>Vytvoří počáteční seznam souborů pro vložení do eric5 plugin archivu. Seznam je vytvořen ze souboru projektu.</p> {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="3851"/> - <source>Create an eric6 plugin archive file.</source> - <translation type="unfinished">Vytvořit soubor eric5 plugin archivu. {6 ?}</translation> - </message> - <message> <location filename="../Project/Project.py" line="3853"/> + <source>Create an eric6 plugin archive file.</source> + <translation type="unfinished">Vytvořit soubor eric5 plugin archivu. {6 ?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3855"/> <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> <translation type="unfinished"><b>Vytvořit Plugin archiv</b><p>Vytvoří soubor s eric5 plugin archivem za použití seznamu souborů daných v PKGLIST souboru. Jméno archivu je odvozeno ze jména hlavního skriptu.</p> {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="3867"/> - <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation type="unfinished">Vytvoří se soubor eric5 plugin archívu (snímek vydání). {6 ?}</translation> - </message> - <message> <location filename="../Project/Project.py" line="3869"/> + <source>Create an eric6 plugin archive file (snapshot release).</source> + <translation type="unfinished">Vytvoří se soubor eric5 plugin archívu (snímek vydání). {6 ?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"><b>Vytvořit Plugin archiv (Snímek)</b><p>Vytvoří soubor s eric5 plugin archivem za použití seznamu souborů daných v PKGLIST souboru. Údaj o verzi hlavního skriptu je změněn v souladu se snímkem vydání.</p> {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4829"/> + <location filename="../Project/Project.py" line="4831"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"><p>Soubor s eric5 plugin archivem <b>{0}</b> nelze vytvořit. Zrušeno...</p><p>Důvod: {1}</p> {6 ?} {0}?} {1}?}</translation> </message> <message> - <location filename="../Project/Project.py" line="4878"/> + <location filename="../Project/Project.py" line="4880"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation type="unfinished"><p>Soubor s eric5 plugin archivem <b>{0}</b> byl úspěšně vytvořen.</p> {6 ?} {0}?}</translation> </message> @@ -40404,28 +40481,28 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3565"/> + <location filename="../Project/Project.py" line="3567"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3571"/> - <source>Search for a file in the project list of files.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3573"/> + <source>Search for a file in the project list of files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3575"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3565"/> + <location filename="../Project/Project.py" line="3567"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3565"/> + <location filename="../Project/Project.py" line="3567"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> @@ -42431,7 +42508,7 @@ <translation>Vykonáno</translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="349"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> <source>Coverage</source> <translation>Pokrytí</translation> </message> @@ -42512,7 +42589,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="345"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> @@ -42520,7 +42597,7 @@ <context> <name>PyProfileDialog</name> <message> - <location filename="../DataViews/PyProfileDialog.py" line="233"/> + <location filename="../DataViews/PyProfileDialog.ui" line="20"/> <source>Profile Results</source> <translation>Výsledky profilování</translation> </message> @@ -47138,7 +47215,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> <source>Remove Filters</source> <translation type="unfinished"></translation> </message> @@ -47148,7 +47225,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> <source>Remove Attributes</source> <translation type="unfinished"></translation> </message> @@ -48616,7 +48693,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> <source>Send Referer Whitelist</source> <translation type="unfinished"></translation> </message> @@ -49818,7 +49895,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Snapshot/SnapWidget.py" line="531"/> + <location filename="../Snapshot/SnapWidget.ui" line="20"/> <source>eric6 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -52397,7 +52474,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> <source>Subversion Diff</source> <translation></translation> </message> @@ -52674,12 +52751,12 @@ <translation></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> <source>Revision</source> <translation>Revize</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> <source>Author</source> <translation>Autor</translation> </message> @@ -52689,7 +52766,7 @@ <translation>Datum</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> <source>Message</source> <translation>Zpráva</translation> </message> @@ -53161,7 +53238,7 @@ <translation>Prot&otokol:</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -53273,7 +53350,7 @@ <translation>Výběr protokolu pro přístup do repozitáře</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -54517,7 +54594,7 @@ <context> <name>SvnStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> <source>Subversion Status</source> <translation></translation> </message> @@ -54764,7 +54841,7 @@ <translation>Chyba v procesu generování</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> <source>Commit</source> <translation>Commit</translation> </message> @@ -58019,158 +58096,158 @@ <context> <name>TaskViewer</name> <message> - <location filename="../Tasks/TaskViewer.py" line="57"/> + <location filename="../Tasks/TaskViewer.py" line="58"/> <source>Filename</source> <translation>Jméno souboru</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="57"/> + <location filename="../Tasks/TaskViewer.py" line="58"/> <source>Line</source> <translation>Řádek</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="134"/> + <location filename="../Tasks/TaskViewer.py" line="137"/> <source>&New Task...</source> <translation>&Nová úloha...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="100"/> - <source>&Go To</source> - <translation>&Jít na</translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="103"/> + <source>&Go To</source> + <translation>&Jít na</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="106"/> <source>&Copy</source> <translation>&Kopírovat</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="139"/> + <location filename="../Tasks/TaskViewer.py" line="142"/> <source>&Paste</source> <translation>V&ložit</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="109"/> - <source>&Delete</source> - <translation>Sma&zat</translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="112"/> + <source>&Delete</source> + <translation>Sma&zat</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="115"/> <source>&Mark Completed</source> <translation>Značka &Hotovo</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="144"/> - <source>Delete Completed &Tasks</source> - <translation>Smaza&t hotové úlohy</translation> - </message> - <message> - <location filename="../Tasks/TaskViewer.py" line="117"/> - <source>P&roperties...</source> - <translation>&Natavení...</translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="147"/> + <source>Delete Completed &Tasks</source> + <translation>Smaza&t hotové úlohy</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="120"/> + <source>P&roperties...</source> + <translation>&Natavení...</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="150"/> <source>&Filtered display</source> <translation>&Filtrovaný výstup</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="153"/> - <source>Filter c&onfiguration...</source> - <translation>Konfigura&ce filtru...</translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="156"/> - <source>Resi&ze columns</source> - <translation>&Změnit šířky sloupců</translation> - </message> - <message> - <location filename="../Tasks/TaskViewer.py" line="627"/> - <source>Activate task filter</source> - <translation>Aktivovat filtr úloh</translation> - </message> - <message> - <location filename="../Tasks/TaskViewer.py" line="627"/> - <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source> - <translation>Filtr úloh nemá žádný aktivní. Chcete konfigurovat nastavení filtru?</translation> - </message> - <message> - <location filename="../Tasks/TaskViewer.py" line="84"/> - <source>&Regenerate project tasks</source> - <translation>Znovu vygene&rovat úlohy projektu</translation> - </message> - <message> - <location filename="../Tasks/TaskViewer.py" line="697"/> - <source>Extracting project tasks...</source> - <translation>Extrahovat úlohy projektu...</translation> - </message> - <message> - <location filename="../Tasks/TaskViewer.py" line="697"/> - <source>Abort</source> - <translation>Přerušit</translation> - </message> - <message> - <location filename="../Tasks/TaskViewer.py" line="57"/> - <source>Summary</source> - <translation>Souhrn</translation> + <source>Filter c&onfiguration...</source> + <translation>Konfigura&ce filtru...</translation> </message> <message> <location filename="../Tasks/TaskViewer.py" line="159"/> + <source>Resi&ze columns</source> + <translation>&Změnit šířky sloupců</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="630"/> + <source>Activate task filter</source> + <translation>Aktivovat filtr úloh</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="630"/> + <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source> + <translation>Filtr úloh nemá žádný aktivní. Chcete konfigurovat nastavení filtru?</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="87"/> + <source>&Regenerate project tasks</source> + <translation>Znovu vygene&rovat úlohy projektu</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="704"/> + <source>Extracting project tasks...</source> + <translation>Extrahovat úlohy projektu...</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="704"/> + <source>Abort</source> + <translation>Přerušit</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="58"/> + <source>Summary</source> + <translation>Souhrn</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="162"/> <source>Configure...</source> <translation>Konfigurovat...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="706"/> + <location filename="../Tasks/TaskViewer.py" line="713"/> <source>Extracting project tasks... {0}</source> <translation>Extrahování úloh projektu....{0}</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="88"/> + <location filename="../Tasks/TaskViewer.py" line="91"/> <source>&Configure scan options</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="659"/> + <location filename="../Tasks/TaskViewer.py" line="662"/> <source>Scan Filter Patterns</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="659"/> + <location filename="../Tasks/TaskViewer.py" line="662"/> <source>Enter filename patterns of files to be excluded separated by a comma:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="82"/> + <location filename="../Tasks/TaskViewer.py" line="85"/> <source>P&roject Tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="697"/> + <location filename="../Tasks/TaskViewer.py" line="704"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="701"/> + <location filename="../Tasks/TaskViewer.py" line="708"/> <source>Tasks</source> <translation type="unfinished">Úlohy</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="94"/> + <location filename="../Tasks/TaskViewer.py" line="97"/> <source>New &Sub-Task...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="141"/> + <location filename="../Tasks/TaskViewer.py" line="144"/> <source>Paste as &Main Task</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="176"/> + <location filename="../Tasks/TaskViewer.py" line="179"/> <source>Extracted Tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="178"/> + <location filename="../Tasks/TaskViewer.py" line="181"/> <source>Manual Tasks</source> <translation type="unfinished"></translation> </message> @@ -60074,7 +60151,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="400"/> + <location filename="../PyUnit/UnittestDialog.ui" line="14"/> <source>Unittest</source> <translation></translation> </message>
--- a/i18n/eric6_de.ts Sat Sep 03 19:00:12 2016 +0200 +++ b/i18n/eric6_de.ts Sat Sep 03 19:20:42 2016 +0200 @@ -5228,7 +5228,7 @@ <translation>Verbindung von ungültigem Rechner</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1352"/> + <location filename="../Debugger/DebugServer.py" line="1337"/> <source> Not connected </source> @@ -5242,14 +5242,14 @@ <translation><p>Es wurde versucht, eine Verbindung von dem nicht zugelassenen Rechner <b>{0}</b> aufzubauen. Soll die Verbindung angenommen werden?</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1532"/> + <location filename="../Debugger/DebugServer.py" line="1517"/> <source>Passive debug connection received </source> <translation>Verbindung für passives Debuggen empfangen </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1546"/> + <location filename="../Debugger/DebugServer.py" line="1531"/> <source>Passive debug connection closed </source> <translation>Verbindung für passives Debuggen geschlossen @@ -5269,669 +5269,637 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1752"/> <source>Run Script</source> <translation>Skript ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="176"/> + <location filename="../Debugger/DebugUI.py" line="173"/> <source>&Run Script...</source> <translation>&Skript ausführen …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="181"/> + <location filename="../Debugger/DebugUI.py" line="178"/> <source>Run the current Script</source> <translation>Das aktuelle Skript ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1795"/> + <location filename="../Debugger/DebugUI.py" line="1767"/> <source>Run Project</source> <translation>Projekt ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="191"/> + <location filename="../Debugger/DebugUI.py" line="188"/> <source>Run &Project...</source> <translation>Projekt &ausführen …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="196"/> + <location filename="../Debugger/DebugUI.py" line="193"/> <source>Run the current Project</source> <translation>Das aktuelle Projekt ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="333"/> + <location filename="../Debugger/DebugUI.py" line="330"/> <source>Continue</source> <translation>Weiter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="333"/> + <location filename="../Debugger/DebugUI.py" line="330"/> <source>&Continue</source> <translation>&Weiter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="338"/> + <location filename="../Debugger/DebugUI.py" line="335"/> <source>Continue running the program from the current line</source> <translation>Führe das laufende Programm ab der aktuellen Zeile weiter aus</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="340"/> + <location filename="../Debugger/DebugUI.py" line="337"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Weiter</b><p>Führe das laufende Programm ab der aktuellen Zeile weiter aus. Das Programm wird angehalten, wenn es das Ende oder einen Haltepunkt erreicht.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="365"/> + <location filename="../Debugger/DebugUI.py" line="362"/> <source>Single Step</source> <translation>Einzelschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="370"/> + <location filename="../Debugger/DebugUI.py" line="367"/> <source>Execute a single Python statement</source> <translation>Führe eine einzelne Python-Anweisung aus</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="371"/> + <location filename="../Debugger/DebugUI.py" line="368"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>Einzelschritt</b><p>Führe eine einzelne Python-Anweisung aus. Ist die Anweisung eine <tt>import</tt>-Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle bei der nächsten Anweisung an den Debugger zurückgegeben.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="381"/> + <location filename="../Debugger/DebugUI.py" line="378"/> <source>Step Over</source> <translation>Prozedurschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="381"/> + <location filename="../Debugger/DebugUI.py" line="378"/> <source>Step &Over</source> <translation>&Prozedurschritt</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="383"/> + <source>Execute a single Python statement staying in the current frame</source> + <translation>Führe eine einzelne Python-Anweisung aus, bleibe aber in der aktuellen Ebene</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="386"/> - <source>Execute a single Python statement staying in the current frame</source> - <translation>Führe eine einzelne Python-Anweisung aus, bleibe aber in der aktuellen Ebene</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="389"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation><b>Prozedurschritt</b><p>Führe eine einzelne Python-Anweisung aus, bleibe jedoch in der aktuellen Ebene. Ist die Anweisung eine <tt>import</tt>-Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle nach Beendigung der Anweisung an den Debugger zurückgegeben.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="400"/> + <location filename="../Debugger/DebugUI.py" line="397"/> <source>Step Out</source> <translation>Rückschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="400"/> + <location filename="../Debugger/DebugUI.py" line="397"/> <source>Step Ou&t</source> <translation>&Rückschritt</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="402"/> + <source>Execute Python statements until leaving the current frame</source> + <translation>Führe Python-Anweisung bis zum Rücksprung aus</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="405"/> - <source>Execute Python statements until leaving the current frame</source> - <translation>Führe Python-Anweisung bis zum Rücksprung aus</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="408"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation><b>Rücksprung</b><p>Führe Python-Anweisungen bis zum Rücksprung aus. Sind die Anweisungen innerhalb einer <tt>import</tt>-Anweisung, eines Klassenkonstruktors oder einer Methode oder Funktionsaufrufes, so wird die Kontrolle nach dem Rücksprung an den Debugger zurückgegeben.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="419"/> + <location filename="../Debugger/DebugUI.py" line="416"/> <source>Stop</source> <translation>Anhalten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="424"/> + <location filename="../Debugger/DebugUI.py" line="421"/> <source>Stop debugging</source> <translation>Beende das Debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="425"/> + <location filename="../Debugger/DebugUI.py" line="422"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Anhalten</b><p>Beende das Debuggen des laufenden Programms.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="438"/> - <source>Evaluate in current context</source> - <translation>Auswerten im aktuellen Kontext</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="452"/> - <source>Execute a one line statement in the current context</source> - <translation>Ausführen einer einzelnen Anweisung im aktuellen Kontext</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="454"/> - <source><b>Execute</b><p>Execute a one line statement in the current context of the debugged program.</p></source> - <translation><b>Einzelanweisung ausführen</b><p>Führe eine einzelne Anweisung im aktuellen Kontext des debuggten Programmes aus.</p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1088"/> + <location filename="../Debugger/DebugUI.py" line="1061"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Das untersuchte Programm enthält einen unspezifizierten Syntaxfehler.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1125"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Eine nicht abgefangene Ausnahme ist aufgetreten. Details finden Sie im Shell-Fenster.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1245"/> + <location filename="../Debugger/DebugUI.py" line="1217"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Das untersuchte Programm wurde unerwartet beendet.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1917"/> + <location filename="../Debugger/DebugUI.py" line="1889"/> <source>Debug Project</source> <translation>Projekt debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1917"/> + <location filename="../Debugger/DebugUI.py" line="1889"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>Das aktuelle Projekt besitzt kein Hauptskript. Debuggen ist nicht möglich.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2209"/> - <source>Evaluate</source> - <translation>Auswerten</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="2209"/> - <source>Enter the statement to evaluate</source> - <translation>Gebe die auszuwertende Anweisung ein</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="2238"/> - <source>Execute</source> - <translation>Einzelanweisung ausführen</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="2238"/> - <source>Enter the statement to execute</source> - <translation>Gebe die auszuführende Anweisung ein</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="365"/> + <location filename="../Debugger/DebugUI.py" line="362"/> <source>Sin&gle Step</source> <translation>&Einzelschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="419"/> + <location filename="../Debugger/DebugUI.py" line="416"/> <source>&Stop</source> <translation>An&halten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="434"/> - <source>E&valuate...</source> - <translation>Auswer&ten …</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="448"/> - <source>E&xecute...</source> - <translation>E&inzelanweisung ausführen …</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="306"/> + <location filename="../Debugger/DebugUI.py" line="303"/> <source>Restart the last debugged script</source> <translation>Das zuletzt untersuchte Skript neu starten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="478"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source>&Exceptions Filter...</source> <translation>&Ausnahmenfilter …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="482"/> + <location filename="../Debugger/DebugUI.py" line="449"/> <source>Configure exceptions filter</source> <translation>Konfiguriert den Ausnahmenfilter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="484"/> + <location filename="../Debugger/DebugUI.py" line="451"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>Ausnahmen Filter</b><p>Konfiguriert den Ausnahmenfilter. Nur Ausnahmen, deren Typ aufgelistet sind, werden während einer Debug-Sitzung angezeigt.</p><p>Bitte beachten Sie, dass alle nicht abgefangenen Ausnahmen unabhängig von der Liste angezeigt werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="182"/> + <location filename="../Debugger/DebugUI.py" line="179"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Skript ausführen</b><p>Bestimme die Kommandozeilenparameter und führe das Skript außerhalb des Debuggers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1874"/> <source>Debug Script</source> <translation>Skript debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="269"/> + <location filename="../Debugger/DebugUI.py" line="266"/> <source>&Debug Script...</source> <translation>Skript &debuggen …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="274"/> + <location filename="../Debugger/DebugUI.py" line="271"/> <source>Debug the current Script</source> <translation>Das aktuelle Skript debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="275"/> + <location filename="../Debugger/DebugUI.py" line="272"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Skript debuggen</b><p>Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des aktuellen Editors als aktuelle Zeile. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="285"/> + <location filename="../Debugger/DebugUI.py" line="282"/> <source>Debug &Project...</source> <translation>&Projekt debuggen…</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="290"/> + <location filename="../Debugger/DebugUI.py" line="287"/> <source>Debug the current Project</source> <translation>Das aktuelle Projekt debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="292"/> + <location filename="../Debugger/DebugUI.py" line="289"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Projekt debuggen</b><p>Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des Hauptskriptes des aktuellen Projektes als aktuelle Zeile. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1795"/> + <location filename="../Debugger/DebugUI.py" line="1767"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="197"/> + <location filename="../Debugger/DebugUI.py" line="194"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Projekt ausführen</b><p>Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes außerhalb des Debuggers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="207"/> + <location filename="../Debugger/DebugUI.py" line="204"/> <source>Coverage run of Script</source> <translation>Abdeckungslauf des Skriptes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="207"/> + <location filename="../Debugger/DebugUI.py" line="204"/> <source>Coverage run of Script...</source> <translation>Abdeckungslauf des Skriptes …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="212"/> + <location filename="../Debugger/DebugUI.py" line="209"/> <source>Perform a coverage run of the current Script</source> <translation>Führe einen Abdeckungslauf des aktuellen Skriptes durch</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="214"/> + <location filename="../Debugger/DebugUI.py" line="211"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Abdeckungslauf des Skriptes</b><p>Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle eines Abdeckungsanalysetools aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="223"/> + <location filename="../Debugger/DebugUI.py" line="220"/> <source>Coverage run of Project</source> <translation>Abdeckungslauf des Projektes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="223"/> + <location filename="../Debugger/DebugUI.py" line="220"/> <source>Coverage run of Project...</source> <translation>Abdeckungslauf des Projektes …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="228"/> + <location filename="../Debugger/DebugUI.py" line="225"/> <source>Perform a coverage run of the current Project</source> <translation>Führe einen Abdeckungslauf des aktuellen Projektes durch</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="230"/> + <location filename="../Debugger/DebugUI.py" line="227"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Abdeckungslauf des Projektes</b><p>Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle eines Abdeckungsanalysetools aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1555"/> + <location filename="../Debugger/DebugUI.py" line="1527"/> <source>Coverage of Project</source> <translation>Abdeckung des Projektes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1542"/> + <location filename="../Debugger/DebugUI.py" line="1514"/> <source>Coverage of Script</source> <translation>Abdeckung des Skriptes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="240"/> + <location filename="../Debugger/DebugUI.py" line="237"/> <source>Profile Script</source> <translation>Skriptprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="240"/> + <location filename="../Debugger/DebugUI.py" line="237"/> <source>Profile Script...</source> <translation>Skriptprofil …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="244"/> + <location filename="../Debugger/DebugUI.py" line="241"/> <source>Profile the current Script</source> <translation>Profil des aktuellen Skriptes erstellen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="245"/> + <location filename="../Debugger/DebugUI.py" line="242"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Skriptprofil</b><p>Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle des Python-Profilers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="253"/> + <location filename="../Debugger/DebugUI.py" line="250"/> <source>Profile Project</source> <translation>Projektprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="253"/> + <location filename="../Debugger/DebugUI.py" line="250"/> <source>Profile Project...</source> <translation>Projektprofil …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="258"/> + <location filename="../Debugger/DebugUI.py" line="255"/> <source>Profile the current Project</source> <translation>Profil des aktuellen Projektes erstellen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="260"/> + <location filename="../Debugger/DebugUI.py" line="257"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Projektprofil</b><p>Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle des Python-Profilers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1674"/> + <location filename="../Debugger/DebugUI.py" line="1646"/> <source>Profile of Project</source> <translation>Projektprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1661"/> + <location filename="../Debugger/DebugUI.py" line="1633"/> <source>Profile of Script</source> <translation>Skriptprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="478"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source>Exceptions Filter</source> <translation>Ausnahmen Filter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="520"/> + <location filename="../Debugger/DebugUI.py" line="487"/> <source>Toggle Breakpoint</source> <translation>Haltepunkt setzen/löschen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="488"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Haltepunkt setzen/löschen</b><p>Setzt/löscht einen Haltepunkt in der aktuellen Zeile des aktuellen Editors.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="518"/> <source>Next Breakpoint</source> <translation>Nächster Haltepunkt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="552"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>Nächster Haltepunkt</b><p>Gehe zum nächsten Haltepunkt des aktuellen Editors.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="533"/> <source>Previous Breakpoint</source> <translation>Vorheriger Haltepunkt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="567"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>Vorheriger Haltepunkt</b><p>Gehe zum vorherigen Haltepunkt des aktuellen Editors.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="580"/> + <location filename="../Debugger/DebugUI.py" line="547"/> <source>Clear Breakpoints</source> <translation>Haltepunkte löschen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="581"/> + <location filename="../Debugger/DebugUI.py" line="548"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation><b>Haltepunkte löschen</b><p>Haltepunkte aller Editoren löschen.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="612"/> + <location filename="../Debugger/DebugUI.py" line="578"/> <source>&Breakpoints</source> <translation>&Haltepunkte</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="535"/> + <location filename="../Debugger/DebugUI.py" line="502"/> <source>Edit Breakpoint</source> <translation>Haltepunkt bearbeiten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="503"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>Haltepunkt bearbeiten</b><p>Öffnet einen Dialog zum Bearbeiten der Haltepunkteigenschaften. Es wird mit der aktuellen Zeile des aktuellen Editors gearbeitet.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="349"/> + <location filename="../Debugger/DebugUI.py" line="346"/> <source>Continue to Cursor</source> <translation>Weiter bis Einfügemarke</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="349"/> + <location filename="../Debugger/DebugUI.py" line="346"/> <source>Continue &To Cursor</source> <translation>Weiter bis Einfüge&marke</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="351"/> + <source>Continue running the program from the current line to the current cursor position</source> + <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="354"/> - <source>Continue running the program from the current line to the current cursor position</source> - <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>Weiter bis Einfügemarke</b><p>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="462"/> + <location filename="../Debugger/DebugUI.py" line="429"/> <source>Variables Type Filter</source> <translation>Variablentypenfilter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="462"/> + <location filename="../Debugger/DebugUI.py" line="429"/> <source>Varia&bles Type Filter...</source> <translation>&Variablentypenfilter …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="466"/> + <location filename="../Debugger/DebugUI.py" line="433"/> <source>Configure variables type filter</source> <translation>Konfiguriert die Variablentypenfilter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="468"/> + <location filename="../Debugger/DebugUI.py" line="435"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation><b>Variablenfilter</b><p>Konfigurieren der Variablenfilter. Nur Variablen mit einem Typ, der nicht ausgewählt ist, werden im globalen oder lokalen Variablenfenster während einer Debuggingsitzung angezeigt.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1041"/> - <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> - <translation><p><b>{0}</b> wurde mit dem Status {1} beendet.</p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1181"/> + <location filename="../Debugger/DebugUI.py" line="1154"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>Das untersuchte Programm erzeugte die Ausnahme <b>{0}</b><br>„<b>{1}</b>“</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> - <source><p>The program has terminated with an exit status of {0}.</p></source> - <translation><p>Das Programm wurde mit dem Status {0} beendet.</p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1314"/> + <location filename="../Debugger/DebugUI.py" line="1286"/> <source>Breakpoint Condition Error</source> <translation>Fehler in Haltepunktbedingung</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1314"/> + <location filename="../Debugger/DebugUI.py" line="1286"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>Die Bedingung des Haltepunktes <b>{0}, {1}</b> enthält einen Syntaxfehler.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation>Ctrl+Shift+PgDown</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation>Ctrl+Shift+PgUp</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="574"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation>Ctrl+Shift+C</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="608"/> + <location filename="../Debugger/DebugUI.py" line="574"/> <source>&Debug</source> <translation>Debu&g</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="610"/> + <location filename="../Debugger/DebugUI.py" line="576"/> <source>&Start</source> <translation>&Start</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="657"/> + <location filename="../Debugger/DebugUI.py" line="621"/> <source>Start</source> <translation>Start</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="671"/> + <location filename="../Debugger/DebugUI.py" line="635"/> <source>Debug</source> <translation>Debug</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1166"/> + <location filename="../Debugger/DebugUI.py" line="1139"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation><p>Das untersuchte Programm erzeugte die Ausnahme <b>{0}</b><br>„<b>{1}</b>“<br>Datei: <b>{2}</b>, Zeile: <b>{3}</b></p><p>Anhalten?</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1107"/> + <location filename="../Debugger/DebugUI.py" line="1080"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation><p>Die Datei <b>{0}</b> enthält den Syntaxfehler <b>{1}</b> in Zeile <b>{2}</b>, Position <b>{3}</b>.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="323"/> + <location filename="../Debugger/DebugUI.py" line="320"/> <source>Stop the running script.</source> <translation>Halte das laufende Skript an.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="439"/> - <source><b>Evaluate</b><p>Evaluate an expression in the current context of the debugged program. The result is displayed in the shell window.</p></source> - <translation><b>Auswerten</b><p>Wertet einen Ausdruck im aktuellen Kontext des debuggten Programmes aus. Das Resultat wird im Shell-Fenster angezeigt.</p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1350"/> + <location filename="../Debugger/DebugUI.py" line="1322"/> <source>Watch Expression Error</source> <translation>Fehler in Beobachtungsausdruck</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1350"/> + <location filename="../Debugger/DebugUI.py" line="1322"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>Der Beobachtungsausdrucks <b>{0}</b> enthält einen Syntaxfehler.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1380"/> + <location filename="../Debugger/DebugUI.py" line="1352"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>Ein Beobachtungsausdruck „<b>{0}</b>“ existiert bereits.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1384"/> + <location filename="../Debugger/DebugUI.py" line="1356"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>Ein Beobachtungsausdruck „<b>{0}</b>“ für die Variable <b>{1}</b> existiert bereits.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1390"/> + <location filename="../Debugger/DebugUI.py" line="1362"/> <source>Watch expression already exists</source> <translation>Beobachtungsausdruck existiert bereits</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="495"/> + <location filename="../Debugger/DebugUI.py" line="462"/> <source>Ignored Exceptions</source> <translation>Ignorierte Ausnahmen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="495"/> + <location filename="../Debugger/DebugUI.py" line="462"/> <source>&Ignored Exceptions...</source> <translation>&Ignorierte Ausnahmen …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="499"/> + <location filename="../Debugger/DebugUI.py" line="466"/> <source>Configure ignored exceptions</source> <translation>Konfiguriert ignorierte Ausnahmen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="501"/> + <location filename="../Debugger/DebugUI.py" line="468"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>Ignorierte Ausnahmen</b><p>Konfiguriert die ignorierten Ausnahmen. Nur Ausnahmen, deren Typ nicht aufgelistet sind, werden während einer Debug-Sitzung angezeigt.</p><p>Bitte beachten Sie, dass nicht abgefangenen Ausnahmen nicht ignoriert werden können.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="514"/> + <location filename="../Debugger/DebugUI.py" line="481"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation>Shift+F11</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="529"/> + <location filename="../Debugger/DebugUI.py" line="496"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation>Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="529"/> + <location filename="../Debugger/DebugUI.py" line="496"/> <source>Edit Breakpoint...</source> <translation>Haltepunkt bearbeiten …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> - <source>The program has terminated with an exit status of {0}. -</source> - <translation>Das Programm wurde mit dem Status {0} beendet. -</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1066"/> - <source>"{0}" has terminated with an exit status of {1}. -</source> - <translation>„{0}“ wurde mit dem Status {1} beendet. -</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1057"/> + <location filename="../Debugger/DebugUI.py" line="1030"/> <source>Program terminated</source> <translation>Programm beendet</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1050"/> - <source>The program has terminated with an exit status of {0}.</source> - <translation>Das Programm wurde mit dem Status {0} beendet.</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1053"/> - <source>"{0}" has terminated with an exit status of {1}.</source> - <translation>„{0}“ wurde mit dem Status {1} beendet.</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="302"/> + <location filename="../Debugger/DebugUI.py" line="299"/> <source>Restart</source> <translation>Neu starten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="305"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation><b>Neu starten</b><p>Setzt die Kommandozeilenparameter und setzt die erste ausführbare Python-Zeile des zuletzt untersuchten Skriptes. Falls ungesicherte Änderungen vorliegen, so werden diese zunächst gesichert.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="324"/> + <location filename="../Debugger/DebugUI.py" line="321"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation><b>Anhalten</b><p>Dies hält das Skript, das im Debugger läuft, an.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1231"/> + <location filename="../Debugger/DebugUI.py" line="1203"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation><p>Das Programm erzeugte das Signal "{0}".<br/>Datei: <b>{1}</b>, Zeile: <b>{2}</b></p></translation> </message> + <message> + <location filename="../Debugger/DebugUI.py" line="997"/> + <source><p>Message: {0}</p></source> + <translation><p>Nachricht: {0}</p></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1003"/> + <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> + <translation><p>Das Programm wurde mit dem Status {0} beendet.</p>{1}</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1008"/> + <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> + <translation><p><b>{0}</b> wurde mit dem Status {1} beendet.</p>{2}</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1016"/> + <source>Message: {0}</source> + <translation>Nachricht: {0}</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1023"/> + <source>The program has terminated with an exit status of {0}. +{1}</source> + <translation>Das Programm wurde mit dem Status {0} beendet. +{1}</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1026"/> + <source>"{0}" has terminated with an exit status of {1}. +{2}</source> + <translation>„{0}“ wurde mit dem Status {1} beendet. +{2}</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1035"/> + <source>The program has terminated with an exit status of {0}. +{1} +</source> + <translation>Das Programm wurde mit dem Status {0} beendet. +{1} +</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1039"/> + <source>"{0}" has terminated with an exit status of {1}. +{2} +</source> + <translation>„{0}“ wurde mit dem Status {1} beendet. +{2} +</translation> + </message> </context> <context> <name>DebugViewer</name> @@ -6385,80 +6353,100 @@ </message> </context> <context> - <name>DebuggerInterfacePython</name> - <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="356"/> + <name>DebuggerInterfacePython2</name> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="352"/> <source>Start Debugger</source> <translation>Debugger starten</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="356"/> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="143"/> + <source><p>No Python2 interpreter configured.</p></source> + <translation><p>Kein Python 2-Interpreter gefunden.</p></translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="352"/> <source><p>The debugger backend could not be started.</p></source> <translation><p>Der Debugger konnte nicht gestartet werden.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="797"/> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="815"/> <source>Parent Process</source> <translation>Vaterprozess</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="798"/> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="816"/> <source>Child process</source> <translation>Kindprozess</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="799"/> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="817"/> <source>Client forking</source> <translation>Client forkt</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="799"/> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="817"/> <source>Select the fork branch to follow.</source> <translation>Wähle den zu folgenden Forkpfad.</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="147"/> - <source><p>No Python2 interpreter configured.</p></source> - <translation><p>Kein Python 2-Interpreter gefunden.</p></translation> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="862"/> + <source>Debug Protocol Error</source> + <translation>Fehler im Debugprotokoll</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="862"/> + <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> + <translation><p>Die vom Debugger empfangene Antwort konnte nicht dekodiert werden. Bitte berichten sie diesen Fehler zusammen mit den empfangenen Daten an die eric Bugs Emailadresse.</p><p>Fehler: {0}</p><p>Daten:<br/>{0}</p></translation> </message> </context> <context> <name>DebuggerInterfacePython3</name> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="353"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="352"/> <source>Start Debugger</source> <translation>Debugger starten</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="353"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="352"/> <source><p>The debugger backend could not be started.</p></source> <translation><p>Der Debugger konnte nicht gestartet werden.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="794"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="815"/> <source>Parent Process</source> <translation>Vaterprozess</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="795"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="816"/> <source>Child process</source> <translation>Kindprozess</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="796"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="817"/> <source>Client forking</source> <translation>Client forkt</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="796"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="817"/> <source>Select the fork branch to follow.</source> <translation>Wähle den zu folgenden Forkpfad.</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="144"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="143"/> <source><p>No Python3 interpreter configured.</p></source> <translation><p>Kein Python 3-Interpreter gefunden.</p></translation> </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="862"/> + <source>Debug Protocol Error</source> + <translation>Fehler im Debugprotokoll</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="862"/> + <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> + <translation><p>Die vom Debugger empfangene Antwort konnte nicht dekodiert werden. Bitte berichten sie diesen Fehler zusammen mit den empfangenen Daten an die eric Bugs Emailadresse.</p><p>Fehler: {0}</p><p>Daten:<br/>{0}</p></translation> + </message> </context> <context> <name>DebuggerPropertiesDialog</name> @@ -38763,12 +38751,12 @@ <translation>Projektverzeichnis erstellen</translation> </message> <message> - <location filename="../Project/Project.py" line="3453"/> + <location filename="../Project/Project.py" line="3455"/> <source>Open project</source> <translation>Projekt öffnen</translation> </message> <message> - <location filename="../Project/Project.py" line="3490"/> + <location filename="../Project/Project.py" line="3492"/> <source>Save project as</source> <translation>Projekt speichern unter</translation> </message> @@ -38788,132 +38776,132 @@ <translation>Das aktuelle Projekt hat ungesicherte Änderungen.</translation> </message> <message> - <location filename="../Project/Project.py" line="3669"/> + <location filename="../Project/Project.py" line="3671"/> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3439"/> + <location filename="../Project/Project.py" line="3441"/> <source>New project</source> <translation>Neues Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3439"/> + <location filename="../Project/Project.py" line="3441"/> <source>&New...</source> <translation>&Neu...</translation> </message> <message> - <location filename="../Project/Project.py" line="3444"/> + <location filename="../Project/Project.py" line="3446"/> <source>Generate a new project</source> <translation>Erstelle ein neues Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3445"/> + <location filename="../Project/Project.py" line="3447"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Neu...</b><p>Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3453"/> + <location filename="../Project/Project.py" line="3455"/> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3458"/> + <location filename="../Project/Project.py" line="3460"/> <source>Open an existing project</source> <translation>Öffnet ein bestehendes Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3459"/> + <location filename="../Project/Project.py" line="3461"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Öffnen...</b><p>Dies öffnet ein bestehendes Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3466"/> + <location filename="../Project/Project.py" line="3468"/> <source>Close project</source> <translation>Projekt schließen</translation> </message> <message> - <location filename="../Project/Project.py" line="3466"/> + <location filename="../Project/Project.py" line="3468"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="../Project/Project.py" line="3470"/> + <location filename="../Project/Project.py" line="3472"/> <source>Close the current project</source> <translation>Schließt das aktuelle Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3471"/> + <location filename="../Project/Project.py" line="3473"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Schließen</b><p>Dies schließt das aktuelle Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3478"/> + <location filename="../Project/Project.py" line="3480"/> <source>Save project</source> <translation>Projekt speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3482"/> + <location filename="../Project/Project.py" line="3484"/> <source>Save the current project</source> <translation>Speichert das aktuelle Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3483"/> + <location filename="../Project/Project.py" line="3485"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Speichern</b><p>Dies speichert das aktuelle Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3494"/> - <source>Save the current project to a new file</source> - <translation>Speichert das aktuelle Projekt in eine neue Datei</translation> - </message> - <message> <location filename="../Project/Project.py" line="3496"/> + <source>Save the current project to a new file</source> + <translation>Speichert das aktuelle Projekt in eine neue Datei</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3498"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Speichern unter</b><p>Dies speichert das aktuelle Projekt in eine neue Datei.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3536"/> + <location filename="../Project/Project.py" line="3538"/> <source>Add translation to project</source> <translation>Übersetzung zum Projekt hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="3536"/> + <location filename="../Project/Project.py" line="3538"/> <source>Add &translation...</source> <translation>&Übersetzung hinzufügen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3541"/> - <source>Add a translation to the current project</source> - <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation> - </message> - <message> <location filename="../Project/Project.py" line="3543"/> + <source>Add a translation to the current project</source> + <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3545"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Übersetzung hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem eine Übersetzung zum aktuellen Projekt hinzugefügt werden kann.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3580"/> + <location filename="../Project/Project.py" line="3582"/> <source>Project properties</source> <translation>Projekteigenschaften</translation> </message> <message> - <location filename="../Project/Project.py" line="3580"/> + <location filename="../Project/Project.py" line="3582"/> <source>&Properties...</source> <translation>&Eigenschaften...</translation> </message> <message> - <location filename="../Project/Project.py" line="3585"/> + <location filename="../Project/Project.py" line="3587"/> <source>Show the project properties</source> <translation>Zeigt die Projekteigenschaften an</translation> </message> <message> - <location filename="../Project/Project.py" line="3586"/> + <location filename="../Project/Project.py" line="3588"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Eigenschaften...</b><p>Dies zeigt einen Dialog an, mit dem die Projekteigenschaften bearbeitet werden können.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3899"/> + <location filename="../Project/Project.py" line="3901"/> <source>Open &Recent Projects</source> <translation>Zu&letzt geöffnete Projekte</translation> </message> @@ -38923,17 +38911,17 @@ <translation>Das Zielverzeichnis darf nicht leer sein.</translation> </message> <message> - <location filename="../Project/Project.py" line="3551"/> + <location filename="../Project/Project.py" line="3553"/> <source>Search new files</source> <translation>Neue Dateien suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="3551"/> + <location filename="../Project/Project.py" line="3553"/> <source>Searc&h new files...</source> <translation>Neue &Dateien suchen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3555"/> + <location filename="../Project/Project.py" line="3557"/> <source>Search new files in the project directory.</source> <translation>Sucht neue Dateien im Projektverzeichnis.</translation> </message> @@ -38953,22 +38941,22 @@ <translation>Sprache hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="3490"/> + <location filename="../Project/Project.py" line="3492"/> <source>Save &as...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="../Project/Project.py" line="4371"/> + <location filename="../Project/Project.py" line="4373"/> <source>Version Control System</source> <translation>Versionskontrollsystem</translation> </message> <message> - <location filename="../Project/Project.py" line="4225"/> + <location filename="../Project/Project.py" line="4227"/> <source>Search New Files</source> <translation>Neue Dateien suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="4225"/> + <location filename="../Project/Project.py" line="4227"/> <source>There were no new files found to be added.</source> <translation>Es wurden keine neuen Dateien gefunden.</translation> </message> @@ -38988,147 +38976,147 @@ <translation>Projekt Session speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3708"/> + <location filename="../Project/Project.py" line="3710"/> <source>Load session</source> <translation>Session laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3712"/> + <location filename="../Project/Project.py" line="3714"/> <source>Load the projects session file.</source> <translation>Laden der Projekt Session.</translation> </message> <message> - <location filename="../Project/Project.py" line="3726"/> + <location filename="../Project/Project.py" line="3728"/> <source>Save session</source> <translation>Session speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3730"/> + <location filename="../Project/Project.py" line="3732"/> <source>Save the projects session file.</source> <translation>Speichern der Projekt Session.</translation> </message> <message> - <location filename="../Project/Project.py" line="3713"/> + <location filename="../Project/Project.py" line="3715"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Session laden</b><p>Dies lädt eine Projektsessiondatei. Die Session enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3731"/> + <location filename="../Project/Project.py" line="3733"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Session speichern</b><p>Dies speichert eine Projektsessiondatei. Die Session enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3909"/> + <location filename="../Project/Project.py" line="3911"/> <source>Source &Documentation</source> <translation>&Quelltextdokumentation</translation> </message> <message> - <location filename="../Project/Project.py" line="3904"/> + <location filename="../Project/Project.py" line="3906"/> <source>Chec&k</source> <translation>&Prüfen</translation> </message> <message> - <location filename="../Project/Project.py" line="3758"/> + <location filename="../Project/Project.py" line="3760"/> <source>Code Metrics</source> <translation>Quelltextmetriken</translation> </message> <message> - <location filename="../Project/Project.py" line="3758"/> + <location filename="../Project/Project.py" line="3760"/> <source>&Code Metrics...</source> <translation>&Quelltextmetriken...</translation> </message> <message> - <location filename="../Project/Project.py" line="3762"/> - <source>Show some code metrics for the project.</source> - <translation>Zeige einige Quelltextmetriken für das Projekt.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3764"/> + <source>Show some code metrics for the project.</source> + <translation>Zeige einige Quelltextmetriken für das Projekt.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3766"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Quelltextmetriken...</b><p>Dies zeigt einige Quelltextmetriken für alle Python-Dateien des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3772"/> + <location filename="../Project/Project.py" line="3774"/> <source>Python Code Coverage</source> <translation>Python-Quelltext-Abdeckung</translation> </message> <message> - <location filename="../Project/Project.py" line="3772"/> + <location filename="../Project/Project.py" line="3774"/> <source>Code Co&verage...</source> <translation>&Quelltext Abdeckung...</translation> </message> <message> - <location filename="../Project/Project.py" line="3776"/> - <source>Show code coverage information for the project.</source> - <translation>Zeige die Quelltextabdeckung für das Projekt.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3778"/> + <source>Show code coverage information for the project.</source> + <translation>Zeige die Quelltextabdeckung für das Projekt.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3780"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Quelltext Abdeckung...</b><p>Dies zeigt die Quelltextabdeckung für alle Python-Dateien des Projektes an.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4562"/> + <location filename="../Project/Project.py" line="4564"/> <source>Profile Data</source> <translation>Profildaten</translation> </message> <message> - <location filename="../Project/Project.py" line="3786"/> + <location filename="../Project/Project.py" line="3788"/> <source>&Profile Data...</source> <translation>&Profildaten...</translation> </message> <message> - <location filename="../Project/Project.py" line="3790"/> - <source>Show profiling data for the project.</source> - <translation>Zeige Profildaten des aktuellen Projektes.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3792"/> + <source>Show profiling data for the project.</source> + <translation>Zeige Profildaten des aktuellen Projektes.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3794"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profildaten...</b><p>Dies zeigt die Profildaten des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3906"/> + <location filename="../Project/Project.py" line="3908"/> <source>Sho&w</source> <translation>&Zeige</translation> </message> <message> - <location filename="../Project/Project.py" line="4539"/> + <location filename="../Project/Project.py" line="4541"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> </message> <message> - <location filename="../Project/Project.py" line="4489"/> + <location filename="../Project/Project.py" line="4491"/> <source>Coverage Data</source> <translation>Quelltext Abdeckungsdaten</translation> </message> <message> - <location filename="../Project/Project.py" line="3900"/> + <location filename="../Project/Project.py" line="3902"/> <source>&Version Control</source> <translation>&Versionskontrolle</translation> </message> <message> - <location filename="../Project/Project.py" line="4616"/> + <location filename="../Project/Project.py" line="4618"/> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="../Project/Project.py" line="3801"/> + <location filename="../Project/Project.py" line="3803"/> <source>&Application Diagram...</source> <translation>&Applikations-Diagramm...</translation> </message> <message> - <location filename="../Project/Project.py" line="3805"/> - <source>Show a diagram of the project.</source> - <translation>Zeigt ein Diagramm des Projektes.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3807"/> + <source>Show a diagram of the project.</source> + <translation>Zeigt ein Diagramm des Projektes.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3809"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Applikations-Diagramm...</b><p>Dies zeigt ein Diagramm des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3907"/> + <location filename="../Project/Project.py" line="3909"/> <source>&Diagrams</source> <translation>&Diagramme</translation> </message> @@ -39138,37 +39126,37 @@ <translation>Projektdatei speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="4512"/> + <location filename="../Project/Project.py" line="4514"/> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="../Project/Project.py" line="4512"/> + <location filename="../Project/Project.py" line="4514"/> <source>Please select a coverage file</source> <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation> </message> <message> - <location filename="../Project/Project.py" line="4562"/> + <location filename="../Project/Project.py" line="4564"/> <source>Please select a profile file</source> <translation>Bitte wählen Sie eine Datei mit Profildaten</translation> </message> <message> - <location filename="../Project/Project.py" line="3521"/> + <location filename="../Project/Project.py" line="3523"/> <source>Add directory to project</source> <translation>Verzeichnis zum Projekt hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="3521"/> + <location filename="../Project/Project.py" line="3523"/> <source>Add directory...</source> <translation>Verzeichnis hinzufügen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3526"/> - <source>Add a directory to the current project</source> - <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3528"/> + <source>Add a directory to the current project</source> + <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3530"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Verzeichnis hinzufügen</b><p>Dies öffnet einen Dialog, mit dem ein Verzeichnis bzw. der Inhalt eines Verzeichnisses zum aktuellen Projekt hinzugefügt werden kann.</p></translation> </message> @@ -39258,17 +39246,17 @@ <translation><p>Die Projektsessiondatei <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3744"/> + <location filename="../Project/Project.py" line="3746"/> <source>Delete session</source> <translation>Session löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="3748"/> + <location filename="../Project/Project.py" line="3750"/> <source>Delete the projects session file.</source> <translation>Löscht die Projektsessiondatei.</translation> </message> <message> - <location filename="../Project/Project.py" line="3749"/> + <location filename="../Project/Project.py" line="3751"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Session löschen</b><p>Dies löscht die Sessiondatei des Projektes.</p></translation> </message> @@ -39278,7 +39266,7 @@ <translation>Ruby-Dateien (*.rb);;</translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> + <location filename="../Project/Project.py" line="3559"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation><b>Neue Dateien suchen...</b><p>Dies sucht im Projektverzeichnis und in registrierten Unterverzeichnissen nach neuen Dateien (Quellen, *.ui, *.idl).</p></translation> </message> @@ -39293,7 +39281,7 @@ <translation>Sonstige</translation> </message> <message> - <location filename="../Project/Project.py" line="4616"/> + <location filename="../Project/Project.py" line="4618"/> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> @@ -39358,152 +39346,152 @@ <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3644"/> + <location filename="../Project/Project.py" line="3646"/> <source>Debugger Properties</source> <translation>Debugger-Eigenschaften</translation> </message> <message> - <location filename="../Project/Project.py" line="3644"/> + <location filename="../Project/Project.py" line="3646"/> <source>Debugger &Properties...</source> <translation>Debugger-&Eigenschaften...</translation> </message> <message> - <location filename="../Project/Project.py" line="3648"/> + <location filename="../Project/Project.py" line="3650"/> <source>Show the debugger properties</source> <translation>Debugger-Eigenschaften anzeigen</translation> </message> <message> - <location filename="../Project/Project.py" line="3649"/> + <location filename="../Project/Project.py" line="3651"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften...</b><p>Dies zeigt einen Dialog an, um die projektspezifischen Debugger-Einstellungen zu bearbeiten.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3657"/> + <location filename="../Project/Project.py" line="3659"/> <source>Load</source> <translation>Laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3657"/> + <location filename="../Project/Project.py" line="3659"/> <source>&Load</source> <translation>&Laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3661"/> + <location filename="../Project/Project.py" line="3663"/> <source>Load the debugger properties</source> <translation>Debugger-Eigenschaften laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3669"/> + <location filename="../Project/Project.py" line="3671"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3673"/> + <location filename="../Project/Project.py" line="3675"/> <source>Save the debugger properties</source> <translation>Debugger-Eigenschaften speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3681"/> + <location filename="../Project/Project.py" line="3683"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="3681"/> + <location filename="../Project/Project.py" line="3683"/> <source>&Delete</source> <translation>&Löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="3685"/> + <location filename="../Project/Project.py" line="3687"/> <source>Delete the debugger properties</source> <translation>Debugger-Eigenschaften löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="3694"/> + <location filename="../Project/Project.py" line="3696"/> <source>Reset</source> <translation>Zurücksetzen</translation> </message> <message> - <location filename="../Project/Project.py" line="3694"/> + <location filename="../Project/Project.py" line="3696"/> <source>&Reset</source> <translation>&Zurücksetzen</translation> </message> <message> - <location filename="../Project/Project.py" line="3698"/> + <location filename="../Project/Project.py" line="3700"/> <source>Reset the debugger properties</source> <translation>Debugger-Eigenschaften zurücksetzen</translation> </message> <message> - <location filename="../Project/Project.py" line="3911"/> + <location filename="../Project/Project.py" line="3913"/> <source>Debugger</source> <translation>Debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3908"/> + <location filename="../Project/Project.py" line="3910"/> <source>Session</source> <translation>Session</translation> </message> <message> - <location filename="../Project/Project.py" line="3662"/> + <location filename="../Project/Project.py" line="3664"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften laden</b><p>Dies lädt die projektspezifischen Debugger-Einstellungen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3674"/> + <location filename="../Project/Project.py" line="3676"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften speichern</b><p>Dies speichert die projektspezifischen Debugger-Einstellungen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3686"/> + <location filename="../Project/Project.py" line="3688"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften löschen</b><p>Dies löscht die Datei mit den projektspezifischen Debugger-Einstellungen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3699"/> + <location filename="../Project/Project.py" line="3701"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften zurücksetzen</b><p>Dies setzt die projektspezifischen Debugger-Einstellungen zurück.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3608"/> + <location filename="../Project/Project.py" line="3610"/> <source>Filetype Associations</source> <translation>Dateitypzuordnungen</translation> </message> <message> - <location filename="../Project/Project.py" line="3608"/> + <location filename="../Project/Project.py" line="3610"/> <source>Filetype Associations...</source> <translation>Dateitypzuordnungen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3612"/> - <source>Show the project filetype associations</source> - <translation>Zeigt die Dateitypzuordnungen des Projektes</translation> - </message> - <message> <location filename="../Project/Project.py" line="3614"/> + <source>Show the project filetype associations</source> + <translation>Zeigt die Dateitypzuordnungen des Projektes</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3616"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Dateitypzuordnungen...</b><p>Dies zeigt einen Dialog zur Eingabe der Dateitypzuordnungen des Projektes. Diese Zuordnungen bestimmen den Typ (Quellen, Formulare, Schnittstellen oder Sonstige) über ein Dateinamenmuster. Sie werden genutzt, wenn eine Datei zum Projekt hinzugefügt oder wenn nach neuen Dateien gesucht wird.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3914"/> <source>Pac&kagers</source> <translation>Pa&ketierer</translation> </message> <message> - <location filename="../Project/Project.py" line="3505"/> + <location filename="../Project/Project.py" line="3507"/> <source>Add files to project</source> <translation>Dateien zum Projekt hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="3505"/> + <location filename="../Project/Project.py" line="3507"/> <source>Add &files...</source> <translation>&Dateien hinzufügen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3510"/> - <source>Add files to the current project</source> - <translation>Fügt Dateien zum aktuellen Projekt hinzu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3512"/> + <source>Add files to the current project</source> + <translation>Fügt Dateien zum aktuellen Projekt hinzu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3514"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Dateien hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.</p></translation> </message> @@ -39518,17 +39506,17 @@ <translation>Projektdateien (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3898"/> + <location filename="../Project/Project.py" line="3900"/> <source>&Project</source> <translation>&Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> + <location filename="../Project/Project.py" line="4022"/> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4086"/> + <location filename="../Project/Project.py" line="4088"/> <source>&Clear</source> <translation>&Löschen</translation> </message> @@ -39558,32 +39546,32 @@ <translation><p>Die Datei mit den Nutzer bezogenen Projektdaten <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3593"/> + <location filename="../Project/Project.py" line="3595"/> <source>User project properties</source> <translation>Nutzer bezogene Projektdaten</translation> </message> <message> - <location filename="../Project/Project.py" line="3593"/> + <location filename="../Project/Project.py" line="3595"/> <source>&User Properties...</source> <translation>&Nutzer bezogene Projektdaten...</translation> </message> <message> - <location filename="../Project/Project.py" line="3598"/> - <source>Show the user specific project properties</source> - <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation> - </message> - <message> <location filename="../Project/Project.py" line="3600"/> + <source>Show the user specific project properties</source> + <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3602"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Nutzer bezogene Projektdaten...</b><p>Dies zeigt einen Dialog an, um Nutzer bezogene Projektdaten zu bearbeiten.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3031"/> + <location filename="../Project/Project.py" line="3033"/> <source>Syntax errors detected</source> <translation>Syntaxfehler gefunden</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3031"/> + <location filename="../Project/Project.py" line="3033"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Das Projekt beinhaltet eine Datei mit Syntaxfehlern.</numerusform> @@ -39591,47 +39579,47 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4774"/> + <location filename="../Project/Project.py" line="4776"/> <source>Create Package List</source> <translation>Erzeuge Paketliste</translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> + <location filename="../Project/Project.py" line="3832"/> <source>Create &Package List</source> <translation>Erzeuge &Paketliste</translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4968"/> <source>Create Plugin Archive</source> <translation>Erzeuge Plugin Archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> + <location filename="../Project/Project.py" line="3848"/> <source>Create Plugin &Archive</source> <translation>Erzeuge Plugin &Archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="4734"/> + <location filename="../Project/Project.py" line="4736"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Die Datei <b>PKGLIST</b> existiert bereits.</p><p>Überschreiben?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4774"/> + <location filename="../Project/Project.py" line="4776"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Die Datei <b>PKGLIST</b> konnte nicht erzeugt werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4794"/> + <location filename="../Project/Project.py" line="4796"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation><p>Die Datei <b>PKGLIST</b> existiert nicht. Abbruch...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4802"/> + <location filename="../Project/Project.py" line="4804"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Für das Projekt wurde kein Hauptskript angegeben. Abbruch...</translation> </message> <message> - <location filename="../Project/Project.py" line="4816"/> + <location filename="../Project/Project.py" line="4818"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation><p>Die Datei <b>PKGLIST</b> konnte nicht gelesen werden.</p><p>Ursache: {0}</p></translation> </message> @@ -39656,22 +39644,22 @@ <translation>Projekttyp Registrierung</translation> </message> <message> - <location filename="../Project/Project.py" line="4855"/> + <location filename="../Project/Project.py" line="4857"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht im Archiv gespeichert werde. Sie wird ignoriert.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3862"/> + <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (Snapshot)</source> <translation>Erzeuge Plugin Archiv (Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="3862"/> + <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (&Snapshot)</source> <translation>Erzeuge Plugin Archiv (&Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="4924"/> + <location filename="../Project/Project.py" line="4926"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Grund: {1}</p></translation> </message> @@ -39691,27 +39679,27 @@ <translation>Gib das Pfadmuster für Übersetzungsdateien ein (benutze „%language%“ anstelle des Sprachcodes):</translation> </message> <message> - <location filename="../Project/Project.py" line="4371"/> + <location filename="../Project/Project.py" line="4373"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Versionskontrolle nicht möglich.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3626"/> + <location filename="../Project/Project.py" line="3628"/> <source>Lexer Associations</source> <translation>Lexerzuordnungen</translation> </message> <message> - <location filename="../Project/Project.py" line="3626"/> + <location filename="../Project/Project.py" line="3628"/> <source>Lexer Associations...</source> <translation>Lexerzuordnungen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3630"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation> - </message> - <message> <location filename="../Project/Project.py" line="3632"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3634"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Lexerzuordnungen</b><p>Dies öffnet einen Dialog, um die projektspezifischen Lexerzuordnungen zu bearbeiten. Diese Zuordnungen überschreiben die globalen Lexerzuordnungen. Lexer werden verwendet, um den Editortext einzufärben.</p></translation> </message> @@ -39756,22 +39744,22 @@ <translation><p>Das Hauptskript <b>{0}</b> konnte nicht erzeugt werden.<br/>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3817"/> <source>Load Diagram</source> <translation>Diagramm laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3817"/> <source>&Load Diagram...</source> <translation>Diagramm &laden...</translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> - <source>Load a diagram from file.</source> - <translation>Lade ein Diagramm aus einer Datei.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3821"/> + <source>Load a diagram from file.</source> + <translation>Lade ein Diagramm aus einer Datei.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3823"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Diagramm laden...</b><p>Dies lädt ein Diagramm aus einer Datei.</p></translation> </message> @@ -39801,52 +39789,52 @@ <translation>PyQt5 Kommandozeile</translation> </message> <message> - <location filename="../Project/Project.py" line="4359"/> + <location filename="../Project/Project.py" line="4361"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Ignoriere Übersteuerung.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4968"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3835"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation>Erzeugt eine erste PKGLIST-Datei für ein eric6-Plugin.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3837"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation>Erzeugt eine erste PKGLIST-Datei für ein eric6-Plugin.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3839"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation><b>Erzeuge Paketliste</b><p>Dies erzeugt eine erste Liste von Dateien, die in ein eric6-Pluginarchive einbezogen werden sollen. Die Liste wird aus der Projektdatei erzeugt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3851"/> - <source>Create an eric6 plugin archive file.</source> - <translation>Erzeugt eine eric6 Plugin Archivdatei.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3853"/> + <source>Create an eric6 plugin archive file.</source> + <translation>Erzeugt eine eric6 Plugin Archivdatei.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3855"/> <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> <translation><b>Erzeuge Pluginarchiv</b><p>Dies erzeugt eine eric6-Pluginarchivdatei mit den Dateien, die in der PKGLIST-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3867"/> - <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation>Erzeugt eine eric6 Plugin Archivdatei (Snapshot Release).</translation> - </message> - <message> <location filename="../Project/Project.py" line="3869"/> + <source>Create an eric6 plugin archive file (snapshot release).</source> + <translation>Erzeugt eine eric6 Plugin Archivdatei (Snapshot Release).</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation><b>Erzeuge Pluginarchiv (Snapshot)</b><p>Dies erzeugt eine eric6-Pluginarchivdatei mit den Dateien, die in der PKGLIST-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4829"/> + <location filename="../Project/Project.py" line="4831"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Die eric6 Plugin Archivdatei <b>{0}</b> konnte nicht erzeugt werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4878"/> + <location filename="../Project/Project.py" line="4880"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation><p>Die eric6 Plugin Archivdatei <b>{0}</b> wurde erfolgreich erzeugt.</p></translation> </message> @@ -39876,28 +39864,28 @@ <translation><p>Das Projektverzeichnis <b>{0}</b> ist nicht beschreibbar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3565"/> + <location filename="../Project/Project.py" line="3567"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="3571"/> + <location filename="../Project/Project.py" line="3573"/> <source>Search for a file in the project list of files.</source> <translation>Suche nach einer Datei in der Liste der Projektdateien.</translation> </message> <message> - <location filename="../Project/Project.py" line="3573"/> + <location filename="../Project/Project.py" line="3575"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation><b>Projektdatei suchen</b><p>Dies sucht nach einer Datei in der Liste der Projektdateien.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3565"/> + <location filename="../Project/Project.py" line="3567"/> <source>Search Project File</source> <translation>Projektdatei suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="3565"/> + <location filename="../Project/Project.py" line="3567"/> <source>Search Project File...</source> <translation>Projektdatei suchen...</translation> </message> @@ -57439,159 +57427,159 @@ <context> <name>TaskViewer</name> <message> - <location filename="../Tasks/TaskViewer.py" line="57"/> + <location filename="../Tasks/TaskViewer.py" line="58"/> <source>Filename</source> <translation>Dateiname</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="57"/> + <location filename="../Tasks/TaskViewer.py" line="58"/> <source>Line</source> <translation>Zeile</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="100"/> - <source>&Go To</source> - <translation>&Gehe zu</translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="103"/> + <source>&Go To</source> + <translation>&Gehe zu</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="106"/> <source>&Copy</source> <translation>&Kopieren</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="139"/> + <location filename="../Tasks/TaskViewer.py" line="142"/> <source>&Paste</source> <translation>Ein&fügen</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="109"/> - <source>&Delete</source> - <translation>&Löschen</translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="112"/> + <source>&Delete</source> + <translation>&Löschen</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="115"/> <source>&Mark Completed</source> <translation>Als &beendet markieren</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="144"/> - <source>Delete Completed &Tasks</source> - <translation>Lösche beendete &Aufgaben</translation> - </message> - <message> - <location filename="../Tasks/TaskViewer.py" line="134"/> - <source>&New Task...</source> - <translation>&Neue Aufgabe...</translation> - </message> - <message> - <location filename="../Tasks/TaskViewer.py" line="117"/> - <source>P&roperties...</source> - <translation>&Eigenschaften...</translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="147"/> + <source>Delete Completed &Tasks</source> + <translation>Lösche beendete &Aufgaben</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="137"/> + <source>&New Task...</source> + <translation>&Neue Aufgabe...</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="120"/> + <source>P&roperties...</source> + <translation>&Eigenschaften...</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="150"/> <source>&Filtered display</source> <translation>Gef&ilterte Anzeige</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="153"/> - <source>Filter c&onfiguration...</source> - <translation>Fil&terkonfiguration...</translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="156"/> + <source>Filter c&onfiguration...</source> + <translation>Fil&terkonfiguration...</translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="159"/> <source>Resi&ze columns</source> <translation>Spaltenbreite an&passen</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="627"/> + <location filename="../Tasks/TaskViewer.py" line="630"/> <source>Activate task filter</source> <translation>Aufgabenfilter aktivieren</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="627"/> + <location filename="../Tasks/TaskViewer.py" line="630"/> <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source> <translation>Der Aufgabenfilter hat keinen aktiven Filter. Soll die Filterkonfiguration erstellt werden?</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="84"/> + <location filename="../Tasks/TaskViewer.py" line="87"/> <source>&Regenerate project tasks</source> <translation>Projektaufgaben &regenerieren</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="697"/> + <location filename="../Tasks/TaskViewer.py" line="704"/> <source>Extracting project tasks...</source> <translation>Extrahiere Projektaufgaben...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="697"/> + <location filename="../Tasks/TaskViewer.py" line="704"/> <source>Abort</source> <translation>Abbrechen</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="706"/> + <location filename="../Tasks/TaskViewer.py" line="713"/> <source>Extracting project tasks... {0}</source> <translation>Extrahiere Projektaufgaben... {0}</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="57"/> + <location filename="../Tasks/TaskViewer.py" line="58"/> <source>Summary</source> <translation>Zusammenfassung</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="159"/> + <location filename="../Tasks/TaskViewer.py" line="162"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="88"/> + <location filename="../Tasks/TaskViewer.py" line="91"/> <source>&Configure scan options</source> <translation>Scanoptionen &konfigurieren</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="659"/> + <location filename="../Tasks/TaskViewer.py" line="662"/> <source>Scan Filter Patterns</source> <translation>Scanfiltermuster</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="659"/> + <location filename="../Tasks/TaskViewer.py" line="662"/> <source>Enter filename patterns of files to be excluded separated by a comma:</source> <translation>Gib Dateimuster getrennt durch Komma von Dateien ein, die ignoriert werden sollen:</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="82"/> + <location filename="../Tasks/TaskViewer.py" line="85"/> <source>P&roject Tasks</source> <translation>&Projektaufgaben</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="697"/> + <location filename="../Tasks/TaskViewer.py" line="704"/> <source>%v/%m Files</source> <translation>%v/%m Dateien</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="701"/> + <location filename="../Tasks/TaskViewer.py" line="708"/> <source>Tasks</source> <translation>Aufgaben</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="94"/> + <location filename="../Tasks/TaskViewer.py" line="97"/> <source>New &Sub-Task...</source> <translation>Neue &Unteraufgabe...</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="141"/> + <location filename="../Tasks/TaskViewer.py" line="144"/> <source>Paste as &Main Task</source> <translation>Als &Hauptaufgabe einfügen</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="176"/> + <location filename="../Tasks/TaskViewer.py" line="179"/> <source>Extracted Tasks</source> <translation>Ausgelesene Aufgaben</translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="178"/> + <location filename="../Tasks/TaskViewer.py" line="181"/> <source>Manual Tasks</source> <translation>Manuelle Aufgaben</translation> </message>
--- a/i18n/eric6_en.ts Sat Sep 03 19:00:12 2016 +0200 +++ b/i18n/eric6_en.ts Sat Sep 03 19:20:42 2016 +0200 @@ -5192,20 +5192,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1352"/> + <location filename="../Debugger/DebugServer.py" line="1337"/> <source> Not connected </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1532"/> + <location filename="../Debugger/DebugServer.py" line="1517"/> <source>Passive debug connection received </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1546"/> + <location filename="../Debugger/DebugServer.py" line="1531"/> <source>Passive debug connection closed </source> <translation type="unfinished"></translation> @@ -5224,667 +5224,631 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1752"/> <source>Run Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="176"/> + <location filename="../Debugger/DebugUI.py" line="173"/> <source>&Run Script...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="181"/> + <location filename="../Debugger/DebugUI.py" line="178"/> <source>Run the current Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="182"/> + <location filename="../Debugger/DebugUI.py" line="179"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1795"/> + <location filename="../Debugger/DebugUI.py" line="1767"/> <source>Run Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="191"/> + <location filename="../Debugger/DebugUI.py" line="188"/> <source>Run &Project...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="196"/> + <location filename="../Debugger/DebugUI.py" line="193"/> <source>Run the current Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="197"/> + <location filename="../Debugger/DebugUI.py" line="194"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="207"/> + <location filename="../Debugger/DebugUI.py" line="204"/> <source>Coverage run of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="207"/> + <location filename="../Debugger/DebugUI.py" line="204"/> <source>Coverage run of Script...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="212"/> + <location filename="../Debugger/DebugUI.py" line="209"/> <source>Perform a coverage run of the current Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="214"/> + <location filename="../Debugger/DebugUI.py" line="211"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="223"/> + <location filename="../Debugger/DebugUI.py" line="220"/> <source>Coverage run of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="223"/> + <location filename="../Debugger/DebugUI.py" line="220"/> <source>Coverage run of Project...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="228"/> + <location filename="../Debugger/DebugUI.py" line="225"/> <source>Perform a coverage run of the current Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="230"/> + <location filename="../Debugger/DebugUI.py" line="227"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="240"/> + <location filename="../Debugger/DebugUI.py" line="237"/> <source>Profile Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="240"/> + <location filename="../Debugger/DebugUI.py" line="237"/> <source>Profile Script...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="244"/> + <location filename="../Debugger/DebugUI.py" line="241"/> <source>Profile the current Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="245"/> + <location filename="../Debugger/DebugUI.py" line="242"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="253"/> + <location filename="../Debugger/DebugUI.py" line="250"/> <source>Profile Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="253"/> + <location filename="../Debugger/DebugUI.py" line="250"/> <source>Profile Project...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="258"/> + <location filename="../Debugger/DebugUI.py" line="255"/> <source>Profile the current Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="260"/> + <location filename="../Debugger/DebugUI.py" line="257"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1874"/> <source>Debug Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="269"/> + <location filename="../Debugger/DebugUI.py" line="266"/> <source>&Debug Script...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="274"/> + <location filename="../Debugger/DebugUI.py" line="271"/> <source>Debug the current Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="275"/> + <location filename="../Debugger/DebugUI.py" line="272"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1917"/> + <location filename="../Debugger/DebugUI.py" line="1889"/> <source>Debug Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="285"/> + <location filename="../Debugger/DebugUI.py" line="282"/> <source>Debug &Project...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="290"/> + <location filename="../Debugger/DebugUI.py" line="287"/> <source>Debug the current Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="292"/> + <location filename="../Debugger/DebugUI.py" line="289"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="306"/> + <location filename="../Debugger/DebugUI.py" line="303"/> <source>Restart the last debugged script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="323"/> + <location filename="../Debugger/DebugUI.py" line="320"/> <source>Stop the running script.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="333"/> + <location filename="../Debugger/DebugUI.py" line="330"/> <source>Continue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="333"/> + <location filename="../Debugger/DebugUI.py" line="330"/> <source>&Continue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="338"/> + <location filename="../Debugger/DebugUI.py" line="335"/> <source>Continue running the program from the current line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="340"/> + <location filename="../Debugger/DebugUI.py" line="337"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="349"/> + <location filename="../Debugger/DebugUI.py" line="346"/> <source>Continue to Cursor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="349"/> + <location filename="../Debugger/DebugUI.py" line="346"/> <source>Continue &To Cursor</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="351"/> + <source>Continue running the program from the current line to the current cursor position</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="354"/> - <source>Continue running the program from the current line to the current cursor position</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="365"/> + <location filename="../Debugger/DebugUI.py" line="362"/> <source>Single Step</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="365"/> + <location filename="../Debugger/DebugUI.py" line="362"/> <source>Sin&gle Step</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="370"/> + <location filename="../Debugger/DebugUI.py" line="367"/> <source>Execute a single Python statement</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="371"/> + <location filename="../Debugger/DebugUI.py" line="368"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="381"/> + <location filename="../Debugger/DebugUI.py" line="378"/> <source>Step Over</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="381"/> + <location filename="../Debugger/DebugUI.py" line="378"/> <source>Step &Over</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="383"/> + <source>Execute a single Python statement staying in the current frame</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="386"/> - <source>Execute a single Python statement staying in the current frame</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="389"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="400"/> + <location filename="../Debugger/DebugUI.py" line="397"/> <source>Step Out</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="400"/> + <location filename="../Debugger/DebugUI.py" line="397"/> <source>Step Ou&t</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="402"/> + <source>Execute Python statements until leaving the current frame</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="405"/> - <source>Execute Python statements until leaving the current frame</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="408"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="419"/> + <location filename="../Debugger/DebugUI.py" line="416"/> <source>Stop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="419"/> + <location filename="../Debugger/DebugUI.py" line="416"/> <source>&Stop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="424"/> + <location filename="../Debugger/DebugUI.py" line="421"/> <source>Stop debugging</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="425"/> + <location filename="../Debugger/DebugUI.py" line="422"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2209"/> - <source>Evaluate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="434"/> - <source>E&valuate...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="438"/> - <source>Evaluate in current context</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="439"/> - <source><b>Evaluate</b><p>Evaluate an expression in the current context of the debugged program. The result is displayed in the shell window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="2238"/> - <source>Execute</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="448"/> - <source>E&xecute...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="452"/> - <source>Execute a one line statement in the current context</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="454"/> - <source><b>Execute</b><p>Execute a one line statement in the current context of the debugged program.</p></source> + <location filename="../Debugger/DebugUI.py" line="429"/> + <source>Variables Type Filter</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="429"/> + <source>Varia&bles Type Filter...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="433"/> + <source>Configure variables type filter</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="435"/> + <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="445"/> + <source>Exceptions Filter</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="445"/> + <source>&Exceptions Filter...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="449"/> + <source>Configure exceptions filter</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="451"/> + <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="462"/> - <source>Variables Type Filter</source> + <source>Ignored Exceptions</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="462"/> - <source>Varia&bles Type Filter...</source> + <source>&Ignored Exceptions...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="466"/> - <source>Configure variables type filter</source> + <source>Configure ignored exceptions</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="468"/> - <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="478"/> - <source>Exceptions Filter</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="478"/> - <source>&Exceptions Filter...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="482"/> - <source>Configure exceptions filter</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="484"/> - <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="495"/> - <source>Ignored Exceptions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="495"/> - <source>&Ignored Exceptions...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="499"/> - <source>Configure ignored exceptions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="501"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="520"/> + <location filename="../Debugger/DebugUI.py" line="487"/> <source>Toggle Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="514"/> + <location filename="../Debugger/DebugUI.py" line="481"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="488"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="535"/> + <location filename="../Debugger/DebugUI.py" line="502"/> <source>Edit Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="529"/> + <location filename="../Debugger/DebugUI.py" line="496"/> <source>Edit Breakpoint...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="529"/> + <location filename="../Debugger/DebugUI.py" line="496"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="503"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="518"/> <source>Next Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="552"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="533"/> <source>Previous Breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="567"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="580"/> + <location filename="../Debugger/DebugUI.py" line="547"/> <source>Clear Breakpoints</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="541"/> + <source>Ctrl+Shift+C</source> + <comment>Debug|Clear Breakpoints</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="548"/> + <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="574"/> - <source>Ctrl+Shift+C</source> - <comment>Debug|Clear Breakpoints</comment> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="581"/> - <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="608"/> <source>&Debug</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="610"/> + <location filename="../Debugger/DebugUI.py" line="576"/> <source>&Start</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="612"/> + <location filename="../Debugger/DebugUI.py" line="578"/> <source>&Breakpoints</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="657"/> + <location filename="../Debugger/DebugUI.py" line="621"/> <source>Start</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="671"/> + <location filename="../Debugger/DebugUI.py" line="635"/> <source>Debug</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1036"/> - <source><p>The program has terminated with an exit status of {0}.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1041"/> - <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1088"/> + <location filename="../Debugger/DebugUI.py" line="1061"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1107"/> + <location filename="../Debugger/DebugUI.py" line="1080"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1125"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1166"/> + <location filename="../Debugger/DebugUI.py" line="1139"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1181"/> + <location filename="../Debugger/DebugUI.py" line="1154"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1245"/> + <location filename="../Debugger/DebugUI.py" line="1217"/> <source>The program being debugged has terminated unexpectedly.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1314"/> + <location filename="../Debugger/DebugUI.py" line="1286"/> <source>Breakpoint Condition Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1314"/> + <location filename="../Debugger/DebugUI.py" line="1286"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1350"/> + <location filename="../Debugger/DebugUI.py" line="1322"/> <source>Watch Expression Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1350"/> + <location filename="../Debugger/DebugUI.py" line="1322"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1380"/> + <location filename="../Debugger/DebugUI.py" line="1352"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1384"/> + <location filename="../Debugger/DebugUI.py" line="1356"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1390"/> + <location filename="../Debugger/DebugUI.py" line="1362"/> <source>Watch expression already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1555"/> + <location filename="../Debugger/DebugUI.py" line="1527"/> <source>Coverage of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1542"/> + <location filename="../Debugger/DebugUI.py" line="1514"/> <source>Coverage of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1795"/> + <location filename="../Debugger/DebugUI.py" line="1767"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1674"/> + <location filename="../Debugger/DebugUI.py" line="1646"/> <source>Profile of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1661"/> + <location filename="../Debugger/DebugUI.py" line="1633"/> <source>Profile of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1917"/> + <location filename="../Debugger/DebugUI.py" line="1889"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="2209"/> - <source>Enter the statement to evaluate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="2238"/> - <source>Enter the statement to execute</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> - <source>The program has terminated with an exit status of {0}. -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1066"/> - <source>"{0}" has terminated with an exit status of {1}. -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1057"/> + <location filename="../Debugger/DebugUI.py" line="1030"/> <source>Program terminated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1050"/> - <source>The program has terminated with an exit status of {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1053"/> - <source>"{0}" has terminated with an exit status of {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="302"/> + <location filename="../Debugger/DebugUI.py" line="299"/> <source>Restart</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="308"/> + <location filename="../Debugger/DebugUI.py" line="305"/> <source><b>Restart</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="324"/> + <location filename="../Debugger/DebugUI.py" line="321"/> <source><b>Stop</b><p>This stops the script running in the debugger backend.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1231"/> + <location filename="../Debugger/DebugUI.py" line="1203"/> <source><p>The program generate the signal "{0}".<br/>File: <b>{1}</b>, Line: <b>{2}</b></p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Debugger/DebugUI.py" line="997"/> + <source><p>Message: {0}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1003"/> + <source><p>The program has terminated with an exit status of {0}.</p>{1}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1008"/> + <source><p><b>{0}</b> has terminated with an exit status of {1}.</p>{2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1016"/> + <source>Message: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1023"/> + <source>The program has terminated with an exit status of {0}. +{1}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1026"/> + <source>"{0}" has terminated with an exit status of {1}. +{2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1035"/> + <source>The program has terminated with an exit status of {0}. +{1} +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="1039"/> + <source>"{0}" has terminated with an exit status of {1}. +{2} +</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebugViewer</name> @@ -6331,80 +6295,100 @@ </message> </context> <context> - <name>DebuggerInterfacePython</name> - <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="356"/> + <name>DebuggerInterfacePython2</name> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="352"/> <source>Start Debugger</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="147"/> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="143"/> <source><p>No Python2 interpreter configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="356"/> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="352"/> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="797"/> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="815"/> <source>Parent Process</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="798"/> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="816"/> <source>Child process</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="799"/> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="817"/> <source>Client forking</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="799"/> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="817"/> <source>Select the fork branch to follow.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="862"/> + <source>Debug Protocol Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython2.py" line="862"/> + <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebuggerInterfacePython3</name> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="353"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="352"/> <source>Start Debugger</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="353"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="352"/> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="794"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="815"/> <source>Parent Process</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="795"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="816"/> <source>Child process</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="796"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="817"/> <source>Client forking</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="796"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="817"/> <source>Select the fork branch to follow.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython3.py" line="144"/> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="143"/> <source><p>No Python3 interpreter configured.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="862"/> + <source>Debug Protocol Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython3.py" line="862"/> + <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebuggerPropertiesDialog</name> @@ -38863,7 +38847,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3439"/> + <location filename="../Project/Project.py" line="3441"/> <source>New project</source> <translation type="unfinished"></translation> </message> @@ -38893,7 +38877,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3453"/> + <location filename="../Project/Project.py" line="3455"/> <source>Open project</source> <translation type="unfinished"></translation> </message> @@ -38903,7 +38887,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3490"/> + <location filename="../Project/Project.py" line="3492"/> <source>Save project as</source> <translation type="unfinished"></translation> </message> @@ -38923,12 +38907,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3031"/> + <location filename="../Project/Project.py" line="3033"/> <source>Syntax errors detected</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3031"/> + <location filename="../Project/Project.py" line="3033"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>The project contains one file with syntax errors.</numerusform> @@ -38936,642 +38920,642 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3439"/> + <location filename="../Project/Project.py" line="3441"/> <source>&New...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3444"/> + <location filename="../Project/Project.py" line="3446"/> <source>Generate a new project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3445"/> + <location filename="../Project/Project.py" line="3447"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3453"/> + <location filename="../Project/Project.py" line="3455"/> <source>&Open...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3458"/> + <location filename="../Project/Project.py" line="3460"/> <source>Open an existing project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3459"/> + <location filename="../Project/Project.py" line="3461"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3466"/> + <location filename="../Project/Project.py" line="3468"/> <source>Close project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3466"/> + <location filename="../Project/Project.py" line="3468"/> <source>&Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3470"/> + <location filename="../Project/Project.py" line="3472"/> <source>Close the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3471"/> + <location filename="../Project/Project.py" line="3473"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3478"/> + <location filename="../Project/Project.py" line="3480"/> <source>Save project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3669"/> + <location filename="../Project/Project.py" line="3671"/> <source>&Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3482"/> + <location filename="../Project/Project.py" line="3484"/> <source>Save the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3483"/> + <location filename="../Project/Project.py" line="3485"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3490"/> + <location filename="../Project/Project.py" line="3492"/> <source>Save &as...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3494"/> - <source>Save the current project to a new file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3496"/> + <source>Save the current project to a new file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3498"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3505"/> + <location filename="../Project/Project.py" line="3507"/> <source>Add files to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3505"/> + <location filename="../Project/Project.py" line="3507"/> <source>Add &files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3510"/> - <source>Add files to the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3512"/> + <source>Add files to the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3514"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3521"/> + <location filename="../Project/Project.py" line="3523"/> <source>Add directory to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3521"/> + <location filename="../Project/Project.py" line="3523"/> <source>Add directory...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3526"/> - <source>Add a directory to the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3528"/> + <source>Add a directory to the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3530"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3536"/> + <location filename="../Project/Project.py" line="3538"/> <source>Add translation to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3536"/> + <location filename="../Project/Project.py" line="3538"/> <source>Add &translation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3541"/> - <source>Add a translation to the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3543"/> + <source>Add a translation to the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3545"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3551"/> + <location filename="../Project/Project.py" line="3553"/> <source>Search new files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3551"/> + <location filename="../Project/Project.py" line="3553"/> <source>Searc&h new files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3555"/> - <source>Search new files in the project directory.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3557"/> + <source>Search new files in the project directory.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3559"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3580"/> + <location filename="../Project/Project.py" line="3582"/> <source>Project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3580"/> + <location filename="../Project/Project.py" line="3582"/> <source>&Properties...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3585"/> + <location filename="../Project/Project.py" line="3587"/> <source>Show the project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3586"/> + <location filename="../Project/Project.py" line="3588"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3593"/> + <location filename="../Project/Project.py" line="3595"/> <source>User project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3593"/> + <location filename="../Project/Project.py" line="3595"/> <source>&User Properties...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3598"/> - <source>Show the user specific project properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3600"/> + <source>Show the user specific project properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3602"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3608"/> + <location filename="../Project/Project.py" line="3610"/> <source>Filetype Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3608"/> + <location filename="../Project/Project.py" line="3610"/> <source>Filetype Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3612"/> - <source>Show the project filetype associations</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3614"/> + <source>Show the project filetype associations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3616"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3626"/> + <location filename="../Project/Project.py" line="3628"/> <source>Lexer Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3626"/> + <location filename="../Project/Project.py" line="3628"/> <source>Lexer Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3630"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3632"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3634"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3644"/> + <location filename="../Project/Project.py" line="3646"/> <source>Debugger Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3644"/> + <location filename="../Project/Project.py" line="3646"/> <source>Debugger &Properties...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3648"/> + <location filename="../Project/Project.py" line="3650"/> <source>Show the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3649"/> + <location filename="../Project/Project.py" line="3651"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3657"/> + <location filename="../Project/Project.py" line="3659"/> <source>Load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3657"/> + <location filename="../Project/Project.py" line="3659"/> <source>&Load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3661"/> + <location filename="../Project/Project.py" line="3663"/> <source>Load the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3662"/> + <location filename="../Project/Project.py" line="3664"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3669"/> + <location filename="../Project/Project.py" line="3671"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3673"/> + <location filename="../Project/Project.py" line="3675"/> <source>Save the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3674"/> + <location filename="../Project/Project.py" line="3676"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3681"/> + <location filename="../Project/Project.py" line="3683"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3681"/> + <location filename="../Project/Project.py" line="3683"/> <source>&Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3685"/> + <location filename="../Project/Project.py" line="3687"/> <source>Delete the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3686"/> + <location filename="../Project/Project.py" line="3688"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3694"/> + <location filename="../Project/Project.py" line="3696"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3694"/> + <location filename="../Project/Project.py" line="3696"/> <source>&Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3698"/> + <location filename="../Project/Project.py" line="3700"/> <source>Reset the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3699"/> + <location filename="../Project/Project.py" line="3701"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3708"/> + <location filename="../Project/Project.py" line="3710"/> <source>Load session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3712"/> + <location filename="../Project/Project.py" line="3714"/> <source>Load the projects session file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3713"/> + <location filename="../Project/Project.py" line="3715"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3726"/> + <location filename="../Project/Project.py" line="3728"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3730"/> + <location filename="../Project/Project.py" line="3732"/> <source>Save the projects session file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3731"/> + <location filename="../Project/Project.py" line="3733"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3744"/> + <location filename="../Project/Project.py" line="3746"/> <source>Delete session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3748"/> + <location filename="../Project/Project.py" line="3750"/> <source>Delete the projects session file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3749"/> + <location filename="../Project/Project.py" line="3751"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3758"/> + <location filename="../Project/Project.py" line="3760"/> <source>Code Metrics</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3758"/> + <location filename="../Project/Project.py" line="3760"/> <source>&Code Metrics...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3762"/> - <source>Show some code metrics for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3764"/> + <source>Show some code metrics for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3766"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3772"/> + <location filename="../Project/Project.py" line="3774"/> <source>Python Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3772"/> + <location filename="../Project/Project.py" line="3774"/> <source>Code Co&verage...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3776"/> - <source>Show code coverage information for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3778"/> + <source>Show code coverage information for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3780"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4562"/> + <location filename="../Project/Project.py" line="4564"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3786"/> + <location filename="../Project/Project.py" line="3788"/> <source>&Profile Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3790"/> - <source>Show profiling data for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3792"/> + <source>Show profiling data for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3794"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4616"/> + <location filename="../Project/Project.py" line="4618"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3801"/> + <location filename="../Project/Project.py" line="3803"/> <source>&Application Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3805"/> - <source>Show a diagram of the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3807"/> + <source>Show a diagram of the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3809"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4774"/> + <location filename="../Project/Project.py" line="4776"/> <source>Create Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3830"/> + <location filename="../Project/Project.py" line="3832"/> <source>Create &Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4968"/> <source>Create Plugin Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> + <location filename="../Project/Project.py" line="3848"/> <source>Create Plugin &Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3862"/> + <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (Snapshot)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3862"/> + <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (&Snapshot)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3898"/> - <source>&Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3899"/> - <source>Open &Recent Projects</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3900"/> + <source>&Project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3901"/> + <source>Open &Recent Projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3902"/> <source>&Version Control</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3904"/> - <source>Chec&k</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3906"/> - <source>Sho&w</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3907"/> - <source>&Diagrams</source> + <source>Chec&k</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="3908"/> - <source>Session</source> + <source>Sho&w</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="3909"/> - <source>Source &Documentation</source> + <source>&Diagrams</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3910"/> + <source>Session</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="3911"/> + <source>Source &Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3913"/> <source>Debugger</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3912"/> + <location filename="../Project/Project.py" line="3914"/> <source>Pac&kagers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4020"/> + <location filename="../Project/Project.py" line="4022"/> <source>Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4086"/> + <location filename="../Project/Project.py" line="4088"/> <source>&Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4225"/> + <location filename="../Project/Project.py" line="4227"/> <source>Search New Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4225"/> + <location filename="../Project/Project.py" line="4227"/> <source>There were no new files found to be added.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4371"/> + <location filename="../Project/Project.py" line="4373"/> <source>Version Control System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4371"/> + <location filename="../Project/Project.py" line="4373"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4489"/> + <location filename="../Project/Project.py" line="4491"/> <source>Coverage Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4539"/> + <location filename="../Project/Project.py" line="4541"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4512"/> + <location filename="../Project/Project.py" line="4514"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4512"/> + <location filename="../Project/Project.py" line="4514"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4562"/> + <location filename="../Project/Project.py" line="4564"/> <source>Please select a profile file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4616"/> + <location filename="../Project/Project.py" line="4618"/> <source>Include module names?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4734"/> + <location filename="../Project/Project.py" line="4736"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4774"/> + <location filename="../Project/Project.py" line="4776"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4794"/> + <location filename="../Project/Project.py" line="4796"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4802"/> + <location filename="../Project/Project.py" line="4804"/> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4816"/> + <location filename="../Project/Project.py" line="4818"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4855"/> + <location filename="../Project/Project.py" line="4857"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4924"/> + <location filename="../Project/Project.py" line="4926"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -39591,22 +39575,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3817"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3815"/> + <location filename="../Project/Project.py" line="3817"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3819"/> - <source>Load a diagram from file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3821"/> + <source>Load a diagram from file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3823"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> @@ -39636,52 +39620,52 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4359"/> + <location filename="../Project/Project.py" line="4361"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4966"/> + <location filename="../Project/Project.py" line="4968"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3835"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3837"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3839"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3851"/> - <source>Create an eric6 plugin archive file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3853"/> + <source>Create an eric6 plugin archive file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3855"/> <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3867"/> - <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3869"/> + <source>Create an eric6 plugin archive file (snapshot release).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3871"/> <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4829"/> + <location filename="../Project/Project.py" line="4831"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4878"/> + <location filename="../Project/Project.py" line="4880"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation type="unfinished"></translation> </message> @@ -39711,28 +39695,28 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3565"/> + <location filename="../Project/Project.py" line="3567"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3571"/> - <source>Search for a file in the project list of files.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3573"/> + <source>Search for a file in the project list of files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3575"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3565"/> + <location filename="../Project/Project.py" line="3567"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3565"/> + <location filename="../Project/Project.py" line="3567"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> @@ -56941,158 +56925,158 @@ <context> <name>TaskViewer</name> <message> - <location filename="../Tasks/TaskViewer.py" line="57"/> + <location filename="../Tasks/TaskViewer.py" line="58"/> <source>Summary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="57"/> + <location filename="../Tasks/TaskViewer.py" line="58"/> <source>Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="57"/> + <location filename="../Tasks/TaskViewer.py" line="58"/> <source>Line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="134"/> + <location filename="../Tasks/TaskViewer.py" line="137"/> <source>&New Task...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="84"/> + <location filename="../Tasks/TaskViewer.py" line="87"/> <source>&Regenerate project tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="100"/> - <source>&Go To</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="103"/> + <source>&Go To</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="106"/> <source>&Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="139"/> + <location filename="../Tasks/TaskViewer.py" line="142"/> <source>&Paste</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="109"/> - <source>&Delete</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="112"/> + <source>&Delete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="115"/> <source>&Mark Completed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="144"/> - <source>Delete Completed &Tasks</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Tasks/TaskViewer.py" line="117"/> - <source>P&roperties...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="147"/> + <source>Delete Completed &Tasks</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="120"/> + <source>P&roperties...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="150"/> <source>&Filtered display</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="153"/> - <source>Filter c&onfiguration...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Tasks/TaskViewer.py" line="156"/> - <source>Resi&ze columns</source> + <source>Filter c&onfiguration...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Tasks/TaskViewer.py" line="159"/> + <source>Resi&ze columns</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Tasks/TaskViewer.py" line="162"/> <source>Configure...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="627"/> + <location filename="../Tasks/TaskViewer.py" line="630"/> <source>Activate task filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="627"/> + <location filename="../Tasks/TaskViewer.py" line="630"/> <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="697"/> + <location filename="../Tasks/TaskViewer.py" line="704"/> <source>Extracting project tasks...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="697"/> + <location filename="../Tasks/TaskViewer.py" line="704"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="706"/> + <location filename="../Tasks/TaskViewer.py" line="713"/> <source>Extracting project tasks... {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="88"/> + <location filename="../Tasks/TaskViewer.py" line="91"/> <source>&Configure scan options</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="659"/> + <location filename="../Tasks/TaskViewer.py" line="662"/> <source>Scan Filter Patterns</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="659"/> + <location filename="../Tasks/TaskViewer.py" line="662"/> <source>Enter filename patterns of files to be excluded separated by a comma:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="82"/> + <location filename="../Tasks/TaskViewer.py" line="85"/> <source>P&roject Tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="697"/> + <location filename="../Tasks/TaskViewer.py" line="704"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="701"/> + <location filename="../Tasks/TaskViewer.py" line="708"/> <source>Tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="94"/> + <location filename="../Tasks/TaskViewer.py" line="97"/> <source>New &Sub-Task...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="141"/> + <location filename="../Tasks/TaskViewer.py" line="144"/> <source>Paste as &Main Task</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="176"/> + <location filename="../Tasks/TaskViewer.py" line="179"/> <source>Extracted Tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Tasks/TaskViewer.py" line="178"/> + <location filename="../Tasks/TaskViewer.py" line="181"/> <source>Manual Tasks</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_es.ts Sat Sep 03 19:00:12 2016 +0200 +++ b/i18n/eric6_es.ts Sat Sep 03 19:20:42 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation>Añadir Marcador</translation> </message> @@ -1704,7 +1704,7 @@ <translation>Editar &Dirección</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation>&Borrar</translation> </message> @@ -2401,12 +2401,12 @@ <translation>Pulsar para guardar el trazado de llamadas como archivo de texto</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="99"/> <source>From</source> <translation>Desde</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="104"/> <source>To</source> <translation>Hasta</translation> </message> @@ -2562,7 +2562,7 @@ <translation>Pulsar para cancelar la edición compartida</translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation>Limpiar</translation> </message> @@ -2862,7 +2862,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation>Lista Blanca de ClickToFlash</translation> </message> @@ -4781,7 +4781,7 @@ <translation>Dominio:</translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation><no hay cookie seleccionada></translation> </message> @@ -5226,7 +5226,7 @@ <translation>Conexión desde un host ilegal</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1352"/> + <location filename="../Debugger/DebugServer.py" line="1337"/> <source> Not connected </source> @@ -5238,14 +5238,14 @@ <translation><p>Se ha intentado una conexión desde el host ilegal <b>{0}</b>. ¿Aceptar esta conexión?.</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1532"/> + <location filename="../Debugger/DebugServer.py" line="1517"/> <source>Passive debug connection received </source> <translation>Recibida conexión pasiva de depuración </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1546"/> + <location filename="../Debugger/DebugServer.py" line="1531"/> <source>Passive debug connection closed </source> <translation>Cerrada conexión pasiva de depuración @@ -5265,571 +5265,571 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1780"/> + <location filename="../Debugger/DebugUI.py" line="1752"/> <source>Run Script</source> <translation>Ejecutar Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="176"/> + <location filename="../Debugger/DebugUI.py" line="173"/> <source>&Run Script...</source> <translation>&Ejecutar script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="181"/> + <location filename="../Debugger/DebugUI.py" line="178"/> <source>Run the current Script</source> <translation>Ejecutar el script actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="182"/> + <location filename="../Debugger/DebugUI.py" line="179"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Ejecutar Script</b><p>Establece los parámetros de la línea de comandos y ejecuta el script fuera del depurador. Si tiene cambios sin guardar, deben ser guardados primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1795"/> + <location filename="../Debugger/DebugUI.py" line="1767"/> <source>Run Project</source> <translation>Ejecutar Proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="191"/> + <location filename="../Debugger/DebugUI.py" line="188"/> <source>Run &Project...</source> <translation>Ejecutar &Proyecto...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="196"/> + <location filename="../Debugger/DebugUI.py" line="193"/> <source>Run the current Project</source> <translation>Ejecutar el proyecto Actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="197"/> + <location filename="../Debugger/DebugUI.py" line="194"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Ejecutar Proyecto</b><p>Establece los argumentos de la línea de comandos y ejecuta el proyecto actual fuera del depurador. Si los archivos del proyecto actual tienen archivos sin guardar, deben ser guardados primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="207"/> + <location filename="../Debugger/DebugUI.py" line="204"/> <source>Coverage run of Script</source> <translation>Ejecutar Script con definición de cobertura</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="207"/> + <location filename="../Debugger/DebugUI.py" line="204"/> <source>Coverage run of Script...</source> <translation>Ejecutar Script con definición de cobertura...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="212"/> + <location filename="../Debugger/DebugUI.py" line="209"/> <source>Perform a coverage run of the current Script</source> <translation>Llevar a cabo una ejecución con definición de cobertura del Script actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="214"/> + <location filename="../Debugger/DebugUI.py" line="211"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Ejecutar Script con definición de cobertura</b><p>Establece los argumentos de línea de comando y ejecuta el script bajo el control de una herramienta de análisis de cobertura. Si el archivo tiene cambios sin guardar, pueden ser guardados primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="223"/> + <location filename="../Debugger/DebugUI.py" line="220"/> <source>Coverage run of Project</source> <translation>Ejecutar el Proyecto con definición de cobertura</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="223"/> + <location filename="../Debugger/DebugUI.py" line="220"/> <source>Coverage run of Project...</source> <translation>Ejecutar el Proyecto con definición de cobertura...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="228"/> + <location filename="../Debugger/DebugUI.py" line="225"/> <source>Perform a coverage run of the current Project</source> <translation>Llevar a cabo una ejecución con definición de cobertura del Proyecto actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="230"/> + <location filename="../Debugger/DebugUI.py" line="227"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Ejecutar Proyecto con definición de cobertura</b><p>Establecer los argumentos de línea de comando y ejecutar el proyecto actual bajo el control de una herramienta de análisis de cobertura. Si hay archivos con cambios sin guardar, se pueden guardar primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="240"/> + <location filename="../Debugger/DebugUI.py" line="237"/> <source>Profile Script</source> <translation>Hacer Profiling del Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="240"/> + <location filename="../Debugger/DebugUI.py" line="237"/> <source>Profile Script...</source> <translation>Hacer Profiling del Script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="244"/> + <location filename="../Debugger/DebugUI.py" line="241"/> <source>Profile the current Script</source> <translation>Hacer Profiling del Script actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="245"/> + <location filename="../Debugger/DebugUI.py" line="242"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Hacer Profiling del Script</b><p>Establecer los argumentos de línea de comandos y hacer profiling del script. Si el archivo tiene cambios sin guardar, se pueden guardar primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="253"/> + <location filename="../Debugger/DebugUI.py" line="250"/> <source>Profile Project</source> <translation>Hacer Profiling del Proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="253"/> + <location filename="../Debugger/DebugUI.py" line="250"/> <source>Profile Project...</source> <translation>Hacer Profiling del Proyecto...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="258"/> + <location filename="../Debugger/DebugUI.py" line="255"/> <source>Profile the current Project</source> <translation>Hacer Profiling del Proyecto actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="260"/> + <location filename="../Debugger/DebugUI.py" line="257"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Hacer Profiling del Proyecto</b><p>Establecer los argumentos de línea de comandos y hacer profiling del proyecto actual. Si hay archivos que tienen cambios sin guardar, se puede guardar primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1902"/> + <location filename="../Debugger/DebugUI.py" line="1874"/> <source>Debug Script</source> <translation>Depurar Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="269"/> + <location filename="../Debugger/DebugUI.py" line="266"/> <source>&Debug Script...</source> <translation>&Depurar script...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="274"/> + <location filename="../Debugger/DebugUI.py" line="271"/> <source>Debug the current Script</source> <translation>Depurar el script actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="275"/> + <location filename="../Debugger/DebugUI.py" line="272"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Depurar Script</b><p>Establecer los argumentos de línea de comandos y establecer la línea actual en la ventana actual de edición como la primera sentencia Python ejecutable. Si el archivo tiene cambios sin guardar, se puede guardar primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1917"/> + <location filename="../Debugger/DebugUI.py" line="1889"/> <source>Debug Project</source> <translation>Depurar proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="285"/> + <location filename="../Debugger/DebugUI.py" line="282"/> <source>Debug &Project...</source> <translation>Depurar &proyecto...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="290"/> + <location filename="../Debugger/DebugUI.py" line="287"/> <source>Debug the current Project</source> <translation>Depurar el proyecto actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="292"/> + <location filename="../Debugger/DebugUI.py" line="289"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Depurar Proyecto</b><p>Establecer los argumentos de línea de comandos y establecer la línea actual en la ventana actual de edición como la primera sentencia Python ejecutable. Si hay archivos que tienen cambios sin guardar, se pueden guardar primero.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="306"/> + <location filename="../Debugger/DebugUI.py" line="303"/> <source>Restart the last debugged script</source> <translation>Reiniciar el último script depurado</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="323"/> + <location filename="../Debugger/DebugUI.py" line="320"/> <source>Stop the running script.</source> <translation>Detener el script en ejecución.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="333"/> + <location filename="../Debugger/DebugUI.py" line="330"/> <source>Continue</source> <translation>Continuar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="333"/> + <location filename="../Debugger/DebugUI.py" line="330"/> <source>&Continue</source> <translation>&Continuar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="338"/> + <location filename="../Debugger/DebugUI.py" line="335"/> <source>Continue running the program from the current line</source> <translation>Continúa el programa a partir de la línea actual</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="340"/> + <location filename="../Debugger/DebugUI.py" line="337"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Continuar</b><p>Continúa la ejecución del programa a partir de la línea actual. El programa se detendrá al terminar o al alcanzar un breakpoint.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="349"/> + <location filename="../Debugger/DebugUI.py" line="346"/> <source>Continue to Cursor</source> <translation>Continuar hasta el cursor</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="349"/> + <location filename="../Debugger/DebugUI.py" line="346"/> <source>Continue &To Cursor</source> <translation>Continuar &hasta el cursor</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="351"/> + <source>Continue running the program from the current line to the current cursor position</source> + <translation>Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="354"/> - <source>Continue running the program from the current line to the current cursor position</source> - <translation>Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="357"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>Continuar hasta el Cursor</b><p>Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="365"/> + <location filename="../Debugger/DebugUI.py" line="362"/> <source>Single Step</source> <translation>Un paso</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="365"/> + <location filename="../Debugger/DebugUI.py" line="362"/> <source>Sin&gle Step</source> <translation>Un &paso</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="370"/> + <location filename="../Debugger/DebugUI.py" line="367"/> <source>Execute a single Python statement</source> <translation>Ejecuta una sentencia python</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="371"/> + <location filename="../Debugger/DebugUI.py" line="368"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>Paso Único</b><p>Ejecutar una única sentencia Python. Si la sentencia es un <tt>import</tt>, un constructor de clase, o un método o llamada a función entonces el control se devuelve al depurador en la siguiente sentencia.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="381"/> + <location filename="../Debugger/DebugUI.py" line="378"/> <source>Step Over</source> <translation>Saltar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="381"/> + <location filename="../Debugger/DebugUI.py" line="378"/> <source>Step &Over</source> <translation>Salta&r</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="383"/> + <source>Execute a single Python statement staying in the current frame</source> + <translation>Ejecutar una única sentencia Python sin salir del marco actual</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="386"/> - <source>Execute a single Python statement staying in the current frame</source> - <translation>Ejecutar una única sentencia Python sin salir del marco actual</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="389"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation><b>Saltar</b><p>Eejcutar una única sentencia Python sin salir del marco actual. Si la sentencia es un <tt>import</tt>, un constructor de clase, o un método o llamada a función, el control se devuelve al depurador despues de que la sentencia se haya completado.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="400"/> + <location filename="../Debugger/DebugUI.py" line="397"/> <source>Step Out</source> <translation>Paso atras</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="400"/> + <location filename="../Debugger/DebugUI.py" line="397"/> <source>Step Ou&t</source> <translation>Paso &atras</translation> </message> <message> + <location filename="../Debugger/DebugUI.py" line="402"/> + <source>Execute Python statements until leaving the current frame</source> + <translation>Ejecutar sentencia Python hasta abandonar el marco actual</translation> + </message> + <message> <location filename="../Debugger/DebugUI.py" line="405"/> - <source>Execute Python statements until leaving the current frame</source> - <translation>Ejecutar sentencia Python hasta abandonar el marco actual</translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="408"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation><b>Saltar fuera</b><p>Ejecuta sentencias Python hasta salir del marco actual. Si las sentencias están dentro de una sentencia <tt>import</tt>, un constructor de clase, o un método o llamada a función, el control se devuelve al depurador despues de que el marco actual ha sido abandonado.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="419"/> + <location filename="../Debugger/DebugUI.py" line="416"/> <source>Stop</source> <translation>Detener</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="419"/> + <location filename="../Debugger/DebugUI.py" line="416"/> <source>&Stop</source> <translation>&Parar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="424"/> + <location filename="../Debugger/DebugUI.py" line="421"/> <source>Stop debugging</source> <translation>Detener depuración</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="425"/> + <location filename="../Debugger/DebugUI.py" line="422"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Detener</b><p>Detener la sesión de depuración en ejecución.</p></translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Evaluate</source> - <translation>Evaluar</translation> + <translation type="obsolete">Evaluar</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="434"/> <source>E&valuate...</source> - <translation>E&valuar...</translation> + <translation type="obsolete">E&valuar...</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="438"/> <source>Evaluate in current context</source> - <translation>Evaluar en el contexto actual</translation> + <translation type="obsolete">Evaluar en el contexto actual</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Execute</source> - <translation>Ejecutar</translation> + <translation type="obsolete">Ejecutar</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="448"/> <source>E&xecute...</source> - <translation>E&jecutar...</translation> + <translation type="obsolete">E&jecutar...</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="452"/> <source>Execute a one line statement in the current context</source> - <translation>Ejecutar una sentencia de una sola línea en el contexto actual</translation> + <translation type="obsolete">Ejecutar una sentencia de una sola línea en el contexto actual</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="454"/> <source><b>Execute</b><p>Execute a one line statement in the current context of the debugged program.</p></source> - <translation><b>Ejecutar</b><p>Ejecutar una sentencia de una sola línea en el contexto actual del programa en depuración.</p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="462"/> + <translation type="obsolete"><b>Ejecutar</b><p>Ejecutar una sentencia de una sola línea en el contexto actual del programa en depuración.</p></translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="429"/> <source>Variables Type Filter</source> <translation>Fitro por tipo de variable</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="462"/> + <location filename="../Debugger/DebugUI.py" line="429"/> <source>Varia&bles Type Filter...</source> <translation>&Fitro por tipo de variable...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="466"/> + <location filename="../Debugger/DebugUI.py" line="433"/> <source>Configure variables type filter</source> <translation>Configurar Fitro por tipo de variable</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="468"/> + <location filename="../Debugger/DebugUI.py" line="435"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation><b>Fitro por tipo de variable</b><p>Configurar el fitro por tipo de variable. Durante una sesión de depuración, solo se muestran en las ventanas de variables locales o globales los tipos de variable que no han sido seleccionados.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="478"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source>Exceptions Filter</source> <translation>Filtro de excepciones</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="478"/> + <location filename="../Debugger/DebugUI.py" line="445"/> <source>&Exceptions Filter...</source> <translation>Filtro de e&xcepciones...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="482"/> + <location filename="../Debugger/DebugUI.py" line="449"/> <source>Configure exceptions filter</source> <translation>Configurar Filtro de excepciones</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="484"/> + <location filename="../Debugger/DebugUI.py" line="451"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>Filtro de excepciones</b><p>Configurar el filtro de excepciones. Durante una sesión de depuración solo se resaltan los tipos de excepción de la lista.</p><p>Por favor, note que se resaltarán todas las excepciones que no sean gestionadas, independientemente de la lista de filtros.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="520"/> + <location filename="../Debugger/DebugUI.py" line="487"/> <source>Toggle Breakpoint</source> <translation>Alternar Punto de Interrupción (Breakpoint)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="521"/> + <location filename="../Debugger/DebugUI.py" line="488"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Alternar Punto de Interrupción</b><p>Inserta o elimina un punto de interrupción en la línea actual del editor actual.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="535"/> + <location filename="../Debugger/DebugUI.py" line="502"/> <source>Edit Breakpoint</source> <translation>Editar Punto de Interrupción (Breakpoint)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="529"/> + <location filename="../Debugger/DebugUI.py" line="496"/> <source>Edit Breakpoint...</source> <translation>Editar Punto de Interrupción (Breakpoint)...</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="536"/> + <location filename="../Debugger/DebugUI.py" line="503"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>Editar Punto de Interrupción (Breakpoint)</b><p>Abre un diálogo para editar las propiedades de los breakpoints. Se aplica a la línea actual del editor actual.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="551"/> + <location filename="../Debugger/DebugUI.py" line="518"/> <source>Next Breakpoint</source> <translation>Siguiente Punto de Interrupción (Breakpoint)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="544"/> + <location filename="../Debugger/DebugUI.py" line="511"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation>Ctrl+Shift+PgDown</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="552"/> + <location filename="../Debugger/DebugUI.py" line="519"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>Siguiente Breakpoint</b><p>Mueve el cursor al siguiente breakpoint.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="566"/> + <location filename="../Debugger/DebugUI.py" line="533"/> <source>Previous Breakpoint</source> <translation>Breakpoint (Punto de interrupción) Anterior</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="559"/> + <location filename="../Debugger/DebugUI.py" line="526"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation>Ctrl+Shift+PgUp</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="567"/> + <location filename="../Debugger/DebugUI.py" line="534"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>Punto de Interrupción (Breakpoint) Anterior</b><p>Mueve el cursor al anterior punto de interrupción.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="580"/> + <location filename="../Debugger/DebugUI.py" line="547"/> <source>Clear Breakpoints</source> <translation>Eliminar Puntos de Interrupción (Breakpoints)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="574"/> + <location filename="../Debugger/DebugUI.py" line="541"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation>Ctrl+Shift+C</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="581"/> + <location filename="../Debugger/DebugUI.py" line="548"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation><b>Eliminar Puntos de Interrupción (Breakpoints)</b><p>Elimina todos los puntos de interrupción del editor.</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="608"/> + <location filename="../Debugger/DebugUI.py" line="574"/> <source>&Debug</source> <translation>&Depurar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="610"/> + <location filename="../Debugger/DebugUI.py" line="576"/> <source>&Start</source> <translation>&Iniciar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="612"/> + <location filename="../Debugger/DebugUI.py" line="578"/> <source>&Breakpoints</source> <translation>Puntos de interrupción (&Breakpoints)</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="657"/> + <location filename="../Debugger/DebugUI.py" line="621"/> <source>Start</source> <translation>Iniciar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="671"/> + <location filename="../Debugger/DebugUI.py" line="635"/> <source>Debug</source> <translation>Depurar</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1088"/> + <location filename="../Debugger/DebugUI.py" line="1061"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>El programa en depuración contiene un error de sintaxis no especificado.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1125"/> + <location filename="../Debugger/DebugUI.py" line="1098"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Ha saltado una excepción que no ha sido manejada. Vea la ventana de shell para mas detalles.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1245"/> + <location filename="../Debugger/DebugUI.py" line="1217"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>El programa en depuración ha terminado inesperadamente.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1314"/> + <location filename="../Debugger/DebugUI.py" line="1286"/> <source>Breakpoint Condition Error</source> <translation>Error en la condición del Breakpoint</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1555"/> + <location filename="../Debugger/DebugUI.py" line="1527"/> <source>Coverage of Project</source> <translation>Cobertura del Proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1542"/> + <location filename="../Debugger/DebugUI.py" line="1514"/> <source>Coverage of Script</source> <translation>Cobertura del Script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1795"/> + <location filename="../Debugger/DebugUI.py" line="1767"/> <source>There is no main script defined for the current project. Aborting</source> <translation>No hay script principal definido para el proyecto actual. Abortando</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1674"/> + <location filename="../Debugger/DebugUI.py" line="1646"/> <source>Profile of Project</source> <translation>Profiling del proyecto</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1661"/> + <location filename="../Debugger/DebugUI.py" line="1633"/> <source>Profile of Script</source> <translation>Profiling del script</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1917"/> + <location filename="../Debugger/DebugUI.py" line="1889"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>No hay script principal definido para el proyecto actual. La depuración no es posible.</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="2209"/> <source>Enter the statement to evaluate</source> - <translation>Introduzca la sentencia a evaluar</translation> + <translation type="obsolete">Introduzca la sentencia a evaluar</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="2238"/> <source>Enter the statement to execute</source> - <translation>Introduzca la sentencia a ejecutar</translation> + <translation type="obsolete">Introduzca la sentencia a ejecutar</translation> </message> <message> <location filename="../Debugger/DebugUI.py" line="439"/> <source><b>Evaluate</b><p>Evaluate an expression in the current context of the debugged program. The result is displayed in the shell window.</p></source> - <translation><b>Evaluar</b><p>Evaluar una expresión en el contexto actual del programa en depuración. El resultado se muestra en la ventana de shell.</p></translation> - </message> - <message> - <location filename="../Debugger/DebugUI.py" line="1350"/> + <translation type="obsolete"><b>Evaluar</b><p>Evaluar una expresión en el contexto actual del programa en depuración. El resultado se muestra en la ventana de shell.</p></translation> + </message>