--- a/i18n/eric6_de.ts Tue Apr 17 19:53:46 2018 +0200 +++ b/i18n/eric6_de.ts Tue Apr 17 19:56:29 2018 +0200 @@ -5548,621 +5548,621 @@ <context> <name>DebugUI</name> <message> - <location filename="../Debugger/DebugUI.py" line="1847"/> + <location filename="../Debugger/DebugUI.py" line="1852"/> <source>Run Script</source> <translation>Skript ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="175"/> + <location filename="../Debugger/DebugUI.py" line="178"/> <source>&Run Script...</source> <translation>&Skript ausführen …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="180"/> + <location filename="../Debugger/DebugUI.py" line="183"/> <source>Run the current Script</source> <translation>Das aktuelle Skript ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1862"/> + <location filename="../Debugger/DebugUI.py" line="1867"/> <source>Run Project</source> <translation>Projekt ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="190"/> + <location filename="../Debugger/DebugUI.py" line="193"/> <source>Run &Project...</source> <translation>Projekt &ausführen …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="195"/> + <location filename="../Debugger/DebugUI.py" line="198"/> <source>Run the current Project</source> <translation>Das aktuelle Projekt ausführen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="332"/> + <location filename="../Debugger/DebugUI.py" line="335"/> <source>Continue</source> <translation>Weiter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="332"/> + <location filename="../Debugger/DebugUI.py" line="335"/> <source>&Continue</source> <translation>&Weiter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="337"/> + <location filename="../Debugger/DebugUI.py" line="340"/> <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="339"/> + <location filename="../Debugger/DebugUI.py" line="342"/> <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="384"/> + <location filename="../Debugger/DebugUI.py" line="387"/> <source>Single Step</source> <translation>Einzelschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="389"/> + <location filename="../Debugger/DebugUI.py" line="392"/> <source>Execute a single Python statement</source> <translation>Führe eine einzelne Python-Anweisung aus</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="390"/> + <location filename="../Debugger/DebugUI.py" line="393"/> <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="400"/> + <location filename="../Debugger/DebugUI.py" line="403"/> <source>Step Over</source> <translation>Prozedurschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="400"/> + <location filename="../Debugger/DebugUI.py" line="403"/> <source>Step &Over</source> <translation>&Prozedurschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="405"/> - <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="408"/> + <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="411"/> <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="419"/> + <location filename="../Debugger/DebugUI.py" line="422"/> <source>Step Out</source> <translation>Rückschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="419"/> + <location filename="../Debugger/DebugUI.py" line="422"/> <source>Step Ou&t</source> <translation>&Rückschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="424"/> - <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="427"/> + <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="430"/> <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="438"/> + <location filename="../Debugger/DebugUI.py" line="441"/> <source>Stop</source> <translation>Anhalten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="443"/> + <location filename="../Debugger/DebugUI.py" line="446"/> <source>Stop debugging</source> <translation>Beende das Debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="444"/> + <location filename="../Debugger/DebugUI.py" line="447"/> <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="1120"/> + <location filename="../Debugger/DebugUI.py" line="1123"/> <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="1157"/> + <location filename="../Debugger/DebugUI.py" line="1160"/> <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="1282"/> + <location filename="../Debugger/DebugUI.py" line="1285"/> <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="1999"/> + <location filename="../Debugger/DebugUI.py" line="2004"/> <source>Debug Project</source> <translation>Projekt debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1999"/> + <location filename="../Debugger/DebugUI.py" line="2004"/> <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="384"/> + <location filename="../Debugger/DebugUI.py" line="387"/> <source>Sin&gle Step</source> <translation>&Einzelschritt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="438"/> + <location filename="../Debugger/DebugUI.py" line="441"/> <source>&Stop</source> <translation>An&halten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="305"/> + <location filename="../Debugger/DebugUI.py" line="308"/> <source>Restart the last debugged script</source> <translation>Das zuletzt untersuchte Skript neu starten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="467"/> + <location filename="../Debugger/DebugUI.py" line="470"/> <source>&Exceptions Filter...</source> <translation>&Ausnahmenfilter …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="471"/> + <location filename="../Debugger/DebugUI.py" line="474"/> <source>Configure exceptions filter</source> <translation>Konfiguriert den Ausnahmenfilter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="473"/> + <location filename="../Debugger/DebugUI.py" line="476"/> <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="181"/> + <location filename="../Debugger/DebugUI.py" line="184"/> <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="1983"/> + <location filename="../Debugger/DebugUI.py" line="1988"/> <source>Debug Script</source> <translation>Skript debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="268"/> + <location filename="../Debugger/DebugUI.py" line="271"/> <source>&Debug Script...</source> <translation>Skript &debuggen …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="273"/> + <location filename="../Debugger/DebugUI.py" line="276"/> <source>Debug the current Script</source> <translation>Das aktuelle Skript debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="274"/> + <location filename="../Debugger/DebugUI.py" line="277"/> <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="284"/> + <location filename="../Debugger/DebugUI.py" line="287"/> <source>Debug &Project...</source> <translation>&Projekt debuggen…</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="289"/> + <location filename="../Debugger/DebugUI.py" line="292"/> <source>Debug the current Project</source> <translation>Das aktuelle Projekt debuggen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="291"/> + <location filename="../Debugger/DebugUI.py" line="294"/> <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="1862"/> + <location filename="../Debugger/DebugUI.py" line="1867"/> <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="196"/> + <location filename="../Debugger/DebugUI.py" line="199"/> <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="206"/> + <location filename="../Debugger/DebugUI.py" line="209"/> <source>Coverage run of Script</source> <translation>Abdeckungslauf des Skriptes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="206"/> + <location filename="../Debugger/DebugUI.py" line="209"/> <source>Coverage run of Script...</source> <translation>Abdeckungslauf des Skriptes …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="211"/> + <location filename="../Debugger/DebugUI.py" line="214"/> <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="213"/> + <location filename="../Debugger/DebugUI.py" line="216"/> <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="222"/> + <location filename="../Debugger/DebugUI.py" line="225"/> <source>Coverage run of Project</source> <translation>Abdeckungslauf des Projektes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="222"/> + <location filename="../Debugger/DebugUI.py" line="225"/> <source>Coverage run of Project...</source> <translation>Abdeckungslauf des Projektes …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="227"/> + <location filename="../Debugger/DebugUI.py" line="230"/> <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="229"/> + <location filename="../Debugger/DebugUI.py" line="232"/> <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="1594"/> + <location filename="../Debugger/DebugUI.py" line="1599"/> <source>Coverage of Project</source> <translation>Abdeckung des Projektes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1581"/> + <location filename="../Debugger/DebugUI.py" line="1586"/> <source>Coverage of Script</source> <translation>Abdeckung des Skriptes</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="239"/> + <location filename="../Debugger/DebugUI.py" line="242"/> <source>Profile Script</source> <translation>Skriptprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="239"/> + <location filename="../Debugger/DebugUI.py" line="242"/> <source>Profile Script...</source> <translation>Skriptprofil …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="243"/> + <location filename="../Debugger/DebugUI.py" line="246"/> <source>Profile the current Script</source> <translation>Profil des aktuellen Skriptes erstellen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="244"/> + <location filename="../Debugger/DebugUI.py" line="247"/> <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="252"/> + <location filename="../Debugger/DebugUI.py" line="255"/> <source>Profile Project</source> <translation>Projektprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="252"/> + <location filename="../Debugger/DebugUI.py" line="255"/> <source>Profile Project...</source> <translation>Projektprofil …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="257"/> + <location filename="../Debugger/DebugUI.py" line="260"/> <source>Profile the current Project</source> <translation>Profil des aktuellen Projektes erstellen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="259"/> + <location filename="../Debugger/DebugUI.py" line="262"/> <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="1727"/> + <location filename="../Debugger/DebugUI.py" line="1732"/> <source>Profile of Project</source> <translation>Projektprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1714"/> + <location filename="../Debugger/DebugUI.py" line="1719"/> <source>Profile of Script</source> <translation>Skriptprofil</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="467"/> + <location filename="../Debugger/DebugUI.py" line="470"/> <source>Exceptions Filter</source> <translation>Ausnahmen Filter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="509"/> + <location filename="../Debugger/DebugUI.py" line="512"/> <source>Toggle Breakpoint</source> <translation>Haltepunkt setzen/löschen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="510"/> + <location filename="../Debugger/DebugUI.py" line="513"/> <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="540"/> + <location filename="../Debugger/DebugUI.py" line="543"/> <source>Next Breakpoint</source> <translation>Nächster Haltepunkt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="541"/> + <location filename="../Debugger/DebugUI.py" line="544"/> <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="555"/> + <location filename="../Debugger/DebugUI.py" line="558"/> <source>Previous Breakpoint</source> <translation>Vorheriger Haltepunkt</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="556"/> + <location filename="../Debugger/DebugUI.py" line="559"/> <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="569"/> + <location filename="../Debugger/DebugUI.py" line="572"/> <source>Clear Breakpoints</source> <translation>Haltepunkte löschen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="570"/> + <location filename="../Debugger/DebugUI.py" line="573"/> <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="600"/> + <location filename="../Debugger/DebugUI.py" line="603"/> <source>&Breakpoints</source> <translation>&Haltepunkte</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="524"/> + <location filename="../Debugger/DebugUI.py" line="527"/> <source>Edit Breakpoint</source> <translation>Haltepunkt bearbeiten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="525"/> + <location filename="../Debugger/DebugUI.py" line="528"/> <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="348"/> + <location filename="../Debugger/DebugUI.py" line="351"/> <source>Continue to Cursor</source> <translation>Weiter bis Einfügemarke</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="348"/> + <location filename="../Debugger/DebugUI.py" line="351"/> <source>Continue &To Cursor</source> <translation>Weiter bis Einfüge&marke</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="353"/> - <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="356"/> + <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="359"/> <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="451"/> + <location filename="../Debugger/DebugUI.py" line="454"/> <source>Variables Type Filter</source> <translation>Variablentypenfilter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="451"/> + <location filename="../Debugger/DebugUI.py" line="454"/> <source>Varia&bles Type Filter...</source> <translation>&Variablentypenfilter …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="455"/> + <location filename="../Debugger/DebugUI.py" line="458"/> <source>Configure variables type filter</source> <translation>Konfiguriert die Variablentypenfilter</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="457"/> + <location filename="../Debugger/DebugUI.py" line="460"/> <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="1219"/> + <location filename="../Debugger/DebugUI.py" line="1222"/> <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="1353"/> + <location filename="../Debugger/DebugUI.py" line="1356"/> <source>Breakpoint Condition Error</source> <translation>Fehler in Haltepunktbedingung</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1353"/> + <location filename="../Debugger/DebugUI.py" line="1356"/> <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="533"/> + <location filename="../Debugger/DebugUI.py" line="536"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation>Ctrl+Shift+PgDown</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="548"/> + <location filename="../Debugger/DebugUI.py" line="551"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation>Ctrl+Shift+PgUp</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="563"/> + <location filename="../Debugger/DebugUI.py" line="566"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation>Ctrl+Shift+C</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="596"/> + <location filename="../Debugger/DebugUI.py" line="599"/> <source>&Debug</source> <translation>Debu&g</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="598"/> + <location filename="../Debugger/DebugUI.py" line="601"/> <source>&Start</source> <translation>&Start</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="643"/> + <location filename="../Debugger/DebugUI.py" line="646"/> <source>Start</source> <translation>Start</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="657"/> + <location filename="../Debugger/DebugUI.py" line="660"/> <source>Debug</source> <translation>Debug</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1204"/> + <location filename="../Debugger/DebugUI.py" line="1207"/> <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="1139"/> + <location filename="../Debugger/DebugUI.py" line="1142"/> <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="322"/> + <location filename="../Debugger/DebugUI.py" line="325"/> <source>Stop the running script.</source> <translation>Halte das laufende Skript an.</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1389"/> + <location filename="../Debugger/DebugUI.py" line="1392"/> <source>Watch Expression Error</source> <translation>Fehler in Beobachtungsausdruck</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1389"/> + <location filename="../Debugger/DebugUI.py" line="1392"/> <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="1419"/> + <location filename="../Debugger/DebugUI.py" line="1422"/> <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="1423"/> + <location filename="../Debugger/DebugUI.py" line="1426"/> <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="1429"/> + <location filename="../Debugger/DebugUI.py" line="1432"/> <source>Watch expression already exists</source> <translation>Beobachtungsausdruck existiert bereits</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="484"/> + <location filename="../Debugger/DebugUI.py" line="487"/> <source>Ignored Exceptions</source> <translation>Ignorierte Ausnahmen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="484"/> + <location filename="../Debugger/DebugUI.py" line="487"/> <source>&Ignored Exceptions...</source> <translation>&Ignorierte Ausnahmen …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="488"/> + <location filename="../Debugger/DebugUI.py" line="491"/> <source>Configure ignored exceptions</source> <translation>Konfiguriert ignorierte Ausnahmen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="490"/> + <location filename="../Debugger/DebugUI.py" line="493"/> <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="503"/> + <location filename="../Debugger/DebugUI.py" line="506"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation>Shift+F11</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="518"/> + <location filename="../Debugger/DebugUI.py" line="521"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation>Shift+F12</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="518"/> + <location filename="../Debugger/DebugUI.py" line="521"/> <source>Edit Breakpoint...</source> <translation>Haltepunkt bearbeiten …</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1089"/> + <location filename="../Debugger/DebugUI.py" line="1092"/> <source>Program terminated</source> <translation>Programm beendet</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="301"/> + <location filename="../Debugger/DebugUI.py" line="304"/> <source>Restart</source> <translation>Neu starten</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="307"/> + <location filename="../Debugger/DebugUI.py" line="310"/> <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="323"/> + <location filename="../Debugger/DebugUI.py" line="326"/> <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="1268"/> + <location filename="../Debugger/DebugUI.py" line="1271"/> <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="1056"/> + <location filename="../Debugger/DebugUI.py" line="1059"/> <source><p>Message: {0}</p></source> <translation><p>Nachricht: {0}</p></translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1062"/> + <location filename="../Debugger/DebugUI.py" line="1065"/> <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="1067"/> + <location filename="../Debugger/DebugUI.py" line="1070"/> <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="1075"/> + <location filename="../Debugger/DebugUI.py" line="1078"/> <source>Message: {0}</source> <translation>Nachricht: {0}</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1082"/> + <location filename="../Debugger/DebugUI.py" line="1085"/> <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="1085"/> + <location filename="../Debugger/DebugUI.py" line="1088"/> <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="1094"/> + <location filename="../Debugger/DebugUI.py" line="1097"/> <source>The program has terminated with an exit status of {0}. {1} </source> @@ -6171,7 +6171,7 @@ </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="1098"/> + <location filename="../Debugger/DebugUI.py" line="1101"/> <source>"{0}" has terminated with an exit status of {1}. {2} </source> @@ -6180,22 +6180,22 @@ </translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="364"/> + <location filename="../Debugger/DebugUI.py" line="367"/> <source>Move Instruction Pointer to Cursor</source> <translation>Instruktionszeiger zur Cursorposition bewegen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="364"/> + <location filename="../Debugger/DebugUI.py" line="367"/> <source>&Jump To Cursor</source> <translation>Zum Cursor &springen</translation> </message> <message> - <location filename="../Debugger/DebugUI.py" line="369"/> - <source>Skip the code from the current line to the current cursor position</source> - <translation>Überspringe den Programmteil von der aktuellen Zeile bis zur aktuellen Cursorposition</translation> - </message> - <message> <location filename="../Debugger/DebugUI.py" line="372"/> + <source>Skip the code from the current line to the current cursor position</source> + <translation>Überspringe den Programmteil von der aktuellen Zeile bis zur aktuellen Cursorposition</translation> + </message> + <message> + <location filename="../Debugger/DebugUI.py" line="375"/> <source><b>Move Instruction Pointer to Cursor</b><p>Move the Python internal instruction pointer to the current cursor position without executing the code in between.</p><p>It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.</p></source> <translation><b>Instruktionszeiger zur Cursorposition bewegen</b><p>Bewege den Python Instruktionszeiger zur aktuellen Cursorposition, ohne Programmteile dazwischen auszuführen.</p><p>Es ist nicht möglich, aus einer Funktion herauszuspringen oder in eine Schleife hinein. In diesem Fall wird eine Fehlermeldung im Log-Fenster ausgegeben.</p></translation> </message> @@ -42785,8 +42785,8 @@ </message> <message> <location filename="../QScintilla/Lexers/__init__.py" line="470"/> - <source>Makefiles (*.mak)</source> - <translation>Make-Dateien (*.mak)</translation> + <source>Makefiles (*makefile Makefile *.mak)</source> + <translation>Make-Dateien (*makefile Makefile *.mak)</translation> </message> <message> <location filename="../QScintilla/Lexers/__init__.py" line="473"/> @@ -43395,6 +43395,74 @@ </message> </context> <context> + <name>MakePropertiesDialog</name> + <message> + <location filename="../Project/MakePropertiesDialog.ui" line="14"/> + <source>Make Properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.ui" line="23"/> + <source>'make' Executable (leave empty to use global 'make'):</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.ui" line="39"/> + <source>Enter the executable name of the make utility</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.ui" line="46"/> + <source>'makefile' path or directory (without file name 'makefile' will be used):</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.ui" line="62"/> + <source>Enter the name and/or path of the makefile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.ui" line="69"/> + <source>Make Target:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.ui" line="76"/> + <source>Enter the make target to be built</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.ui" line="83"/> + <source>Make Command Parameters (enclose parameters containing spaces in ""):</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.ui" line="93"/> + <source>Enter the command parameters for make</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.ui" line="100"/> + <source>Select to just test for changes needing a make run</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.ui" line="103"/> + <source>Test for changes only when run automatically</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.py" line="40"/> + <source>All Files (*)</source> + <translation>Alle Dateien (*)</translation> + </message> + <message> + <location filename="../Project/MakePropertiesDialog.py" line="44"/> + <source>Makefiles (*makefile Makefile *.mak);;All Files (*)</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>ManageDictionariesDialog</name> <message> <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.ui" line="14"/> @@ -49594,27 +49662,27 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1657"/> + <location filename="../Preferences/__init__.py" line="1658"/> <source>Export Preferences</source> <translation>Einstellungen exportieren</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1685"/> + <location filename="../Preferences/__init__.py" line="1686"/> <source>Import Preferences</source> <translation>Einstellungen importieren</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1685"/> + <location filename="../Preferences/__init__.py" line="1686"/> <source>Properties File (*.ini);;All Files (*)</source> <translation>Properties-Dateien (*.ini);;Alle Dateien (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1787"/> + <location filename="../Preferences/__init__.py" line="1788"/> <source>Select Python{0} Interpreter</source> <translation>Wähle den Python{0}-Interpreter</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1787"/> + <location filename="../Preferences/__init__.py" line="1788"/> <source>Select the Python{0} interpreter to be used:</source> <translation>Wähle den zu verwendenden Python{0}-Interpreter aus:</translation> </message> @@ -50052,822 +50120,822 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="745"/> + <location filename="../Project/Project.py" line="766"/> <source>Read project file</source> <translation>Projektdatei lesen</translation> </message> <message> - <location filename="../Project/Project.py" line="1435"/> + <location filename="../Project/Project.py" line="1456"/> <source>Delete translation</source> <translation>Übersetzung löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="1600"/> + <location filename="../Project/Project.py" line="1621"/> <source>Add file</source> <translation>Datei hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="2133"/> + <location filename="../Project/Project.py" line="2154"/> <source>Delete file</source> <translation>Datei löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="2246"/> + <location filename="../Project/Project.py" line="2271"/> <source>Create project directory</source> <translation>Projektverzeichnis erstellen</translation> </message> <message> - <location filename="../Project/Project.py" line="3629"/> + <location filename="../Project/Project.py" line="3716"/> <source>Open project</source> <translation>Projekt öffnen</translation> </message> <message> - <location filename="../Project/Project.py" line="3666"/> + <location filename="../Project/Project.py" line="3753"/> <source>Save project as</source> <translation>Projekt speichern unter</translation> </message> <message> - <location filename="../Project/Project.py" line="2931"/> + <location filename="../Project/Project.py" line="3016"/> <source>Save File</source> <translation>Datei speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="2967"/> + <location filename="../Project/Project.py" line="3052"/> <source>Close Project</source> <translation>Projekt schließen</translation> </message> <message> - <location filename="../Project/Project.py" line="2967"/> + <location filename="../Project/Project.py" line="3052"/> <source>The current project has unsaved changes.</source> <translation>Das aktuelle Projekt hat ungesicherte Änderungen.</translation> </message> <message> - <location filename="../Project/Project.py" line="3846"/> + <location filename="../Project/Project.py" line="3933"/> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3615"/> + <location filename="../Project/Project.py" line="3702"/> <source>New project</source> <translation>Neues Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3615"/> + <location filename="../Project/Project.py" line="3702"/> <source>&New...</source> <translation>&Neu...</translation> </message> <message> - <location filename="../Project/Project.py" line="3620"/> + <location filename="../Project/Project.py" line="3707"/> <source>Generate a new project</source> <translation>Erstelle ein neues Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3621"/> + <location filename="../Project/Project.py" line="3708"/> <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="3629"/> + <location filename="../Project/Project.py" line="3716"/> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3634"/> + <location filename="../Project/Project.py" line="3721"/> <source>Open an existing project</source> <translation>Öffnet ein bestehendes Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3635"/> + <location filename="../Project/Project.py" line="3722"/> <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="3642"/> + <location filename="../Project/Project.py" line="3729"/> <source>Close project</source> <translation>Projekt schließen</translation> </message> <message> - <location filename="../Project/Project.py" line="3642"/> + <location filename="../Project/Project.py" line="3729"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3733"/> <source>Close the current project</source> <translation>Schließt das aktuelle Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3647"/> + <location filename="../Project/Project.py" line="3734"/> <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="3654"/> + <location filename="../Project/Project.py" line="3741"/> <source>Save project</source> <translation>Projekt speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3658"/> + <location filename="../Project/Project.py" line="3745"/> <source>Save the current project</source> <translation>Speichert das aktuelle Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3746"/> <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="3670"/> - <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="3672"/> - <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="3712"/> - <source>Add translation to project</source> - <translation>Übersetzung zum Projekt hinzufügen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3712"/> - <source>Add &translation...</source> - <translation>&Übersetzung hinzufügen...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3717"/> - <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="3719"/> - <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="3757"/> - <source>Project properties</source> - <translation>Projekteigenschaften</translation> - </message> - <message> <location filename="../Project/Project.py" line="3757"/> + <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="3759"/> + <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="3799"/> + <source>Add translation to project</source> + <translation>Übersetzung zum Projekt hinzufügen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3799"/> + <source>Add &translation...</source> + <translation>&Übersetzung hinzufügen...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3804"/> + <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="3806"/> + <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="3844"/> + <source>Project properties</source> + <translation>Projekteigenschaften</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3844"/> <source>&Properties...</source> <translation>&Eigenschaften...</translation> </message> <message> - <location filename="../Project/Project.py" line="3762"/> + <location filename="../Project/Project.py" line="3849"/> <source>Show the project properties</source> <translation>Zeigt die Projekteigenschaften an</translation> </message> <message> - <location filename="../Project/Project.py" line="3763"/> + <location filename="../Project/Project.py" line="3850"/> <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="4078"/> + <location filename="../Project/Project.py" line="4196"/> <source>Open &Recent Projects</source> <translation>Zu&letzt geöffnete Projekte</translation> </message> <message> - <location filename="../Project/Project.py" line="1718"/> + <location filename="../Project/Project.py" line="1739"/> <source>The target directory must not be empty.</source> <translation>Das Zielverzeichnis darf nicht leer sein.</translation> </message> <message> - <location filename="../Project/Project.py" line="3727"/> + <location filename="../Project/Project.py" line="3814"/> <source>Search new files</source> <translation>Neue Dateien suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="3727"/> + <location filename="../Project/Project.py" line="3814"/> <source>Searc&h new files...</source> <translation>Neue &Dateien suchen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3731"/> + <location filename="../Project/Project.py" line="3818"/> <source>Search new files in the project directory.</source> <translation>Sucht neue Dateien im Projektverzeichnis.</translation> </message> <message> - <location filename="../Project/Project.py" line="1729"/> + <location filename="../Project/Project.py" line="1750"/> <source>Add directory</source> <translation>Verzeichnis hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="1729"/> + <location filename="../Project/Project.py" line="1750"/> <source>The source directory must not be empty.</source> <translation>Das Quellverzeichnis darf nicht leer sein.</translation> </message> <message> - <location filename="../Project/Project.py" line="1312"/> + <location filename="../Project/Project.py" line="1333"/> <source>Add Language</source> <translation>Sprache hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="3666"/> + <location filename="../Project/Project.py" line="3753"/> <source>Save &as...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="../Project/Project.py" line="4562"/> + <location filename="../Project/Project.py" line="4691"/> <source>Version Control System</source> <translation>Versionskontrollsystem</translation> </message> <message> - <location filename="../Project/Project.py" line="4416"/> + <location filename="../Project/Project.py" line="4545"/> <source>Search New Files</source> <translation>Neue Dateien suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="4416"/> + <location filename="../Project/Project.py" line="4545"/> <source>There were no new files found to be added.</source> <translation>Es wurden keine neuen Dateien gefunden.</translation> </message> <message> - <location filename="../Project/Project.py" line="965"/> + <location filename="../Project/Project.py" line="986"/> <source>Read project session</source> <translation>Projektsitzung lesen</translation> </message> <message> - <location filename="../Project/Project.py" line="1187"/> + <location filename="../Project/Project.py" line="1208"/> <source>Please save the project first.</source> <translation>Bitte speichern Sie zuerst das Projekt.</translation> </message> <message> - <location filename="../Project/Project.py" line="1001"/> + <location filename="../Project/Project.py" line="1022"/> <source>Save project session</source> <translation>Projektsitzung speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3885"/> + <location filename="../Project/Project.py" line="3972"/> <source>Load session</source> <translation>Sitzung laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3889"/> + <location filename="../Project/Project.py" line="3976"/> <source>Load the projects session file.</source> <translation>Laden der Projektsitzung.</translation> </message> <message> - <location filename="../Project/Project.py" line="3903"/> + <location filename="../Project/Project.py" line="3990"/> <source>Save session</source> <translation>Sitzung speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3907"/> + <location filename="../Project/Project.py" line="3994"/> <source>Save the projects session file.</source> <translation>Speichern der Projektsitzung.</translation> </message> <message> - <location filename="../Project/Project.py" line="3890"/> + <location filename="../Project/Project.py" line="3977"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Sitzung laden</b><p>Dies lädt eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> </message> <message> + <location filename="../Project/Project.py" line="3995"/> + <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> + <translation><b>Sitzung speichern</b><p>Dies speichert eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4206"/> + <source>Source &Documentation</source> + <translation>&Quelltextdokumentation</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4201"/> + <source>Chec&k</source> + <translation>&Prüfen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4022"/> + <source>Code Metrics</source> + <translation>Quelltextmetriken</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4022"/> + <source>&Code Metrics...</source> + <translation>&Quelltextmetriken...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4026"/> + <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="4028"/> + <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="4036"/> + <source>Python Code Coverage</source> + <translation>Python-Quelltext-Abdeckung</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4036"/> + <source>Code Co&verage...</source> + <translation>&Quelltext Abdeckung...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4040"/> + <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="4042"/> + <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="4883"/> + <source>Profile Data</source> + <translation>Profildaten</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4050"/> + <source>&Profile Data...</source> + <translation>&Profildaten...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4054"/> + <source>Show profiling data for the project.</source> + <translation>Zeige Profildaten des aktuellen Projektes.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4056"/> + <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="4203"/> + <source>Sho&w</source> + <translation>&Zeige</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4860"/> + <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="4810"/> + <source>Coverage Data</source> + <translation>Quelltext Abdeckungsdaten</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4197"/> + <source>&Version Control</source> + <translation>&Versionskontrolle</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4937"/> + <source>Application Diagram</source> + <translation>Applikations-Diagramm</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4065"/> + <source>&Application Diagram...</source> + <translation>&Applikations-Diagramm...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4069"/> + <source>Show a diagram of the project.</source> + <translation>Zeigt ein Diagramm des Projektes.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4071"/> + <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="4204"/> + <source>&Diagrams</source> + <translation>&Diagramme</translation> + </message> + <message> + <location filename="../Project/Project.py" line="868"/> + <source>Save project file</source> + <translation>Projektdatei speichern</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4833"/> + <source>Code Coverage</source> + <translation>Quelltext Abdeckung</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4833"/> + <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="4883"/> + <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="3784"/> + <source>Add directory to project</source> + <translation>Verzeichnis zum Projekt hinzufügen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3784"/> + <source>Add directory...</source> + <translation>Verzeichnis hinzufügen...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3789"/> + <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="3791"/> + <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> + <translation><b>Verzeichnis hinzufügen</b><p>Dies öffnet einen Dialog, mit dem ein Verzeichnis bzw. der Inhalt eines Verzeichnisses zum aktuellen Projekt hinzugefügt werden kann.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="1887"/> + <source>Rename file</source> + <translation>Datei umbenennen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1911"/> + <source>Rename File</source> + <translation>Datei umbenennen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2453"/> + <source>Shall the project file be added to the repository?</source> + <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2858"/> + <source>New Project</source> + <translation>Neues Projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2386"/> + <source>Add existing files to the project?</source> + <translation>Existierende Dateien dem Projekt hinzufügen?</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2505"/> + <source>Would you like to edit the VCS command options?</source> + <translation>Möchten Sie die VCS-Befehlsoptionen bearbeiten?</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2477"/> + <source>Select version control system for the project</source> + <translation>Wähle das Versionskontrollsystem für das Projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="766"/> + <source><p>The project file <b>{0}</b> could not be read.</p></source> + <translation><p>Die Projektdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="868"/> + <source><p>The project file <b>{0}</b> could not be written.</p></source> + <translation><p>Die Projektdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="986"/> + <source><p>The project session file <b>{0}</b> could not be read.</p></source> + <translation><p>Die Projektsitzungsdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="1022"/> + <source><p>The project session file <b>{0}</b> could not be written.</p></source> + <translation><p>Die Projektsitzungsdatei <b>{0}</b> konnte nicht gespeichert werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3016"/> + <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> + <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="2271"/> + <source><p>The project directory <b>{0}</b> could not be created.</p></source> + <translation><p>Das Projektverzeichnis <b>{0}</b> konnte nicht erstellt werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="1051"/> + <source>Delete project session</source> + <translation>Projektsitzung löschen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1051"/> + <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> + <translation><p>Die Projektsitzungsdatei <b>{0}</b> konnte nicht gelöscht werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4008"/> + <source>Delete session</source> + <translation>Sitzung löschen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4012"/> + <source>Delete the projects session file.</source> + <translation>Löscht die Projektsitzungsdatei.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4013"/> + <source><b>Delete session</b><p>This deletes the projects session file</p></source> + <translation><b>Sitzung löschen</b><p>Dies löscht die Sitzungsdatei des Projektes.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="275"/> + <source>Console</source> + <translation>Konsole</translation> + </message> + <message> + <location filename="../Project/Project.py" line="276"/> + <source>Other</source> + <translation>Sonstige</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4937"/> + <source>Include module names?</source> + <translation>Modulnamen anzeigen?</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2184"/> + <source>Delete directory</source> + <translation>Verzeichnis löschen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1085"/> + <source>Read tasks</source> + <translation>Aufgaben lesen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1085"/> + <source><p>The tasks file <b>{0}</b> could not be read.</p></source> + <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="1105"/> + <source>Save tasks</source> + <translation>Aufgaben speichern</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1105"/> + <source><p>The tasks file <b>{0}</b> could not be written.</p></source> + <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="1162"/> + <source>Read debugger properties</source> + <translation>Debugger-Eigenschaften lesen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1162"/> + <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> + <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gelesen werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="1196"/> + <source>Save debugger properties</source> + <translation>Debugger-Eigenschaften speichern</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1196"/> + <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> + <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gespeichert werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="1222"/> + <source>Delete debugger properties</source> + <translation>Debugger-Eigenschaften löschen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1222"/> + <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> + <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gelöscht werden.</p></translation> + </message> + <message> <location filename="../Project/Project.py" line="3908"/> - <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> - <translation><b>Sitzung speichern</b><p>Dies speichert eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4088"/> - <source>Source &Documentation</source> - <translation>&Quelltextdokumentation</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4083"/> - <source>Chec&k</source> - <translation>&Prüfen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3935"/> - <source>Code Metrics</source> - <translation>Quelltextmetriken</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3935"/> - <source>&Code Metrics...</source> - <translation>&Quelltextmetriken...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3939"/> - <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="3941"/> - <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> + <source>Debugger Properties</source> + <translation>Debugger-Eigenschaften</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3908"/> + <source>Debugger &Properties...</source> + <translation>Debugger-&Eigenschaften...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3912"/> + <source>Show the debugger properties</source> + <translation>Debugger-Eigenschaften anzeigen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3913"/> + <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="3921"/> + <source>Load</source> + <translation>Laden</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3921"/> + <source>&Load</source> + <translation>&Laden</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3925"/> + <source>Load the debugger properties</source> + <translation>Debugger-Eigenschaften laden</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3933"/> + <source>Save</source> + <translation>Speichern</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3937"/> + <source>Save the debugger properties</source> + <translation>Debugger-Eigenschaften speichern</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3945"/> + <source>Delete</source> + <translation>Löschen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3945"/> + <source>&Delete</source> + <translation>&Löschen</translation> </message> <message> <location filename="../Project/Project.py" line="3949"/> - <source>Python Code Coverage</source> - <translation>Python-Quelltext-Abdeckung</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3949"/> - <source>Code Co&verage...</source> - <translation>&Quelltext Abdeckung...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3953"/> - <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="3955"/> - <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="4754"/> - <source>Profile Data</source> - <translation>Profildaten</translation> + <source>Delete the debugger properties</source> + <translation>Debugger-Eigenschaften löschen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3958"/> + <source>Reset</source> + <translation>Zurücksetzen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3958"/> + <source>&Reset</source> + <translation>&Zurücksetzen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3962"/> + <source>Reset the debugger properties</source> + <translation>Debugger-Eigenschaften zurücksetzen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4208"/> + <source>Debugger</source> + <translation>Debugger</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4205"/> + <source>Session</source> + <translation>Sitzung</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3926"/> + <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="3938"/> + <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="3950"/> + <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="3963"/> - <source>&Profile Data...</source> - <translation>&Profildaten...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3967"/> - <source>Show profiling data for the project.</source> - <translation>Zeige Profildaten des aktuellen Projektes.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3969"/> - <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="4085"/> - <source>Sho&w</source> - <translation>&Zeige</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4731"/> - <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="4681"/> - <source>Coverage Data</source> - <translation>Quelltext Abdeckungsdaten</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4079"/> - <source>&Version Control</source> - <translation>&Versionskontrolle</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4808"/> - <source>Application Diagram</source> - <translation>Applikations-Diagramm</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3978"/> - <source>&Application Diagram...</source> - <translation>&Applikations-Diagramm...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3982"/> - <source>Show a diagram of the project.</source> - <translation>Zeigt ein Diagramm des Projektes.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3984"/> - <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="4086"/> - <source>&Diagrams</source> - <translation>&Diagramme</translation> - </message> - <message> - <location filename="../Project/Project.py" line="847"/> - <source>Save project file</source> - <translation>Projektdatei speichern</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4704"/> - <source>Code Coverage</source> - <translation>Quelltext Abdeckung</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4704"/> - <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="4754"/> - <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="3697"/> - <source>Add directory to project</source> - <translation>Verzeichnis zum Projekt hinzufügen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3697"/> - <source>Add directory...</source> - <translation>Verzeichnis hinzufügen...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3702"/> - <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="3704"/> - <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> - <translation><b>Verzeichnis hinzufügen</b><p>Dies öffnet einen Dialog, mit dem ein Verzeichnis bzw. der Inhalt eines Verzeichnisses zum aktuellen Projekt hinzugefügt werden kann.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="1866"/> - <source>Rename file</source> - <translation>Datei umbenennen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1890"/> - <source>Rename File</source> - <translation>Datei umbenennen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2393"/> - <source>Shall the project file be added to the repository?</source> - <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2777"/> - <source>New Project</source> - <translation>Neues Projekt</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2326"/> - <source>Add existing files to the project?</source> - <translation>Existierende Dateien dem Projekt hinzufügen?</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2445"/> - <source>Would you like to edit the VCS command options?</source> - <translation>Möchten Sie die VCS-Befehlsoptionen bearbeiten?</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2417"/> - <source>Select version control system for the project</source> - <translation>Wähle das Versionskontrollsystem für das Projekt</translation> - </message> - <message> - <location filename="../Project/Project.py" line="745"/> - <source><p>The project file <b>{0}</b> could not be read.</p></source> - <translation><p>Die Projektdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="847"/> - <source><p>The project file <b>{0}</b> could not be written.</p></source> - <translation><p>Die Projektdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="965"/> - <source><p>The project session file <b>{0}</b> could not be read.</p></source> - <translation><p>Die Projektsitzungsdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="1001"/> - <source><p>The project session file <b>{0}</b> could not be written.</p></source> - <translation><p>Die Projektsitzungsdatei <b>{0}</b> konnte nicht gespeichert werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="2931"/> - <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> + <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="3872"/> + <source>Filetype Associations</source> + <translation>Dateitypzuordnungen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Filetype Associations...</source> + <translation>Dateitypzuordnungen...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3876"/> + <source>Show the project filetype associations</source> + <translation>Zeigt die Dateitypzuordnungen des Projektes</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4209"/> + <source>Pac&kagers</source> + <translation>Pa&ketierer</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> + <source>Add files to project</source> + <translation>Dateien zum Projekt hinzufügen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> + <source>Add &files...</source> + <translation>&Dateien hinzufügen...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3773"/> + <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="3775"/> + <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> + <translation><b>Dateien hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="1911"/> + <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> + <translation><p>Die Datei <b>{0}</b> konnte nicht umbenannt werden.<br />Ursache: {1}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3001"/> + <source>Project Files (*.e4p)</source> + <translation>Projektdateien (*.e4p)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4195"/> + <source>&Project</source> + <translation>&Projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4328"/> + <source>Project</source> + <translation>Projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4394"/> + <source>&Clear</source> + <translation>&Löschen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1683"/> + <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2246"/> - <source><p>The project directory <b>{0}</b> could not be created.</p></source> - <translation><p>Das Projektverzeichnis <b>{0}</b> konnte nicht erstellt werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="1030"/> - <source>Delete project session</source> - <translation>Projektsitzung löschen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1030"/> - <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> - <translation><p>Die Projektsitzungsdatei <b>{0}</b> konnte nicht gelöscht werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3921"/> - <source>Delete session</source> - <translation>Sitzung löschen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3925"/> - <source>Delete the projects session file.</source> - <translation>Löscht die Projektsitzungsdatei.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3926"/> - <source><b>Delete session</b><p>This deletes the projects session file</p></source> - <translation><b>Sitzung löschen</b><p>Dies löscht die Sitzungsdatei des Projektes.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="265"/> - <source>Console</source> - <translation>Konsole</translation> - </message> - <message> - <location filename="../Project/Project.py" line="266"/> - <source>Other</source> - <translation>Sonstige</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4808"/> - <source>Include module names?</source> - <translation>Modulnamen anzeigen?</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2163"/> - <source>Delete directory</source> - <translation>Verzeichnis löschen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1064"/> - <source>Read tasks</source> - <translation>Aufgaben lesen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1064"/> - <source><p>The tasks file <b>{0}</b> could not be read.</p></source> - <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="1084"/> - <source>Save tasks</source> - <translation>Aufgaben speichern</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1084"/> - <source><p>The tasks file <b>{0}</b> could not be written.</p></source> - <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="1141"/> - <source>Read debugger properties</source> - <translation>Debugger-Eigenschaften lesen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1141"/> - <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> - <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gelesen werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="1175"/> - <source>Save debugger properties</source> - <translation>Debugger-Eigenschaften speichern</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1175"/> - <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> - <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gespeichert werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="1201"/> - <source>Delete debugger properties</source> - <translation>Debugger-Eigenschaften löschen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1201"/> - <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> - <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gelöscht werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Debugger Properties</source> - <translation>Debugger-Eigenschaften</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Debugger &Properties...</source> - <translation>Debugger-&Eigenschaften...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3825"/> - <source>Show the debugger properties</source> - <translation>Debugger-Eigenschaften anzeigen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3826"/> - <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="3834"/> - <source>Load</source> - <translation>Laden</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3834"/> - <source>&Load</source> - <translation>&Laden</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3838"/> - <source>Load the debugger properties</source> - <translation>Debugger-Eigenschaften laden</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3846"/> - <source>Save</source> - <translation>Speichern</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3850"/> - <source>Save the debugger properties</source> - <translation>Debugger-Eigenschaften speichern</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3858"/> - <source>Delete</source> - <translation>Löschen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3858"/> - <source>&Delete</source> - <translation>&Löschen</translation> + <location filename="../Project/Project.py" line="904"/> + <source>Read user project properties</source> + <translation>Nutzer bezogene Projektdaten lesen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="904"/> + <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> + <translation><p>Die Datei mit den Nutzer bezogenen Projektdaten <b>{0}</b> konnte nicht gelesen werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="928"/> + <source>Save user project properties</source> + <translation>Nutzer bezogene Projektdaten sichern</translation> + </message> + <message> + <location filename="../Project/Project.py" line="928"/> + <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> + <translation><p>Die Datei mit den Nutzer bezogenen Projektdaten <b>{0}</b> konnte nicht geschrieben werden.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source>User project properties</source> + <translation>Nutzer bezogene Projektdaten</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source>&User Properties...</source> + <translation>&Nutzer bezogene Projektdaten...</translation> </message> <message> <location filename="../Project/Project.py" line="3862"/> - <source>Delete the debugger properties</source> - <translation>Debugger-Eigenschaften löschen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3871"/> - <source>Reset</source> - <translation>Zurücksetzen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3871"/> - <source>&Reset</source> - <translation>&Zurücksetzen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3875"/> - <source>Reset the debugger properties</source> - <translation>Debugger-Eigenschaften zurücksetzen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4090"/> - <source>Debugger</source> - <translation>Debugger</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4087"/> - <source>Session</source> - <translation>Sitzung</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3839"/> - <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="3851"/> - <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="3863"/> - <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="3876"/> - <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="3785"/> - <source>Filetype Associations</source> - <translation>Dateitypzuordnungen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3785"/> - <source>Filetype Associations...</source> - <translation>Dateitypzuordnungen...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3789"/> - <source>Show the project filetype associations</source> - <translation>Zeigt die Dateitypzuordnungen des Projektes</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4091"/> - <source>Pac&kagers</source> - <translation>Pa&ketierer</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3681"/> - <source>Add files to project</source> - <translation>Dateien zum Projekt hinzufügen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3681"/> - <source>Add &files...</source> - <translation>&Dateien hinzufügen...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3686"/> - <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="3688"/> - <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> - <translation><b>Dateien hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="1890"/> - <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> - <translation><p>Die Datei <b>{0}</b> konnte nicht umbenannt werden.<br />Ursache: {1}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="2916"/> - <source>Project Files (*.e4p)</source> - <translation>Projektdateien (*.e4p)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4077"/> - <source>&Project</source> - <translation>&Projekt</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4199"/> - <source>Project</source> - <translation>Projekt</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4265"/> - <source>&Clear</source> - <translation>&Löschen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1662"/> - <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> - <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="883"/> - <source>Read user project properties</source> - <translation>Nutzer bezogene Projektdaten lesen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="883"/> - <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> - <translation><p>Die Datei mit den Nutzer bezogenen Projektdaten <b>{0}</b> konnte nicht gelesen werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="907"/> - <source>Save user project properties</source> - <translation>Nutzer bezogene Projektdaten sichern</translation> - </message> - <message> - <location filename="../Project/Project.py" line="907"/> - <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> - <translation><p>Die Datei mit den Nutzer bezogenen Projektdaten <b>{0}</b> konnte nicht geschrieben werden.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3770"/> - <source>User project properties</source> - <translation>Nutzer bezogene Projektdaten</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3770"/> - <source>&User Properties...</source> - <translation>&Nutzer bezogene Projektdaten...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3775"/> <source>Show the user specific project properties</source> <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation> </message> <message> - <location filename="../Project/Project.py" line="3777"/> + <location filename="../Project/Project.py" line="3864"/> <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="3140"/> + <location filename="../Project/Project.py" line="3227"/> <source>Syntax errors detected</source> <translation>Syntaxfehler gefunden</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3140"/> + <location filename="../Project/Project.py" line="3227"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Das Projekt beinhaltet eine Datei mit Syntaxfehlern.</numerusform> @@ -50875,376 +50943,456 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="5002"/> + <location filename="../Project/Project.py" line="5131"/> <source>Create Package List</source> <translation>Erzeuge Paketliste</translation> </message> <message> - <location filename="../Project/Project.py" line="4007"/> + <location filename="../Project/Project.py" line="4094"/> <source>Create &Package List</source> <translation>Erzeuge &Paketliste</translation> </message> <message> - <location filename="../Project/Project.py" line="5278"/> + <location filename="../Project/Project.py" line="5407"/> <source>Create Plugin Archive</source> <translation>Erzeuge Plugin Archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="4953"/> + <location filename="../Project/Project.py" line="5082"/> <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="5002"/> + <location filename="../Project/Project.py" line="5131"/> <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="5021"/> + <location filename="../Project/Project.py" line="5150"/> <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="1631"/> + <location filename="../Project/Project.py" line="1652"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>Das Quellverzeichnis enthält keine Dateien, die zur gewählten Kategorie gehören.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2777"/> + <location filename="../Project/Project.py" line="2858"/> <source>Select Version Control System</source> <translation>Versionskontrollsystem auswählen</translation> </message> <message> - <location filename="../Project/Project.py" line="2424"/> + <location filename="../Project/Project.py" line="2484"/> <source>None</source> <translation>Keines</translation> </message> <message> - <location filename="../Project/Project.py" line="364"/> + <location filename="../Project/Project.py" line="374"/> <source>Registering Project Type</source> <translation>Projekttyp Registrierung</translation> </message> <message> - <location filename="../Project/Project.py" line="5162"/> + <location filename="../Project/Project.py" line="5291"/> <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="5236"/> + <location filename="../Project/Project.py" line="5365"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Grund: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1312"/> + <location filename="../Project/Project.py" line="1333"/> <source>You have to specify a translation pattern first.</source> <translation>Sie müssen zuerst ein Übersetzungsmuster festlegen.</translation> </message> <message> - <location filename="../Project/Project.py" line="2523"/> + <location filename="../Project/Project.py" line="2583"/> <source>Translation Pattern</source> <translation>Übersetzungsmuster</translation> </message> <message> - <location filename="../Project/Project.py" line="2523"/> + <location filename="../Project/Project.py" line="2583"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Gib das Pfadmuster für Übersetzungsdateien ein (benutze „%language%“ anstelle des Sprachcodes):</translation> </message> <message> - <location filename="../Project/Project.py" line="4562"/> + <location filename="../Project/Project.py" line="4691"/> <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="3803"/> + <location filename="../Project/Project.py" line="3890"/> <source>Lexer Associations</source> <translation>Lexerzuordnungen</translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3890"/> <source>Lexer Associations...</source> <translation>Lexerzuordnungen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> + <location filename="../Project/Project.py" line="3894"/> <source>Show the project lexer associations (overriding defaults)</source> <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation> </message> <message> - <location filename="../Project/Project.py" line="3809"/> + <location filename="../Project/Project.py" line="3896"/> <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> <message> - <location filename="../Project/Project.py" line="280"/> + <location filename="../Project/Project.py" line="290"/> <source>PySide GUI</source> <translation>PySide Oberfläche</translation> </message> <message> - <location filename="../Project/Project.py" line="281"/> + <location filename="../Project/Project.py" line="291"/> <source>PySide Console</source> <translation>PySide Kommandozeile</translation> </message> <message> - <location filename="../Project/Project.py" line="167"/> + <location filename="../Project/Project.py" line="176"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation>Python 3-Dateien (*.py *.py3);;Python 3-GUI-Dateien (*.pyw *.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="1587"/> + <location filename="../Project/Project.py" line="1608"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>Die ausgewählte Datei <b>{0}</b> konnte nicht zu <b>{1}</b> hinzugefügt werden.</p><p>Ursache: {2}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1644"/> + <location filename="../Project/Project.py" line="1665"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Das Zielverzeichnis <b>{0}</b> konnte nicht erstellt werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="173"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation>Python 2-Dateien (*.py2);;Python 2-GUI-Dateien (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2313"/> + <location filename="../Project/Project.py" line="2352"/> <source>Create main script</source> <translation>Hauptskript erzeugen</translation> </message> <message> - <location filename="../Project/Project.py" line="2313"/> + <location filename="../Project/Project.py" line="2352"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>Das Hauptskript <b>{0}</b> konnte nicht erzeugt werden.<br/>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3992"/> + <location filename="../Project/Project.py" line="4079"/> <source>Load Diagram</source> <translation>Diagramm laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3992"/> + <location filename="../Project/Project.py" line="4079"/> <source>&Load Diagram...</source> <translation>Diagramm &laden...</translation> </message> <message> - <location filename="../Project/Project.py" line="3996"/> + <location filename="../Project/Project.py" line="4083"/> <source>Load a diagram from file.</source> <translation>Lade ein Diagramm aus einer Datei.</translation> </message> <message> - <location filename="../Project/Project.py" line="3998"/> + <location filename="../Project/Project.py" line="4085"/> <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> <message> - <location filename="../Project/Project.py" line="341"/> + <location filename="../Project/Project.py" line="351"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation><p>Die Programmiersprache <b>{0}</b> wird nicht unterstützt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="364"/> + <location filename="../Project/Project.py" line="374"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation><p>Der Projekttyp <b>{0}</b> ist bereits registriert.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="352"/> + <location filename="../Project/Project.py" line="362"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation><p>Der Projekttyp <b>{0}</b> ist bereits für die Programmiersprache <b>{1}</b> registriert.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="262"/> + <location filename="../Project/Project.py" line="272"/> <source>PyQt5 GUI</source> <translation>PyQt5 Oberfläche</translation> </message> <message> - <location filename="../Project/Project.py" line="263"/> + <location filename="../Project/Project.py" line="273"/> <source>PyQt5 Console</source> <translation>PyQt5 Kommandozeile</translation> </message> <message> - <location filename="../Project/Project.py" line="4550"/> + <location filename="../Project/Project.py" line="4679"/> <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="5278"/> + <location filename="../Project/Project.py" line="5407"/> <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="4012"/> + <location filename="../Project/Project.py" line="4099"/> <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="4014"/> + <location filename="../Project/Project.py" line="4101"/> <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="5127"/> + <location filename="../Project/Project.py" line="5256"/> <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="260"/> + <location filename="../Project/Project.py" line="270"/> <source>PyQt4 GUI</source> <translation>PyQt4 Oberfläche</translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="271"/> <source>PyQt4 Console</source> <translation>PyQt4 Kommandozeile</translation> </message> <message> - <location filename="../Project/Project.py" line="264"/> + <location filename="../Project/Project.py" line="274"/> <source>Eric6 Plugin</source> <translation>Eric6 Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="2747"/> + <location filename="../Project/Project.py" line="2828"/> <source>Create project management directory</source> <translation>Projektverwaltungsverzeichnis erstellen</translation> </message> <message> - <location filename="../Project/Project.py" line="2747"/> + <location filename="../Project/Project.py" line="2828"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation><p>Das Projektverzeichnis <b>{0}</b> ist nicht beschreibbar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3742"/> + <location filename="../Project/Project.py" line="3829"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="3748"/> + <location filename="../Project/Project.py" line="3835"/> <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="3750"/> + <location filename="../Project/Project.py" line="3837"/> <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="3742"/> + <location filename="../Project/Project.py" line="3829"/> <source>Search Project File</source> <translation>Projektdatei suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="3742"/> + <location filename="../Project/Project.py" line="3829"/> <source>Search Project File...</source> <translation>Projektdatei suchen...</translation> </message> <message> - <location filename="../Project/Project.py" line="5056"/> + <location filename="../Project/Project.py" line="5185"/> <source>Create Plugin Archives</source> <translation>Erzeuge Plugin Archive</translation> </message> <message> - <location filename="../Project/Project.py" line="4023"/> + <location filename="../Project/Project.py" line="4110"/> <source>Create Plugin &Archives</source> <translation>Erzeuge Plugin &Archive</translation> </message> <message> - <location filename="../Project/Project.py" line="4028"/> + <location filename="../Project/Project.py" line="4115"/> <source>Create eric6 plugin archive files.</source> <translation>Erzeugt eric6 Plugin Archivdateien.</translation> </message> <message> - <location filename="../Project/Project.py" line="4030"/> + <location filename="../Project/Project.py" line="4117"/> <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation><b>Erzeuge Pluginarchive</b><p>Dies erzeugt eric6-Pluginarchivdateien mit den Dateien, die in einer PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4040"/> + <location filename="../Project/Project.py" line="4127"/> <source>Create Plugin Archives (Snapshot)</source> <translation>Erzeuge Plugin Archive (Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="4040"/> + <location filename="../Project/Project.py" line="4127"/> <source>Create Plugin Archives (&Snapshot)</source> <translation>Erzeuge Plugin Archive (&Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="4045"/> + <location filename="../Project/Project.py" line="4132"/> <source>Create eric6 plugin archive files (snapshot releases).</source> <translation>Erzeugt eric6 Plugin Archivdateien (Snapshot Releases).</translation> </message> <message> - <location filename="../Project/Project.py" line="4047"/> + <location filename="../Project/Project.py" line="4134"/> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation><b>Erzeuge Pluginarchive (Snapshot)</b><p>Dies erzeugt eric6-Pluginarchivdateien mit den Dateien, die in der PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5035"/> + <location filename="../Project/Project.py" line="5164"/> <source>Select package lists:</source> <translation>Wähle Paketlisten:</translation> </message> <message> - <location filename="../Project/Project.py" line="5052"/> + <location filename="../Project/Project.py" line="5181"/> <source>Creating plugin archives...</source> <translation>Erzeuge Plugin Archive...</translation> </message> <message> - <location filename="../Project/Project.py" line="5052"/> + <location filename="../Project/Project.py" line="5181"/> <source>Abort</source> <translation>Abbruch</translation> </message> <message> - <location filename="../Project/Project.py" line="5052"/> - <source>%v/%m Archives</source> - <translation>%v/%m Archive</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5069"/> - <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation><p>Die Datei <b>{0}</b> konnte nicht geladen werden.<br/>Grund: {1}</p></translation> - </message> - <message> <location filename="../Project/Project.py" line="5181"/> + <source>%v/%m Archives</source> + <translation>%v/%m Archive</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5198"/> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation><p>Die Datei <b>{0}</b> konnte nicht geladen werden.<br/>Grund: {1}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5310"/> <source><p>The eric6 plugin archive files were created with some errors.</p></source> <translation><p>Die eric6 Plugin Archivdateien wurden mit einigen Fehlern erzeugt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5184"/> + <location filename="../Project/Project.py" line="5313"/> <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation><p>Die eric6 Plugin Archivdateien wurden erfolgreich erzeugt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5045"/> + <location filename="../Project/Project.py" line="5174"/> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation><p>Keine Paketlistendateien (PKGLIST*) verfügbar oder ausgewählt. Abbruch...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5099"/> + <location filename="../Project/Project.py" line="5228"/> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation><p>Die Datei <b>{0}</b> ist noch nicht bereit.</p><p>Bitte überarbeite sie und löschen die Zeile '; initial_list' des Dateikopfes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3820"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.</p></source> <translation><b>Neue Dateien suchen...</b><p>Dies sucht im Projektverzeichnis und in registrierten Unterverzeichnissen nach neuen Dateien (Quellen, *.ui, *.idl, *.proto).</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3791"/> + <location filename="../Project/Project.py" line="3878"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Dateitypzuordnungen...</b><p>Dies zeigt einen Dialog zur Eingabe der Dateitypzuordnungen des Projektes. Diese Zuordnungen bestimmen den Typ (Quellen, Formulare, Schnittstellen, Protokolle oder Sonstige) über ein Dateinamenmuster. Sie werden genutzt, wenn eine Datei zum Projekt hinzugefügt oder wenn nach neuen Dateien gesucht wird.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1435"/> + <location filename="../Project/Project.py" line="1456"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>Die ausgewählte Übersetzungsdatei <b>{0}</b> konnte nicht gelöscht werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2133"/> + <location filename="../Project/Project.py" line="2154"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>Die ausgewählte Datei <b>{0}</b> konnte nicht gelöscht werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2163"/> + <location filename="../Project/Project.py" line="2184"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>Das ausgewählte Verzeichnis <b>{0}</b> konnte nicht gelöscht werden.</p><p>Ursache: {1}</p></translation> </message> + <message> + <location filename="../Project/Project.py" line="2654"/> + <source>Create Makefile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="2654"/> + <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5590"/> + <source>Execute Make</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4148"/> + <source>&Execute Make</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4152"/> + <source>Perform a 'make' run.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4154"/> + <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5570"/> + <source>Test for Changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4162"/> + <source>&Test for Changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4166"/> + <source>Question 'make', if a rebuild is needed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4168"/> + <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4210"/> + <source>Make</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5518"/> + <source>The make process did not start.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5563"/> + <source>The make process crashed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5573"/> + <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5578"/> + <source><p>There are changes that require the default make target to be rebuilt.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5590"/> + <source>The makefile contains errors.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectBaseBrowser</name> @@ -52140,74 +52288,84 @@ <translation>Rekursive Suche nach neuen Dateien</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="211"/> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="221"/> <source>Recent Projects</source> <translation>Zuletzt geöffnete Projekte</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="217"/> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="227"/> <source>Number of recent projects:</source> <translation>Anzahl zuletzt geöffneter Projekte:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="224"/> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="234"/> <source>Enter the number of recent projects to remember</source> <translation>Gib die zu merkende Anzahl an zuletzt geöffneter Projekte ein</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="163"/> - <source>Automatically compile</source> - <translation>Automatische Übersetzung</translation> + <source>Automatisations</source> + <translation>Automatisierungen</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="172"/> - <source>changed forms</source> - <translation>geänderte Formulare</translation> + <source>compile changed forms</source> + <translation>geänderte Formulare übersetzen</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="182"/> - <source>changed resources</source> - <translation>geänderte Ressourcen</translation> + <source>compile changed resources</source> + <translation>geänderte Ressourcen übersetzen</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="202"/> + <source>Python Variant</source> + <translation>Python-Variante</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="208"/> + <source>Select to determine the Python variant from the project language</source> + <translation>Auswählen, um die Python-Variante über die Projektsprache zu bestimmen</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="211"/> + <source>Determine Python variant from project language</source> + <translation>Python-Variante über Projektsprache bestimmen</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="266"/> + <source>Tasks</source> + <translation>Aufgaben</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="272"/> + <source>Select to save the project tasks automatically</source> + <translation>Auswählen, um Projektaufgaben automatisch zu speichern</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="275"/> + <source>Save tasks automatically</source> + <translation>Aufgaben automatisch speichern</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="282"/> + <source>Select to rescan the project tasks when a project is opened</source> + <translation>Auswählen, um nach dem Öffnen eines Projektes Projektaufgaben neu zu ermitteln</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="285"/> + <source>Rescan tasks upon opening</source> + <translation>Aufgaben beim Öffnen regenerieren</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="189"/> + <source>Select to execute the configured 'make' command before a run action is performed</source> + <translation type="unfinished"></translation> </message> <message> <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="192"/> - <source>Python Variant</source> - <translation>Python-Variante</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="198"/> - <source>Select to determine the Python variant from the project language</source> - <translation>Auswählen, um die Python-Variante über die Projektsprache zu bestimmen</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="201"/> - <source>Determine Python variant from project language</source> - <translation>Python-Variante über Projektsprache bestimmen</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="256"/> - <source>Tasks</source> - <translation>Aufgaben</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="262"/> - <source>Select to save the project tasks automatically</source> - <translation>Auswählen, um Projektaufgaben automatisch zu speichern</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="265"/> - <source>Save tasks automatically</source> - <translation>Aufgaben automatisch speichern</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="272"/> - <source>Select to rescan the project tasks when a project is opened</source> - <translation>Auswählen, um nach dem Öffnen eines Projektes Projektaufgaben neu zu ermitteln</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/ProjectPage.ui" line="275"/> - <source>Rescan tasks upon opening</source> - <translation>Aufgaben beim Öffnen regenerieren</translation> + <source>execute make</source> + <translation type="unfinished"></translation> </message> </context> <context> @@ -52963,12 +53121,12 @@ <context> <name>PropertiesDialog</name> <message> - <location filename="../Project/PropertiesDialog.py" line="105"/> + <location filename="../Project/PropertiesDialog.py" line="109"/> <source>The project is version controlled by <b>{0}</b>.</source> <translation>Das Projekt steht unter Versionskontrolle durch <b>{0}</b>.</translation> </message> <message> - <location filename="../Project/PropertiesDialog.py" line="111"/> + <location filename="../Project/PropertiesDialog.py" line="115"/> <source>The project is not version controlled.</source> <translation>Das Projekt steht nicht unter Versionskontrolle.</translation> </message> @@ -52987,24 +53145,24 @@ <p>Falls das Projekt mit einem Versionskontrollsystem verwaltet wird, zeigt der „Zeige Repositoryinfo“-Knopf Informationen über das Repository an.</p></translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="275"/> + <location filename="../Project/PropertiesDialog.ui" line="315"/> <source>Enter authors email</source> <translation>Gib die E-Mail-Adresse des Autors ein</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="278"/> + <location filename="../Project/PropertiesDialog.ui" line="318"/> <source><b>Email</b> <p>Enter the email address of the author</p></source> <translation><b>E-Mail</b> <p>Gib die E-Mail-Adresse des Autors ein.</p></translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="185"/> + <location filename="../Project/PropertiesDialog.ui" line="225"/> <source>Enter the main script</source> <translation>Hauptdatei eingeben</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="188"/> + <location filename="../Project/PropertiesDialog.ui" line="228"/> <source><b>Main Script</b> <p>Enter the main script of the project. You may select it with a dialog by pressing the button to the right.</p></source> @@ -53013,19 +53171,19 @@ eine Dialoges auswählen, indem Sie den Knopf rechts drücken.</p></translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="299"/> + <location filename="../Project/PropertiesDialog.ui" line="339"/> <source>Enter description</source> <translation>Beschreibung eingeben</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="302"/> + <location filename="../Project/PropertiesDialog.ui" line="342"/> <source><b>Description</b> <p>Enter a short description for the project.</p></source> <translation><b>Beschreibung</b> <p>Gib eine kurze Beschreibung des Projektes ein.</p></translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="244"/> + <location filename="../Project/PropertiesDialog.ui" line="284"/> <source>&Author:</source> <translation>&Autor:</translation> </message> @@ -53035,37 +53193,37 @@ <translation>Projekt&name:</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="114"/> + <location filename="../Project/PropertiesDialog.ui" line="154"/> <source>Project &Directory:</source> <translation>Projekt&verzeichnis:</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="145"/> + <location filename="../Project/PropertiesDialog.ui" line="185"/> <source>&Version No.:</source> <translation>&Versionsnummer:</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="84"/> + <location filename="../Project/PropertiesDialog.ui" line="86"/> <source>Select, if the project uses other programming languages as well</source> <translation>Auswählen, wenn das Projekt auch andere Programmiersprachen verwendet</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="87"/> + <location filename="../Project/PropertiesDialog.ui" line="89"/> <source>Mi&xed programming languages</source> <translation>&Gemischte Programmiersprachen</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="90"/> + <location filename="../Project/PropertiesDialog.ui" line="92"/> <source>Alt+X</source> <translation>Alt+G</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="133"/> + <location filename="../Project/PropertiesDialog.ui" line="173"/> <source>Enter the project directory</source> <translation>Gib das Projektverzeichnis ein</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="136"/> + <location filename="../Project/PropertiesDialog.ui" line="176"/> <source><b>Project Directory</b> <p>Enter the project directory. You may select it with a dialog by pressing the button to the right.</p></source> @@ -53074,29 +53232,29 @@ Dialoges auswählen, indem Sie den Knopf rechts drücken.</p></translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="166"/> + <location filename="../Project/PropertiesDialog.ui" line="206"/> <source>&Main Script:</source> <translation>&Hauptdatei:</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="286"/> + <location filename="../Project/PropertiesDialog.ui" line="326"/> <source>&Description:</source> <translation>&Beschreibung:</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="254"/> + <location filename="../Project/PropertiesDialog.ui" line="294"/> <source>Enter authors name</source> <translation>Autorenname eingeben</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="257"/> + <location filename="../Project/PropertiesDialog.ui" line="297"/> <source><b>Author</b> <p>Enter the name of the author.</p></source> <translation><b>Autor</b> <p>Gib den Autorennamen ein.</p></translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="265"/> + <location filename="../Project/PropertiesDialog.ui" line="305"/> <source>&Email:</source> <translation>&E-Mail:</translation> </message> @@ -53113,54 +53271,54 @@ <p>Gib den Projektnamen ein.</p></translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="155"/> + <location filename="../Project/PropertiesDialog.ui" line="195"/> <source>Enter the version number</source> <translation>Versionsnummer eingeben</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="158"/> + <location filename="../Project/PropertiesDialog.ui" line="198"/> <source><b>Version No.</b> <p>Enter the version no.</p></source> <translation><b>Versionsnummer</b> <p>Gib die Versionsnummer ein.</p></translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="343"/> + <location filename="../Project/PropertiesDialog.ui" line="383"/> <source>Press to show information about the repository</source> <translation>Betätigen um Informationen über das Repository anzuzeigen</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="346"/> + <location filename="../Project/PropertiesDialog.ui" line="386"/> <source>Show &Repository Info</source> <translation>Zeige &Repositoryinfo</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="349"/> + <location filename="../Project/PropertiesDialog.ui" line="389"/> <source>Alt+R</source> <translation>Alt+R</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="197"/> + <location filename="../Project/PropertiesDialog.ui" line="237"/> <source>Press to edit the translations properties</source> <translation>Drücken, um die Einstellungen für Übersetzungen zu ändern</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="200"/> + <location filename="../Project/PropertiesDialog.ui" line="240"/> <source>Translations Properties...</source> <translation>Übersetzungseigenschaften...</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="97"/> + <location filename="../Project/PropertiesDialog.ui" line="137"/> <source>Project &Type:</source> <translation>Projekt&typ:</translation> </message> <message> - <location filename="../Project/PropertiesDialog.py" line="56"/> + <location filename="../Project/PropertiesDialog.py" line="60"/> <source>Source Files ({0});;All Files (*)</source> <translation>Quelldateien ({0});;Alle Dateien (*)</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="107"/> + <location filename="../Project/PropertiesDialog.ui" line="147"/> <source>Select the type of the project</source> <translation>Wähle den Typ des Projektes</translation> </message> @@ -53196,45 +53354,60 @@ <translation>Einstellungen für Rechtschreibprüfung...</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="207"/> + <location filename="../Project/PropertiesDialog.ui" line="247"/> <source>End of &Line Character:</source> <translation>&Zeilenendezeichen:</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="217"/> + <location filename="../Project/PropertiesDialog.ui" line="257"/> <source>Select the end of line character to be used by the project</source> <translation>Wähle das Zeilenendezeichen, das vom Projekt verwendet wird</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="221"/> + <location filename="../Project/PropertiesDialog.ui" line="261"/> <source>System</source> <translation>System</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="226"/> + <location filename="../Project/PropertiesDialog.ui" line="266"/> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="231"/> + <location filename="../Project/PropertiesDialog.ui" line="271"/> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="236"/> + <location filename="../Project/PropertiesDialog.ui" line="276"/> <source>Windows/DOS</source> <translation>Windows/DOS</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="318"/> + <location filename="../Project/PropertiesDialog.ui" line="358"/> <source>Select to create a version controlled project</source> <translation>Auswählen, um ein Projekt mit Versionskontrolle zu erzeugen</translation> </message> <message> - <location filename="../Project/PropertiesDialog.ui" line="321"/> + <location filename="../Project/PropertiesDialog.ui" line="361"/> <source>Version Controlled Project</source> <translation>Projekt mit Versionskontrolle</translation> </message> + <message> + <location filename="../Project/PropertiesDialog.ui" line="112"/> + <source>Select to activate the 'make' support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/PropertiesDialog.ui" line="115"/> + <source>Enable 'make' Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/PropertiesDialog.ui" line="125"/> + <source>Press to open a dialog to enter the 'make' parameters</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProtobufPage</name> @@ -73620,252 +73793,252 @@ <context> <name>UserInterface</name> <message> - <location filename="../UI/UserInterface.py" line="1718"/> + <location filename="../UI/UserInterface.py" line="1721"/> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1724"/> + <location filename="../UI/UserInterface.py" line="1727"/> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1725"/> + <location filename="../UI/UserInterface.py" line="1728"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1737"/> + <location filename="../UI/UserInterface.py" line="1740"/> <source>Helpviewer</source> <translation>Hilfe</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1737"/> + <location filename="../UI/UserInterface.py" line="1740"/> <source>&Helpviewer...</source> <translation>&Hilfe...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1743"/> + <location filename="../UI/UserInterface.py" line="1746"/> <source>Open the helpviewer window</source> <translation>Öffnet das Hilfe-Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2790"/> + <location filename="../UI/UserInterface.py" line="2793"/> <source>Unittest</source> <translation>Modultests</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1843"/> + <location filename="../UI/UserInterface.py" line="1846"/> <source>&Unittest...</source> <translation>&Modultests...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1848"/> + <location filename="../UI/UserInterface.py" line="1851"/> <source>Start unittest dialog</source> <translation>Starte den Modultest Dialog</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2666"/> + <location filename="../UI/UserInterface.py" line="2669"/> <source>&Window</source> <translation>&Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2716"/> + <location filename="../UI/UserInterface.py" line="2719"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1331"/> + <location filename="../UI/UserInterface.py" line="1334"/> <source>Quit</source> <translation>Beenden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2111"/> + <location filename="../UI/UserInterface.py" line="2114"/> <source>Preferences</source> <translation>Einstellungen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2111"/> + <location filename="../UI/UserInterface.py" line="2114"/> <source>&Preferences...</source> <translation>&Einstellungen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2116"/> + <location filename="../UI/UserInterface.py" line="2119"/> <source>Set the prefered configuration</source> <translation>Konfiguriert die Einstellungen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2118"/> + <location filename="../UI/UserInterface.py" line="2121"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Einstellungen</b><p>Konfiguriert die einstellbaren Parameter der Applikation nach Ihren Wünschen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1337"/> + <location filename="../UI/UserInterface.py" line="1340"/> <source>Quit the IDE</source> <translation>Beenden der Entwicklungsumgebung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2789"/> + <location filename="../UI/UserInterface.py" line="2792"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4598"/> + <location filename="../UI/UserInterface.py" line="4601"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2691"/> + <location filename="../UI/UserInterface.py" line="2694"/> <source>&Toolbars</source> <translation>&Werkzeugleisten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4724"/> + <location filename="../UI/UserInterface.py" line="4727"/> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1331"/> + <location filename="../UI/UserInterface.py" line="1334"/> <source>&Quit</source> <translation>B&eenden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1338"/> + <location filename="../UI/UserInterface.py" line="1341"/> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Die Entwicklungsumgebung beenden</b><p>Dies beendet die Entwicklungsumgebung. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python-Programm, das gerade debuggt wird, wird beendet und sämtliche Einstellungen werden gespeichert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1718"/> + <location filename="../UI/UserInterface.py" line="1721"/> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4913"/> + <location filename="../UI/UserInterface.py" line="4916"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1297"/> + <location filename="../UI/UserInterface.py" line="1300"/> <source>{0} - Passive Mode</source> <translation>{0} – Passiver Modus</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1304"/> + <location filename="../UI/UserInterface.py" line="1307"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} – {1} – Passiver Modus</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1513"/> + <location filename="../UI/UserInterface.py" line="1516"/> <source>Log-Viewer</source> <translation>Ausgabefenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2791"/> + <location filename="../UI/UserInterface.py" line="2794"/> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1768"/> <source>Show Versions</source> <translation>Zeige Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1765"/> + <location filename="../UI/UserInterface.py" line="1768"/> <source>Show &Versions</source> <translation>Zeige &Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1769"/> + <location filename="../UI/UserInterface.py" line="1772"/> <source>Display version information</source> <translation>Zeigt Versionsinformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1771"/> + <location filename="../UI/UserInterface.py" line="1774"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Zeige Versionen</b><p>Zeigt Versionsinformationen an.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2216"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2216"/> + <location filename="../UI/UserInterface.py" line="2219"/> <source>Keyboard &Shortcuts...</source> <translation>&Tastaturkurzbefehle...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2221"/> + <location filename="../UI/UserInterface.py" line="2224"/> <source>Set the keyboard shortcuts</source> <translation>Setze die Tastaturkurzbefehle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2223"/> + <location filename="../UI/UserInterface.py" line="2226"/> <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> <translation><b>Tastaturkurzbefehle</b><p>Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2620"/> + <location filename="../UI/UserInterface.py" line="2623"/> <source>E&xtras</source> <translation>E&xtras</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3218"/> + <location filename="../UI/UserInterface.py" line="3221"/> <source>Report Bug</source> <translation>Fehler berichten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1816"/> + <location filename="../UI/UserInterface.py" line="1819"/> <source>Report &Bug...</source> <translation>&Fehler berichten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1820"/> + <location filename="../UI/UserInterface.py" line="1823"/> <source>Report a bug</source> <translation>Einen Fehler berichten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1821"/> + <location filename="../UI/UserInterface.py" line="1824"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation><b>Fehler berichten...</b><p>Öffnet einen Dialog zum Senden eines Fehlerberichtes.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5712"/> + <location filename="../UI/UserInterface.py" line="5715"/> <source>Export Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle exportieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2231"/> + <location filename="../UI/UserInterface.py" line="2234"/> <source>&Export Keyboard Shortcuts...</source> <translation>Tastaturkurzbefehle &exportieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2236"/> + <location filename="../UI/UserInterface.py" line="2239"/> <source>Export the keyboard shortcuts</source> <translation>Exportiert die Tastaturkurzbefehle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2238"/> + <location filename="../UI/UserInterface.py" line="2241"/> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Tastaturkurzbefehle exportieren</b><p>Exportiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5736"/> + <location filename="../UI/UserInterface.py" line="5739"/> <source>Import Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle importieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2245"/> + <location filename="../UI/UserInterface.py" line="2248"/> <source>&Import Keyboard Shortcuts...</source> <translation>Tastaturkurzbefehle &importieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2250"/> + <location filename="../UI/UserInterface.py" line="2253"/> <source>Import the keyboard shortcuts</source> <translation>Importiert die Tastaturkurzbefehle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2252"/> + <location filename="../UI/UserInterface.py" line="2255"/> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Tastaturkurzbefehle importieren</b><p>Importiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> @@ -73880,617 +74053,617 @@ <translation>Erstelle Verbindungen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="559"/> + <location filename="../UI/UserInterface.py" line="562"/> <source>Initializing Actions...</source> <translation>Initialisiere Aktionen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="561"/> + <location filename="../UI/UserInterface.py" line="564"/> <source>Initializing Menus...</source> <translation>Initialisiere Menüs...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="563"/> + <location filename="../UI/UserInterface.py" line="566"/> <source>Initializing Toolbars...</source> <translation>Initialisiere Werkzeugleisten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="565"/> + <location filename="../UI/UserInterface.py" line="568"/> <source>Initializing Statusbar...</source> <translation>Initialisiere Statuszeile...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="513"/> + <location filename="../UI/UserInterface.py" line="516"/> <source>Initializing Tools...</source> <translation>Initialisiere Werkzeuge...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1849"/> + <location filename="../UI/UserInterface.py" line="1852"/> <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> <translation><b>Modultests</b><p>Führe Modultests durch. Der Dialog bietet die Möglichkeit eine Zusammenstellung von Modultests auszuwählen und auszuführen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1857"/> + <location filename="../UI/UserInterface.py" line="1860"/> <source>Unittest Restart</source> <translation>Modultest neu starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1862"/> + <location filename="../UI/UserInterface.py" line="1865"/> <source>Restart last unittest</source> <translation>Modultest neu starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1863"/> + <location filename="../UI/UserInterface.py" line="1866"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>Modultest neu starten</b><p>Den letzten durchgeführten Modultest neu starten.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1887"/> + <location filename="../UI/UserInterface.py" line="1890"/> <source>Unittest Script</source> <translation>Modultest (Skript)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1892"/> + <location filename="../UI/UserInterface.py" line="1895"/> <source>Run unittest with current script</source> <translation>Modultest für aktuelles Skript ausführen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1894"/> + <location filename="../UI/UserInterface.py" line="1897"/> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Modultest (Skript)</b><p>Modultest für aktuelles Skript ausführen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4346"/> + <location filename="../UI/UserInterface.py" line="4349"/> <source>Unittest Project</source> <translation>Modultest (Projekt)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1907"/> + <location filename="../UI/UserInterface.py" line="1910"/> <source>Run unittest with current project</source> <translation>Modultest für aktuellesProjekt ausführen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1909"/> + <location filename="../UI/UserInterface.py" line="1912"/> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Modultest (Projekt)</b><p>Modultest für aktuelles Projekt ausführen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2603"/> + <location filename="../UI/UserInterface.py" line="2606"/> <source>&Unittest</source> <translation>&Modultests</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4346"/> + <location filename="../UI/UserInterface.py" line="4349"/> <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="../UI/UserInterface.py" line="1857"/> + <location filename="../UI/UserInterface.py" line="1860"/> <source>&Restart Unittest...</source> <translation>Modultest &neu starten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1887"/> + <location filename="../UI/UserInterface.py" line="1890"/> <source>Unittest &Script...</source> <translation>Modultest (&Skript)...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1902"/> + <location filename="../UI/UserInterface.py" line="1905"/> <source>Unittest &Project...</source> <translation>Modultest (&Projekt)...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1997"/> + <location filename="../UI/UserInterface.py" line="2000"/> <source>Compare Files</source> <translation>Dateien vergleichen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1997"/> + <location filename="../UI/UserInterface.py" line="2000"/> <source>&Compare Files...</source> <translation>Dateien &vergleichen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2015"/> + <location filename="../UI/UserInterface.py" line="2018"/> <source>Compare two files</source> <translation>Zwei Dateien vergleichen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2003"/> + <location filename="../UI/UserInterface.py" line="2006"/> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Dateien vergleichen</b><p>Öffnet einen Dialog zum Vergleich zweier Dateien.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2010"/> + <location filename="../UI/UserInterface.py" line="2013"/> <source>Compare Files side by side</source> <translation>Dateien Seite an Seite vergleichen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2016"/> + <location filename="../UI/UserInterface.py" line="2019"/> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Dateien Seite an Seite vergleichen</b><p>Öffnet einen Dialog zum Vergleich zweier Dateien und zur Anzeige des Ergebnisse Seite an Seite.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6295"/> + <location filename="../UI/UserInterface.py" line="6298"/> <source>Drop Error</source> <translation>Drop-Fehler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="592"/> + <location filename="../UI/UserInterface.py" line="595"/> <source>Initializing Single Application Server...</source> <translation>Initialisiere Applikationsserver...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1308"/> + <location filename="../UI/UserInterface.py" line="1311"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} . {1} – {2} – Passiver Modus</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1499"/> <source>File-Browser</source> <translation>Dateibrowser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1393"/> + <location filename="../UI/UserInterface.py" line="1396"/> <source>Edit Profile</source> <translation>Editieren-Profil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1399"/> + <location filename="../UI/UserInterface.py" line="1402"/> <source>Activate the edit view profile</source> <translation>Aktiviert das Editieren-Ansichtsprofil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1401"/> + <location filename="../UI/UserInterface.py" line="1404"/> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Editieren-Profil</b><p>Aktiviert das „Editieren-Ansichtsprofil“. Fenster, die in diesem Profil angezeigt werden sollen, können im „Ansichtenprofile konfigurieren“-Dialog ausgewählt werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1410"/> + <location filename="../UI/UserInterface.py" line="1413"/> <source>Debug Profile</source> <translation>Debuggen-Profil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1416"/> + <location filename="../UI/UserInterface.py" line="1419"/> <source>Activate the debug view profile</source> <translation>Aktiviert das Debuggen-Ansichtsprofil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1418"/> + <location filename="../UI/UserInterface.py" line="1421"/> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Debuggen-Profil</b><p>Aktiviert das „Debuggen Ansichtsprofil“. Fenster, die in diesem Profil angezeigt werden sollen, können im „Ansichtenprofile konfigurieren“-Dialog ausgewählt werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2184"/> + <location filename="../UI/UserInterface.py" line="2187"/> <source>View Profiles</source> <translation>Ansichtenprofile</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2184"/> + <location filename="../UI/UserInterface.py" line="2187"/> <source>&View Profiles...</source> <translation>&Ansichtenprofile...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2189"/> + <location filename="../UI/UserInterface.py" line="2192"/> <source>Configure view profiles</source> <translation>Ansichtenprofile konfigurieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2191"/> + <location filename="../UI/UserInterface.py" line="2194"/> <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> <translation><b>Ansichtenprofile</b><p>Ansichtenprofile konfigurieren. Mit diesem Dialog kann die Sichtbarkeit der verschiedenen Fenster für die vorbestimmten Ansichtenprofile eingestellt werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4724"/> + <location filename="../UI/UserInterface.py" line="4727"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Die Datei <b>{0}</b> existiert nicht oder hat die Größe Null.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4452"/> + <location filename="../UI/UserInterface.py" line="4455"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Designer konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4519"/> + <location filename="../UI/UserInterface.py" line="4522"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Linguist konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4570"/> + <location filename="../UI/UserInterface.py" line="4573"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Assistant konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4913"/> + <location filename="../UI/UserInterface.py" line="4916"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Der Werkzeugeeintrag <b>{0}</b> konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{1}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6295"/> + <location filename="../UI/UserInterface.py" line="6298"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1970"/> + <location filename="../UI/UserInterface.py" line="1973"/> <source>UI Previewer</source> <translation>UI-Vorschau</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1970"/> + <location filename="../UI/UserInterface.py" line="1973"/> <source>&UI Previewer...</source> <translation>&UI-Vorschau...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1975"/> + <location filename="../UI/UserInterface.py" line="1978"/> <source>Start the UI Previewer</source> <translation>Starte die UI-Vorschau</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1976"/> + <location filename="../UI/UserInterface.py" line="1979"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation><b>UI-Vorschau</b><p>Starte die UI-Vorschau.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4680"/> + <location filename="../UI/UserInterface.py" line="4683"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die UI-Vorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1983"/> + <location filename="../UI/UserInterface.py" line="1986"/> <source>Translations Previewer</source> <translation>Übersetzungsvorschau</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1983"/> + <location filename="../UI/UserInterface.py" line="1986"/> <source>&Translations Previewer...</source> <translation>&Übersetzungsvorschau...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1988"/> + <location filename="../UI/UserInterface.py" line="1991"/> <source>Start the Translations Previewer</source> <translation>Die Übersetzungsvorschau starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1990"/> + <location filename="../UI/UserInterface.py" line="1993"/> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Übersetzungsvorschau</b><p>Dies startet das Programm zur Vorschau von Übersetzungen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4735"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Übersetzungsvorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1483"/> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1483"/> <source>&Shell</source> <translation>&Shell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2158"/> <source>Reload APIs</source> <translation>APIs neu laden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2155"/> + <location filename="../UI/UserInterface.py" line="2158"/> <source>Reload &APIs</source> <translation>APIs &neu laden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2159"/> + <location filename="../UI/UserInterface.py" line="2162"/> <source>Reload the API information</source> <translation>Die API-Informationen neu laden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2161"/> + <location filename="../UI/UserInterface.py" line="2164"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation><b>APIs neu laden</b><p>Lädt die API-Informationen neu.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1531"/> + <location filename="../UI/UserInterface.py" line="1534"/> <source>Task-Viewer</source> <translation>Aufgabenanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5905"/> + <location filename="../UI/UserInterface.py" line="5908"/> <source>Save tasks</source> <translation>Aufgaben speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5905"/> + <location filename="../UI/UserInterface.py" line="5908"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5934"/> + <location filename="../UI/UserInterface.py" line="5937"/> <source>Read tasks</source> <translation>Aufgaben lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5934"/> + <location filename="../UI/UserInterface.py" line="5937"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4598"/> + <location filename="../UI/UserInterface.py" line="4601"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Momentan ist kein Betrachter angegeben. Bitte benutzen Sie den Einstellungsdialog, um einen festzulegen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4612"/> + <location filename="../UI/UserInterface.py" line="4615"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der Betrachter konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5387"/> + <location filename="../UI/UserInterface.py" line="5390"/> <source>Documentation Missing</source> <translation>Dokumentation fehlt</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5387"/> + <location filename="../UI/UserInterface.py" line="5390"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Der Dokumentationsstartpunkt „<b>{0}</b>“ konnte nicht gefunden werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3218"/> + <location filename="../UI/UserInterface.py" line="3221"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>E-Mail-Adresse oder Mailserver-Adresse sind leer. Bitte konfiguriere die E-Mail-Einstellungen im Einstellungsdialog.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1552"/> <source>Template-Viewer</source> <translation>Vorlagen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1430"/> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1462"/> + <location filename="../UI/UserInterface.py" line="1465"/> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1480"/> + <location filename="../UI/UserInterface.py" line="1483"/> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1499"/> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1531"/> + <location filename="../UI/UserInterface.py" line="1534"/> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1444"/> + <location filename="../UI/UserInterface.py" line="1447"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2310"/> + <location filename="../UI/UserInterface.py" line="2313"/> <source>Activate current editor</source> <translation>Aktiviere aktuellen Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2310"/> + <location filename="../UI/UserInterface.py" line="2313"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2323"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2332"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1513"/> + <location filename="../UI/UserInterface.py" line="1516"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2417"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Qt4 Documentation</source> <translation>Qt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2417"/> + <location filename="../UI/UserInterface.py" line="2420"/> <source>Qt&4 Documentation</source> <translation>Qt&4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2421"/> + <location filename="../UI/UserInterface.py" line="2424"/> <source>Open Qt4 Documentation</source> <translation>Öffne die Qt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2534"/> <source>Eric API Documentation</source> <translation>Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2531"/> + <location filename="../UI/UserInterface.py" line="2534"/> <source>&Eric API Documentation</source> <translation>&Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2535"/> + <location filename="../UI/UserInterface.py" line="2538"/> <source>Open Eric API Documentation</source> <translation>Öffne die Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4632"/> + <location filename="../UI/UserInterface.py" line="4635"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Die Hilfeanzeige konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>hh</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="531"/> + <location filename="../UI/UserInterface.py" line="534"/> <source>Registering Objects...</source> <translation>Registriere Objekte...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1430"/> <source>Project-Viewer</source> <translation>Projektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1462"/> + <location filename="../UI/UserInterface.py" line="1465"/> <source>Debug-Viewer</source> <translation>Debuganzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1331"/> + <location filename="../UI/UserInterface.py" line="1334"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1427"/> + <location filename="../UI/UserInterface.py" line="1430"/> <source>&Project-Viewer</source> <translation>&Projektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1718"/> + <location filename="../UI/UserInterface.py" line="1721"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1737"/> + <location filename="../UI/UserInterface.py" line="1740"/> <source>F1</source> <translation>F1</translation> </message> <message> + <location filename="../UI/UserInterface.py" line="1784"/> + <source>Check for Updates</source> + <translation>Auf Aktualisierungen prüfen</translation> + </message> + <message> <location filename="../UI/UserInterface.py" line="1781"/> - <source>Check for Updates</source> - <translation>Auf Aktualisierungen prüfen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1778"/> <source>Check for &Updates...</source> <translation>Auf &Aktualisierungen prüfen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2447"/> + <location filename="../UI/UserInterface.py" line="2450"/> <source>PyQt4 Documentation</source> <translation>PyQt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2451"/> + <location filename="../UI/UserInterface.py" line="2454"/> <source>Open PyQt4 Documentation</source> <translation>Öffne die PyQt4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2633"/> + <location filename="../UI/UserInterface.py" line="2636"/> <source>Select Tool Group</source> <translation>Werkzeuggruppe wählen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2641"/> + <location filename="../UI/UserInterface.py" line="2644"/> <source>Se&ttings</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2793"/> + <location filename="../UI/UserInterface.py" line="2796"/> <source>Profiles</source> <translation>Profile</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3532"/> + <location filename="../UI/UserInterface.py" line="3535"/> <source>&Builtin Tools</source> <translation>&Eingebaute Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4897"/> + <location filename="../UI/UserInterface.py" line="4900"/> <source>Starting process '{0} {1}'. </source> <translation>Starte Prozess „{0} {1}“. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4989"/> + <location filename="../UI/UserInterface.py" line="4992"/> <source>Process '{0}' has exited. </source> <translation>Prozess „{0}“ ist beendet. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5375"/> <source>Documentation</source> <translation>Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5198"/> + <location filename="../UI/UserInterface.py" line="5201"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>Der PyQt4-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6652"/> + <location filename="../UI/UserInterface.py" line="6655"/> <source>Error during updates check</source> <translation>Fehler während der Aktualisierungsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6632"/> + <location filename="../UI/UserInterface.py" line="6635"/> <source>Update available</source> <translation>Aktualisierung verfügbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3163"/> + <location filename="../UI/UserInterface.py" line="3166"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Versionsnummern</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6690"/> + <location filename="../UI/UserInterface.py" line="6693"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3577"/> + <location filename="../UI/UserInterface.py" line="3580"/> <source>Configure Tool Groups ...</source> <translation>Konfiguriere Werkzeuggruppen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3581"/> + <location filename="../UI/UserInterface.py" line="3584"/> <source>Configure current Tool Group ...</source> <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2173"/> + <location filename="../UI/UserInterface.py" line="2176"/> <source>Show external tools</source> <translation>Zeige externe Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2168"/> + <location filename="../UI/UserInterface.py" line="2171"/> <source>Show external &tools</source> <translation>Zeige externe &Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6652"/> + <location filename="../UI/UserInterface.py" line="6655"/> <source>Could not perform updates check.</source> <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6465"/> + <location filename="../UI/UserInterface.py" line="6468"/> <source>&Cancel</source> <translation>&Abbrechen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6474"/> + <location filename="../UI/UserInterface.py" line="6477"/> <source>Trying host {0}</source> <translation>Prüfe Host {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6717"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>First time usage</source> <translation>Erstmalige Nutzung</translation> </message> @@ -74500,1299 +74673,1299 @@ <translation>Initialisiere Plugin-Manager...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2702"/> + <location filename="../UI/UserInterface.py" line="2705"/> <source>P&lugins</source> <translation>Plugi&ns</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2794"/> + <location filename="../UI/UserInterface.py" line="2797"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2347"/> + <location filename="../UI/UserInterface.py" line="2350"/> <source>Plugin Infos</source> <translation>Plugininformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2351"/> + <location filename="../UI/UserInterface.py" line="2354"/> <source>Show Plugin Infos</source> <translation>Zeigt Plugininformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2352"/> + <location filename="../UI/UserInterface.py" line="2355"/> <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation><b>Plugininformationen...</b><p>Dies öffnet einen Dialog, der einige Informationen über die geladenen Plugins anzeigt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2347"/> + <location filename="../UI/UserInterface.py" line="2350"/> <source>&Plugin Infos...</source> <translation>&Plugininformationen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3549"/> + <location filename="../UI/UserInterface.py" line="3552"/> <source>&Plugin Tools</source> <translation>&Pluginwerkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2378"/> + <location filename="../UI/UserInterface.py" line="2381"/> <source>Uninstall Plugin</source> <translation>Plugin deinstallieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2373"/> + <location filename="../UI/UserInterface.py" line="2376"/> <source>&Uninstall Plugin...</source> <translation>Plugin &deinstallieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2379"/> + <location filename="../UI/UserInterface.py" line="2382"/> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation><b>Plugin deinstallieren...</b><p>Dies öffnet einen Dialog zur Deinstallation eines Plugins.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3697"/> + <location filename="../UI/UserInterface.py" line="3700"/> <source>&Show all</source> <translation>Alle an&zeigen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3699"/> + <location filename="../UI/UserInterface.py" line="3702"/> <source>&Hide all</source> <translation>Alle &ausblenden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="602"/> + <location filename="../UI/UserInterface.py" line="605"/> <source>Activating Plugins...</source> <translation>Aktiviere Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2625"/> + <location filename="../UI/UserInterface.py" line="2628"/> <source>Wi&zards</source> <translation>&Assistenten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1789"/> + <location filename="../UI/UserInterface.py" line="1792"/> <source>Show downloadable versions</source> <translation>Zeige verfügbare Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1789"/> + <location filename="../UI/UserInterface.py" line="1792"/> <source>Show &downloadable versions...</source> <translation>&Zeige verfügbare Versionen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1793"/> + <location filename="../UI/UserInterface.py" line="1796"/> <source>Show the versions available for download</source> <translation>Zeige die verfügbaren eric-Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6676"/> + <location filename="../UI/UserInterface.py" line="6679"/> <source><h3>Available versions</h3><table></source> <translation><h3>Verfügbare Versionen</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2389"/> <source>Plugin Repository</source> <translation>Plugin-Repository</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2386"/> + <location filename="../UI/UserInterface.py" line="2389"/> <source>Plugin &Repository...</source> <translation>Plugin-&Repository...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2391"/> + <location filename="../UI/UserInterface.py" line="2394"/> <source>Show Plugins available for download</source> <translation>Zeige zum Download verfügbare Plugins an</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2393"/> + <location filename="../UI/UserInterface.py" line="2396"/> <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> <translation><b>Plugin-Repository...</b><p>Dies öffnet einen Dialog, der eine Liste der im Internet verfügbaren Plugins anzeigt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2365"/> + <location filename="../UI/UserInterface.py" line="2368"/> <source>Install Plugins</source> <translation>Plugins installieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2360"/> + <location filename="../UI/UserInterface.py" line="2363"/> <source>&Install Plugins...</source> <translation>Plugins &installieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2366"/> + <location filename="../UI/UserInterface.py" line="2369"/> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Plugins installieren...</b><p>Dies öffnet einen Dialog zur Installation oder Update von Plugins.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2042"/> + <location filename="../UI/UserInterface.py" line="2045"/> <source>Mini Editor</source> <translation>Mini-Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2037"/> + <location filename="../UI/UserInterface.py" line="2040"/> <source>Mini &Editor...</source> <translation>Mini-&Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2043"/> + <location filename="../UI/UserInterface.py" line="2046"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini-Editor</b><p>Öffnet einen Dialog mit einem vereinfachten Editor.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2201"/> + <location filename="../UI/UserInterface.py" line="2204"/> <source>Toolbars</source> <translation>Werkzeugleisten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2201"/> + <location filename="../UI/UserInterface.py" line="2204"/> <source>Tool&bars...</source> <translation>Werkzeug&leisten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2206"/> + <location filename="../UI/UserInterface.py" line="2209"/> <source>Configure toolbars</source> <translation>Werkzeugleisten einrichten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2207"/> + <location filename="../UI/UserInterface.py" line="2210"/> <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> <translation><b>Werkzeugleisten</b><p>Werkzeugleisten konfigurieren. Mit diesem Dialog können die auf den Werkzeugleisten gezeigten Aktionen geändert und neue Werkzeugleisten definiert werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="617"/> + <location filename="../UI/UserInterface.py" line="620"/> <source>Restoring Toolbarmanager...</source> <translation>Lade Toolbarmanager...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3065"/> + <location filename="../UI/UserInterface.py" line="3068"/> <source>External Tools/{0}</source> <translation>Externe Werkzeuge/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4858"/> + <location filename="../UI/UserInterface.py" line="4861"/> <source>External Tools</source> <translation>Externe Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4849"/> + <location filename="../UI/UserInterface.py" line="4852"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Kein Eintrag für das externe Werkzeug „{0}“ in der Gruppe „{1}“ gefunden.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4858"/> + <location filename="../UI/UserInterface.py" line="4861"/> <source>No toolgroup entry '{0}' found.</source> <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1444"/> + <location filename="../UI/UserInterface.py" line="1447"/> <source>Multiproject-Viewer</source> <translation>Mehrfachprojektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1444"/> + <location filename="../UI/UserInterface.py" line="1447"/> <source>&Multiproject-Viewer</source> <translation>&Mehrfachprojektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6031"/> + <location filename="../UI/UserInterface.py" line="6034"/> <source>Save session</source> <translation>Sitzung speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5968"/> + <location filename="../UI/UserInterface.py" line="5971"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6015"/> + <location filename="../UI/UserInterface.py" line="6018"/> <source>Read session</source> <translation>Sitzung lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6015"/> + <location filename="../UI/UserInterface.py" line="6018"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2962"/> + <location filename="../UI/UserInterface.py" line="2965"/> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Zeichenkodierung des aktuellen Editors an.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2976"/> + <location filename="../UI/UserInterface.py" line="2979"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt an, ob die aktuelle Datei geschrieben werden kann.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1828"/> + <location filename="../UI/UserInterface.py" line="1831"/> <source>Request Feature</source> <translation>Neue Funktion anfragen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1828"/> + <location filename="../UI/UserInterface.py" line="1831"/> <source>Request &Feature...</source> <translation>Neue &Funktion anfragen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1832"/> + <location filename="../UI/UserInterface.py" line="1835"/> <source>Send a feature request</source> <translation>Sende eine Anfrage für eine neue Funktion</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1834"/> + <location filename="../UI/UserInterface.py" line="1837"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation><b>Neue Funktion anfragen...</b><p>Öffnet einen Dialog, um eine Anfrage für eine neue Funktion zu senden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2955"/> + <location filename="../UI/UserInterface.py" line="2958"/> <source><p>This part of the status bar displays the current editors language.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Sprache des aktuellen Editors an.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2983"/> + <location filename="../UI/UserInterface.py" line="2986"/> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Zeilennummer des aktuellen Editors an.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2990"/> + <location filename="../UI/UserInterface.py" line="2993"/> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Cursorposition des aktuellen Editors an.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1592"/> + <location filename="../UI/UserInterface.py" line="1595"/> <source>Horizontal Toolbox</source> <translation>Horizontale Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1592"/> + <location filename="../UI/UserInterface.py" line="1595"/> <source>&Horizontal Toolbox</source> <translation>&Horizontale Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1596"/> + <location filename="../UI/UserInterface.py" line="1599"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1598"/> + <location filename="../UI/UserInterface.py" line="1601"/> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der Horizontalen Werkzeugbox um</b><p>Falls das Fenster der Horizontalen Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3498"/> + <location filename="../UI/UserInterface.py" line="3501"/> <source>Restart application</source> <translation>Anwendung neu starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3498"/> + <location filename="../UI/UserInterface.py" line="3501"/> <source>The application needs to be restarted. Do it now?</source> <translation>Die Anwendung muss neu gestartet werden. Jetzt durchführen?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1552"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2711"/> + <location filename="../UI/UserInterface.py" line="2714"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2969"/> + <location filename="../UI/UserInterface.py" line="2972"/> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Zeilenendekodierung des aktuellen Editors an.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Switch between tabs</source> <translation>Zwischen Tabs umschalten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2338"/> + <location filename="../UI/UserInterface.py" line="2341"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2127"/> + <location filename="../UI/UserInterface.py" line="2130"/> <source>Export Preferences</source> <translation>Einstellungen exportieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2127"/> + <location filename="../UI/UserInterface.py" line="2130"/> <source>E&xport Preferences...</source> <translation>Einstellungen e&xportieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2132"/> + <location filename="../UI/UserInterface.py" line="2135"/> <source>Export the current configuration</source> <translation>Exportiert die aktuelle Konfiguration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2134"/> + <location filename="../UI/UserInterface.py" line="2137"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation><b>Einstellungen exportieren</b><p>Exportiert die aktuelle Konfiguration in eine Datei.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2141"/> + <location filename="../UI/UserInterface.py" line="2144"/> <source>Import Preferences</source> <translation>Einstellungen importieren</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2141"/> + <location filename="../UI/UserInterface.py" line="2144"/> <source>I&mport Preferences...</source> <translation>Einstellungen i&mportieren...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2146"/> + <location filename="../UI/UserInterface.py" line="2149"/> <source>Import a previously exported configuration</source> <translation>Importiert eine zuvor exportierte Konfiguration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2148"/> + <location filename="../UI/UserInterface.py" line="2151"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation><b>Einstellungen importieren</b><p>Importiert eine zuvor exportierte Konfiguration.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2320"/> + <location filename="../UI/UserInterface.py" line="2323"/> <source>Show next</source> <translation>Zeige nächste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2329"/> + <location filename="../UI/UserInterface.py" line="2332"/> <source>Show previous</source> <translation>Zeige vorherige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1606"/> + <location filename="../UI/UserInterface.py" line="1609"/> <source>Left Sidebar</source> <translation>Linke Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1606"/> + <location filename="../UI/UserInterface.py" line="1609"/> <source>&Left Sidebar</source> <translation>&Linke Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1610"/> + <location filename="../UI/UserInterface.py" line="1613"/> <source>Toggle the left sidebar window</source> <translation>Schalte das Fenster der linken Seitenleiste um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1611"/> + <location filename="../UI/UserInterface.py" line="1614"/> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der linken Seitenleiste um</b><p>Falls das Fenster der linken Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1633"/> + <location filename="../UI/UserInterface.py" line="1636"/> <source>Bottom Sidebar</source> <translation>Untere Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1633"/> + <location filename="../UI/UserInterface.py" line="1636"/> <source>&Bottom Sidebar</source> <translation>&Untere Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1637"/> + <location filename="../UI/UserInterface.py" line="1640"/> <source>Toggle the bottom sidebar window</source> <translation>Schalte das Fenster der unteren Seitenleiste um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1639"/> + <location filename="../UI/UserInterface.py" line="1642"/> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der unteren Seitenleiste um</b><p>Falls das Fenster der unteren Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1462"/> + <location filename="../UI/UserInterface.py" line="1465"/> <source>&Debug-Viewer</source> <translation>&Debuganzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2024"/> + <location filename="../UI/UserInterface.py" line="2027"/> <source>SQL Browser</source> <translation>SQL-Browser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2024"/> + <location filename="../UI/UserInterface.py" line="2027"/> <source>SQL &Browser...</source> <translation>SQL-&Browser...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2029"/> + <location filename="../UI/UserInterface.py" line="2032"/> <source>Browse a SQL database</source> <translation>Erforsche eine SQL-Datenbank</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2030"/> + <location filename="../UI/UserInterface.py" line="2033"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL-Browser</b><p>Erforsche eine SQL-Datenbank.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4756"/> + <location filename="../UI/UserInterface.py" line="4759"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der SQL-Browser konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2082"/> + <location filename="../UI/UserInterface.py" line="2085"/> <source>Icon Editor</source> <translation>Icon-Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2082"/> + <location filename="../UI/UserInterface.py" line="2085"/> <source>&Icon Editor...</source> <translation>&Icon-Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4545"/> + <location filename="../UI/UserInterface.py" line="4548"/> <source>Qt 3 support</source> <translation>Qt3-Unterstützung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5372"/> + <location filename="../UI/UserInterface.py" line="5375"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation><p>Der PySide-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2552"/> + <location filename="../UI/UserInterface.py" line="2555"/> <source>PySide Documentation</source> <translation>PySide-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2552"/> + <location filename="../UI/UserInterface.py" line="2555"/> <source>Py&Side Documentation</source> <translation>Py&Side-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2556"/> + <location filename="../UI/UserInterface.py" line="2559"/> <source>Open PySide Documentation</source> <translation>Öffne die PySide-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="945"/> + <location filename="../UI/UserInterface.py" line="948"/> <source>Cooperation</source> <translation>Zusammenarbeit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1650"/> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1002"/> + <location filename="../UI/UserInterface.py" line="1005"/> <source>Symbols</source> <translation>Symbole</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1682"/> + <location filename="../UI/UserInterface.py" line="1685"/> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1010"/> + <location filename="../UI/UserInterface.py" line="1013"/> <source>Numbers</source> <translation>Zahlen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1700"/> + <location filename="../UI/UserInterface.py" line="1703"/> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5736"/> + <location filename="../UI/UserInterface.py" line="5739"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Tastaturkurzbefehlsdatei (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2489"/> + <location filename="../UI/UserInterface.py" line="2492"/> <source>Python 3 Documentation</source> <translation>Python 3-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2489"/> + <location filename="../UI/UserInterface.py" line="2492"/> <source>Python &3 Documentation</source> <translation>Python &3-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2493"/> + <location filename="../UI/UserInterface.py" line="2496"/> <source>Open Python 3 Documentation</source> <translation>Öffne die Python 3-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2507"/> + <location filename="../UI/UserInterface.py" line="2510"/> <source>Python 2 Documentation</source> <translation>Python 2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2507"/> + <location filename="../UI/UserInterface.py" line="2510"/> <source>Python &2 Documentation</source> <translation>Python &2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2511"/> + <location filename="../UI/UserInterface.py" line="2514"/> <source>Open Python 2 Documentation</source> <translation>Öffne die Python 2-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2513"/> + <location filename="../UI/UserInterface.py" line="2516"/> <source><b>Python 2 Documentation</b><p>Display the Python 2 documentation. If no documentation directory is configured, the location of the Python 2 documentation is assumed to be the doc directory underneath the location of the configured Python 2 executable on Windows and <i>/usr/share/doc/packages/python/html/python-docs-html</i> on Unix. Set PYTHON2DOCDIR in your environment to override this. </p></source> <translation><b>Python 2-Dokumentation</b><p>Zeigt die Python 2-Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 2-Dokumentation gesucht wird, unter Windows das Verzeichnis <i>doc</i> unter dem Verzeichnis, in dem der konfigurierte Python 2-Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html/python-docs-html</i>. Um dies zu überschreiben, können Sie die Umgebungsvariable PYTHON2DOCDIR setzen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6538"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source>Error getting versions information</source> <translation>Fehler beim Herunterladen der Versionsinformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6531"/> + <location filename="../UI/UserInterface.py" line="6534"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>Die Versionsinformationen konnten nicht heruntergeladen werden. Bitte gehen Sie online und versuchen Sie es erneut.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5508"/> + <location filename="../UI/UserInterface.py" line="5511"/> <source>Open Browser</source> <translation>Browser starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5508"/> + <location filename="../UI/UserInterface.py" line="5511"/> <source>Could not start a web browser</source> <translation>Der Systemwebbrowser konnte nicht gestartet werden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6538"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>Die Versionsinformationen konnten seit 7 Tagen nicht heruntergeladen werden. Bitte gehen Sie online und versuchen Sie es erneut.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="622"/> + <location filename="../UI/UserInterface.py" line="625"/> <source>Setting View Profile...</source> <translation>Stelle Ansichtenprofil ein...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="626"/> + <location filename="../UI/UserInterface.py" line="629"/> <source>Reading Tasks...</source> <translation>Lese Aufgaben...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="630"/> + <location filename="../UI/UserInterface.py" line="633"/> <source>Reading Templates...</source> <translation>Lese Vorlagen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="634"/> + <location filename="../UI/UserInterface.py" line="637"/> <source>Starting Debugger...</source> <translation>Starte Debugger...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1374"/> + <location filename="../UI/UserInterface.py" line="1377"/> <source>New Window</source> <translation>Neues Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1374"/> + <location filename="../UI/UserInterface.py" line="1377"/> <source>New &Window</source> <translation>Neues &Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1374"/> + <location filename="../UI/UserInterface.py" line="1377"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1874"/> <source>Unittest Rerun Failed</source> <translation>Fehlerhafte Modultests wiederholen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1871"/> + <location filename="../UI/UserInterface.py" line="1874"/> <source>Rerun Failed Tests...</source> <translation>Fehlerhafte Tests wiederholen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1876"/> + <location filename="../UI/UserInterface.py" line="1879"/> <source>Rerun failed tests of the last run</source> <translation>Fehlerhafte Tests des letzten Laufes wiederholen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1878"/> + <location filename="../UI/UserInterface.py" line="1881"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation><b>Fehlerhafte Tests wiederholen</b><p>Alle Tests wiederholen, die während des letzten Modultestlaufes fehlgeschlagen sind.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2010"/> + <location filename="../UI/UserInterface.py" line="2013"/> <source>Compare &Files side by side...</source> <translation>Dateien &Seite an Seite vergleichen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2096"/> + <location filename="../UI/UserInterface.py" line="2099"/> <source>Snapshot</source> <translation>Bildschirmfoto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2096"/> + <location filename="../UI/UserInterface.py" line="2099"/> <source>&Snapshot...</source> <translation>&Bildschirmfoto...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2101"/> + <location filename="../UI/UserInterface.py" line="2104"/> <source>Take snapshots of a screen region</source> <translation>Bildschirmfoto aufnehmen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2103"/> + <location filename="../UI/UserInterface.py" line="2106"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation><b>Bildschirmfoto</b><p>Dies öffnet einen Dialog, um ein Bildschirmfoto aufzunehmen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4826"/> + <location filename="../UI/UserInterface.py" line="4829"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Bildschirmfotoanwendung konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6736"/> + <location filename="../UI/UserInterface.py" line="6739"/> <source>Select Workspace Directory</source> <translation>Wähle Arbeitsverzeichnis</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1567"/> + <location filename="../UI/UserInterface.py" line="1570"/> <source>Left Toolbox</source> <translation>Linke Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1579"/> + <location filename="../UI/UserInterface.py" line="1582"/> <source>Right Toolbox</source> <translation>Rechte Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1433"/> + <location filename="../UI/UserInterface.py" line="1436"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Projektanzeigerfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1435"/> + <location filename="../UI/UserInterface.py" line="1438"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation><b>Projektanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Projektanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1450"/> + <location filename="../UI/UserInterface.py" line="1453"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1452"/> + <location filename="../UI/UserInterface.py" line="1455"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation><b>Mehrfachprojektanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1468"/> + <location filename="../UI/UserInterface.py" line="1471"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Debuganzeigefenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1470"/> + <location filename="../UI/UserInterface.py" line="1473"/> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation><b>Debuganzeige aktivieren</b><p>Dies schaltet den Eingabefokus auf das Debuganzeigefenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1486"/> + <location filename="../UI/UserInterface.py" line="1489"/> <source>Switch the input focus to the Shell window.</source> <translation>Schalte den Eingabefokus auf das Shell-Fenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1488"/> + <location filename="../UI/UserInterface.py" line="1491"/> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation><b>Shell aktivieren</b><p>Dies schaltet den Eingabefokus auf das Shell-Fenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1496"/> + <location filename="../UI/UserInterface.py" line="1499"/> <source>&File-Browser</source> <translation>Datei&browser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1502"/> + <location filename="../UI/UserInterface.py" line="1505"/> <source>Switch the input focus to the File-Browser window.</source> <translation>Schalte den Eingabefokus auf das Dateibrowserfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1504"/> + <location filename="../UI/UserInterface.py" line="1507"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation><b>Dateibrowser aktivieren</b><p>Dies schaltet den Eingabefokus auf das Dateibrowserfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1513"/> + <location filename="../UI/UserInterface.py" line="1516"/> <source>Lo&g-Viewer</source> <translation>&Ausgabefenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1519"/> + <location filename="../UI/UserInterface.py" line="1522"/> <source>Switch the input focus to the Log-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Ausgabefenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1521"/> + <location filename="../UI/UserInterface.py" line="1524"/> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation><b>Ausgabefenster aktivieren</b><p>Dies schaltet den Eingabefokus auf das Ausgabefenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1531"/> + <location filename="../UI/UserInterface.py" line="1534"/> <source>&Task-Viewer</source> <translation>&Aufgabenanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1537"/> + <location filename="../UI/UserInterface.py" line="1540"/> <source>Switch the input focus to the Task-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Aufgabenanzeigefenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1549"/> + <location filename="../UI/UserInterface.py" line="1552"/> <source>Templ&ate-Viewer</source> <translation>&Vorlagen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1555"/> + <location filename="../UI/UserInterface.py" line="1558"/> <source>Switch the input focus to the Template-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Vorlagenfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1557"/> + <location filename="../UI/UserInterface.py" line="1560"/> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation><b>Vorlagen aktivieren</b><p>Dies schaltet den Eingabefokus auf das Vorlagenfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1567"/> - <source>&Left Toolbox</source> - <translation>&Linke Werkzeugbox</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="1570"/> + <source>&Left Toolbox</source> + <translation>&Linke Werkzeugbox</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1573"/> <source>Toggle the Left Toolbox window</source> <translation>Schalte das Fenster der linken Werkzeugbox um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1571"/> + <location filename="../UI/UserInterface.py" line="1574"/> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der linken Werkzeugbox um</b><p>Falls das Fenster der linken Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1579"/> + <location filename="../UI/UserInterface.py" line="1582"/> <source>&Right Toolbox</source> <translation>&Rechte Werkzeugbox</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1583"/> + <location filename="../UI/UserInterface.py" line="1586"/> <source>Toggle the Right Toolbox window</source> <translation>Schalte das Fenster der rechten Werkzeugbox um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1584"/> + <location filename="../UI/UserInterface.py" line="1587"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der rechten Werkzeugbox um</b><p>Falls das Fenster der rechten Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1619"/> + <location filename="../UI/UserInterface.py" line="1622"/> <source>Right Sidebar</source> <translation>Rechte Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1619"/> + <location filename="../UI/UserInterface.py" line="1622"/> <source>&Right Sidebar</source> <translation>&Rechte Seitenleiste</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1623"/> + <location filename="../UI/UserInterface.py" line="1626"/> <source>Toggle the right sidebar window</source> <translation>Schalte das Fenster der rechten Seitenleiste um</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1625"/> + <location filename="../UI/UserInterface.py" line="1628"/> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der rechten Seitenleiste um</b><p>Falls das Fenster der rechten Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1650"/> <source>Cooperation-Viewer</source> <translation>Zusammenarbeit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1647"/> + <location filename="../UI/UserInterface.py" line="1650"/> <source>Co&operation-Viewer</source> <translation>&Zusammenarbeit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1653"/> + <location filename="../UI/UserInterface.py" line="1656"/> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Fenster zur Zusammenarbeit um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1655"/> + <location filename="../UI/UserInterface.py" line="1658"/> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation><b>Zusammenarbeitsfenster aktivieren</b><p>Dies schaltet den Eingabefokus auf das Fenster zur Zusammenarbeit um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1682"/> + <location filename="../UI/UserInterface.py" line="1685"/> <source>Symbols-Viewer</source> <translation>Symbolanzeiger</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1682"/> + <location filename="../UI/UserInterface.py" line="1685"/> <source>S&ymbols-Viewer</source> <translation>S&ymbolanzeiger</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1688"/> + <location filename="../UI/UserInterface.py" line="1691"/> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Symbolanzeigerfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1690"/> + <location filename="../UI/UserInterface.py" line="1693"/> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation><b>Symbolanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Symbolanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1700"/> + <location filename="../UI/UserInterface.py" line="1703"/> <source>Numbers-Viewer</source> <translation>Zahlenanzeiger</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1700"/> + <location filename="../UI/UserInterface.py" line="1703"/> <source>Num&bers-Viewer</source> <translation>Za&hlenanzeiger</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1706"/> + <location filename="../UI/UserInterface.py" line="1709"/> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Zahlenanzeigerfenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1708"/> + <location filename="../UI/UserInterface.py" line="1711"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation><b>Zahlenanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Zahlenanzeigerfenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2671"/> + <location filename="../UI/UserInterface.py" line="2674"/> <source>&Windows</source> <translation>&Fenster</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1539"/> + <location filename="../UI/UserInterface.py" line="1542"/> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation><b>Aufgabenanzeige aktivieren</b><p>Dies schaltet den Eingabefokus auf das Aufgabenanzeigefenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1665"/> + <location filename="../UI/UserInterface.py" line="1668"/> <source>IRC</source> <translation>IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1665"/> + <location filename="../UI/UserInterface.py" line="1668"/> <source>&IRC</source> <translation>&IRC</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1665"/> + <location filename="../UI/UserInterface.py" line="1668"/> <source>Meta+Shift+I</source> <translation>Meta+Shift+I</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1671"/> + <location filename="../UI/UserInterface.py" line="1674"/> <source>Switch the input focus to the IRC window.</source> <translation>Schalte den Eingabefokus auf das IRC-Fenster um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1673"/> + <location filename="../UI/UserInterface.py" line="1676"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation><b>IRC aktivieren</b><p>Dies schaltet den Eingabefokus auf das IRC-Fenster um.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1929"/> + <location filename="../UI/UserInterface.py" line="1932"/> <source>Qt-Designer</source> <translation>Qt Designer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1929"/> + <location filename="../UI/UserInterface.py" line="1932"/> <source>Qt-&Designer...</source> <translation>Qt &Designer...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1934"/> + <location filename="../UI/UserInterface.py" line="1937"/> <source>Start Qt-Designer</source> <translation>Starte Qt Designer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1935"/> + <location filename="../UI/UserInterface.py" line="1938"/> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation><b>Qt Designer</b><p>Starte Qt Designer.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1955"/> + <location filename="../UI/UserInterface.py" line="1958"/> <source>Qt-Linguist</source> <translation>Qt Linguist</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1955"/> + <location filename="../UI/UserInterface.py" line="1958"/> <source>Qt-&Linguist...</source> <translation>Qt &Linguist...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1960"/> + <location filename="../UI/UserInterface.py" line="1963"/> <source>Start Qt-Linguist</source> <translation>Starte Qt Linguist</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1961"/> + <location filename="../UI/UserInterface.py" line="1964"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation><b>Qt Linguist</b><p>Starte Qt Linguist (Übersetzungsprogramm).</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2431"/> + <location filename="../UI/UserInterface.py" line="2434"/> <source>Qt5 Documentation</source> <translation>Qt5 Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2431"/> + <location filename="../UI/UserInterface.py" line="2434"/> <source>Qt&5 Documentation</source> <translation>Qt&5 Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2435"/> + <location filename="../UI/UserInterface.py" line="2438"/> <source>Open Qt5 Documentation</source> <translation>Öffne die Qt5 Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="3001"/> + <location filename="../UI/UserInterface.py" line="3004"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation><p>Dieser Teil der Statusleiste ermöglicht das Zoomen des aktuellen Editors, der Shell oder des Terminals.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2260"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>Manage SSL Certificates</source> <translation>SSL-Zertifikate verwalten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2260"/> + <location filename="../UI/UserInterface.py" line="2263"/> <source>Manage SSL Certificates...</source> <translation>SSL-Zertifikate verwalten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2265"/> + <location filename="../UI/UserInterface.py" line="2268"/> <source>Manage the saved SSL certificates</source> <translation>Verwalten der gespeicherten SSL-Zertifikate</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2267"/> + <location filename="../UI/UserInterface.py" line="2270"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation><b>SSL-Zertifikate verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter SSL-Zertifikate.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2276"/> + <location filename="../UI/UserInterface.py" line="2279"/> <source>Edit Message Filters</source> <translation>Meldungsfilter bearbeiten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2276"/> + <location filename="../UI/UserInterface.py" line="2279"/> <source>Edit Message Filters...</source> <translation>Meldungsfilter bearbeiten...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2281"/> + <location filename="../UI/UserInterface.py" line="2284"/> <source>Edit the message filters used to suppress unwanted messages</source> <translation>Bearbeite die Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2283"/> + <location filename="../UI/UserInterface.py" line="2286"/> <source><b>Edit Message Filters</b><p>Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.</p></source> <translation><b>Meldungsfilter bearbeiten</b><p>Dies öffnet einen Dialog zur Bearbeitung der Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2447"/> + <location filename="../UI/UserInterface.py" line="2450"/> <source>PyQt&4 Documentation</source> <translation>PyQt&4-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2466"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>PyQt5 Documentation</source> <translation>PyQt5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2466"/> + <location filename="../UI/UserInterface.py" line="2469"/> <source>PyQt&5 Documentation</source> <translation>PyQt&5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2470"/> + <location filename="../UI/UserInterface.py" line="2473"/> <source>Open PyQt5 Documentation</source> <translation>Öffne die PyQt5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5264"/> + <location filename="../UI/UserInterface.py" line="5267"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><p>Der PyQt5-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2422"/> + <location filename="../UI/UserInterface.py" line="2425"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Qt4-Dokumentation</b><p>Zeige die Qt4-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger, ein Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2436"/> + <location filename="../UI/UserInterface.py" line="2439"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Qt5-Dokumentation</b><p>Zeige die Qt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger, ein Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2452"/> + <location filename="../UI/UserInterface.py" line="2455"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>PyQt4-Dokumentation</b><p>Zeige die PyQt4-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger, ein Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2472"/> + <location filename="../UI/UserInterface.py" line="2475"/> <source><b>PyQt5 Documentation</b><p>Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>PyQt5-Dokumentation</b><p>Zeige die PyQt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger, ein Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2495"/> + <location filename="../UI/UserInterface.py" line="2498"/> <source><b>Python 3 Documentation</b><p>Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and <i>/usr/share/doc/packages/python/html</i> on Unix. Set PYTHON3DOCDIR in your environment to override this.</p></source> <translation><b>Python 3-Dokumentation</b><p>Zeigt die Python 3-Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 3-Dokumentation gesucht wird, unter Windows das Verzeichnis <i>doc</i> unter dem Verzeichnis, in dem der Python 3-Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html</i>. Um dies zu überschreiben, können Sie die Umgebungsvariable PYTHON3DOCDIR setzen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2558"/> + <location filename="../UI/UserInterface.py" line="2561"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>PySide-Dokumentation</b><p>Zeige die PySide-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger, ein Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6465"/> + <location filename="../UI/UserInterface.py" line="6468"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1808"/> + <location filename="../UI/UserInterface.py" line="1811"/> <source>Show Error Log</source> <translation>Zeige Fehlerbericht</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1804"/> + <location filename="../UI/UserInterface.py" line="1807"/> <source>Show Error &Log...</source> <translation>Zeige Fehler&bericht...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1809"/> + <location filename="../UI/UserInterface.py" line="1812"/> <source><b>Show Error Log...</b><p>Opens a dialog showing the most recent error log.</p></source> <translation><b>Zeige Fehlerbericht...</b><p>Dies öffnet einen Dialog zur Anzeige des aktuellsten Fehlerberichtes.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6469"/> + <location filename="../UI/UserInterface.py" line="6472"/> <source>Version Check</source> <translation>Versionsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1380"/> + <location filename="../UI/UserInterface.py" line="1383"/> <source>Open a new eric6 instance</source> <translation>Öffnet eine neue eric6-Instanz</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1382"/> + <location filename="../UI/UserInterface.py" line="1385"/> <source><b>New Window</b><p>This opens a new instance of the eric6 IDE.</p></source> <translation><b>Neues Fenster</b><p>Dies öffnet eine neue Instanz der eric6-IDE.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1745"/> + <location filename="../UI/UserInterface.py" line="1748"/> <source><b>Helpviewer</b><p>Display the eric6 web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is search in the Qt help collection.</p></source> <translation><b>Hilfe-Fenster</b><p>Zeige den eric6-Webbrowser an. Dieses Fenster zeigt Hilfedateien im HTML-Format und Qt-Hilfesammlungen an. In ihm kann über Hyperlinks navigiert, Lesezeichen gesetzt und neben anderen Funktionen die dargestellte Seite ausgedruckt werden. Er kann auch zum Surfen im Internet benutzt werden.</p><p>Wenn es mit einem selektierten Wort aufgerufen wird, so wird dieses Wort in der Qt-Hilfesammlung gesucht.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1782"/> + <location filename="../UI/UserInterface.py" line="1785"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric6.</p></source> <translation><b>Auf Aktualisierungen prüfen...</b> <p>Dies prüft im Internet auf Updates von eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="1795"/> + <location filename="../UI/UserInterface.py" line="1798"/> <source><b>Show downloadable versions...</b><p>Shows the eric6 versions available for download from the internet.</p></source> <translation><b>Zeige verfügbare Versionen...</b><p>Zeigt die eric6-Versionen, die vom Internet heruntergeladen werden können.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2066"/> + <location filename="../UI/UserInterface.py" line="2069"/> <source>eric6 Web Browser</source> <translation>eric6-Webbrowser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2066"/> + <location filename="../UI/UserInterface.py" line="2069"/> <source>eric6 &Web Browser...</source> <translation>eric6-&Webbrowser...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2071"/> + <location filename="../UI/UserInterface.py" line="2074"/> <source>Start the eric6 Web Browser</source> <translation>Startet den eric6-Webbrowser</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2073"/> + <location filename="../UI/UserInterface.py" line="2076"/> <source><b>eric6 Web Browser</b><p>Browse the Internet with the eric6 Web Browser.</p></source> <translation><b>eric6-Webbrowser</b><p>Durchforste das Internet mit dem eric6-Webbrowser.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2087"/> + <location filename="../UI/UserInterface.py" line="2090"/> <source>Start the eric6 Icon Editor</source> <translation>Starte den eric6-Icon-Editor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2089"/> + <location filename="../UI/UserInterface.py" line="2092"/> <source><b>Icon Editor</b><p>Starts the eric6 Icon Editor for editing simple icons.</p></source> <translation><b>Icon-Editor</b><p>Startet den eric6-Icon-Editor zum Editieren einfacher Icons.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2175"/> + <location filename="../UI/UserInterface.py" line="2178"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric6.</p></source> <translation><b>Zeige externe Werkzeuge</b><p>Öffnet einen Dialog, der die Pfade und Versionen der von eric6 genutzten externen Werkzeuge anzeigt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="2537"/> + <location filename="../UI/UserInterface.py" line="2540"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.</p></source> <translation><b>Eric-API-Dokumentation</b><p>Zeige die Eric-API-Dokumentation an. Der Pfad für die Dokumentation ist das Unterverzeichnis Documentation/Source im eric6-Installationverzeichnis.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4545"/> + <location filename="../UI/UserInterface.py" line="4548"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt v.3 wird von eric6 nicht unterstützt.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6632"/> + <location filename="../UI/UserInterface.py" line="6635"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>Eine Aktualisierung auf <b>{0}</b> von Eric6 ist unter <b>{1}</b> verfügbar. Wollen Sie sie laden?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6645"/> + <location filename="../UI/UserInterface.py" line="6648"/> <source>Eric6 is up to date</source> <translation>Eric6 ist aktuell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6645"/> + <location filename="../UI/UserInterface.py" line="6648"/> <source>You are using the latest version of eric6</source> <translation>Sie verwenden die aktuellste Version von eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6717"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>eric6 wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="604"/> - <source>Generating Plugins Toolbars...</source> - <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3552"/> - <source>&User Tools</source> - <translation>&Benutzerwerkzeuge</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="3624"/> - <source>No User Tools Configured</source> - <translation>Keine Benutzerwerkzeuge konfiguriert</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6485"/> - <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> - <translation>Die Versionsinformationen konnten nicht heruntergeladen werden, da sie <b>nicht verbunden</b> sind. Bitte gehen Sie online und versuchen Sie es erneut.</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2050"/> - <source>Hex Editor</source> - <translation>Hex-Editor</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2050"/> - <source>&Hex Editor...</source> - <translation>&Hex Editor...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2055"/> - <source>Start the eric6 Hex Editor</source> - <translation>Starte den eric6 Hex-Editor</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2057"/> - <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> - <translation><b>Hex-Editor</b><p>Startet den eric6 Hex-Editor zum Ansehen oder Bearbeiten von Binärdateien.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2299"/> - <source>Clear private data</source> - <translation>Private Daten löschen</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="2301"/> - <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> - <translation><b>Private Daten löschen</b><p>Löscht private Daten wie die Listen der zuletzt geöffneten Dateien, Projekte oder Mehrfachprojekte.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1348"/> - <source>Save session...</source> - <translation>Sitzung speichern...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1353"/> - <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> - <translation><b>Sitzung speichern...</b><p>Dies speichert die aktuelle Sitzung in eine Datei. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6053"/> - <source>Load session</source> - <translation>Sitzung laden</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1361"/> - <source>Load session...</source> - <translation>Sitzung laden...</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="1366"/> - <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> - <translation><b>Sitzung laden...</b><p>Dies lädt eine zuvor gesicherte Sitzung. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6053"/> - <source>eric6 Session Files (*.e5s)</source> - <translation>eric6 Sitzungsdateien (*.e5s)</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6100"/> - <source>Crash Session found!</source> - <translation>Absturzsitzung gefunden!</translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6100"/> - <source>A session file of a crashed session was found. Shall this session be restored?</source> - <translation>Eine Sitzungsdatei einer abgestürzten Sitzung wurde gefunden. Soll diese Sitzung wiederhergestellt werden?</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="607"/> + <source>Generating Plugins Toolbars...</source> + <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3555"/> + <source>&User Tools</source> + <translation>&Benutzerwerkzeuge</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="3627"/> + <source>No User Tools Configured</source> + <translation>Keine Benutzerwerkzeuge konfiguriert</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6488"/> + <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> + <translation>Die Versionsinformationen konnten nicht heruntergeladen werden, da sie <b>nicht verbunden</b> sind. Bitte gehen Sie online und versuchen Sie es erneut.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2053"/> + <source>Hex Editor</source> + <translation>Hex-Editor</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2053"/> + <source>&Hex Editor...</source> + <translation>&Hex Editor...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2058"/> + <source>Start the eric6 Hex Editor</source> + <translation>Starte den eric6 Hex-Editor</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2060"/> + <source><b>Hex Editor</b><p>Starts the eric6 Hex Editor for viewing or editing binary files.</p></source> + <translation><b>Hex-Editor</b><p>Startet den eric6 Hex-Editor zum Ansehen oder Bearbeiten von Binärdateien.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2302"/> + <source>Clear private data</source> + <translation>Private Daten löschen</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="2304"/> + <source><b>Clear private data</b><p>Clears the private data like the various list of recently opened files, projects or multi projects.</p></source> + <translation><b>Private Daten löschen</b><p>Löscht private Daten wie die Listen der zuletzt geöffneten Dateien, Projekte oder Mehrfachprojekte.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1351"/> + <source>Save session...</source> + <translation>Sitzung speichern...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1356"/> + <source><b>Save session...</b><p>This saves the current session to disk. A dialog is opened to select the file name.</p></source> + <translation><b>Sitzung speichern...</b><p>Dies speichert die aktuelle Sitzung in eine Datei. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6056"/> + <source>Load session</source> + <translation>Sitzung laden</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1364"/> + <source>Load session...</source> + <translation>Sitzung laden...</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="1369"/> + <source><b>Load session...</b><p>This loads a session saved to disk previously. A dialog is opened to select the file name.</p></source> + <translation><b>Sitzung laden...</b><p>Dies lädt eine zuvor gesicherte Sitzung. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6056"/> + <source>eric6 Session Files (*.e5s)</source> + <translation>eric6 Sitzungsdateien (*.e5s)</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6103"/> + <source>Crash Session found!</source> + <translation>Absturzsitzung gefunden!</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6103"/> + <source>A session file of a crashed session was found. Shall this session be restored?</source> + <translation>Eine Sitzungsdatei einer abgestürzten Sitzung wurde gefunden. Soll diese Sitzung wiederhergestellt werden?</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="610"/> <source>Cleaning Plugins Download Area...</source> <translation>Bereinige den Plugins Downloadbereich...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="599"/> + <location filename="../UI/UserInterface.py" line="602"/> <source>Initializing Plugins...</source> <translation>Initialisiere Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6620"/> + <location filename="../UI/UserInterface.py" line="6623"/> <source>Update Check</source> <translation>Aktualisierungsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6620"/> + <location filename="../UI/UserInterface.py" line="6623"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation>Eric wurde direkt von vom Quelltext installiert. Eine Aktualitätsprüfung ist daher nicht möglich.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6610"/> + <location filename="../UI/UserInterface.py" line="6613"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation>Sie verwenden ein Snapshot-Release von eri6. Eine neueres, stabiles Release könnte verfügbar sein.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="925"/> + <location filename="../UI/UserInterface.py" line="928"/> <source>Code Documentation Viewer</source> <translation>Dokumentationsanzeige</translation> </message>